* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #f0f4f8, #d8e2e7); /* Gradiente suave do topo para baixo */
    color: #333;
}

/* Cabeçalho */
header {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background-color: #ffffff; /* Fundo branco para o cabeçalho */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Sombra mais sutil */
    transition: 0.5s;
}

header img {
    width: 25px;
    align-items: center;
    justify-content: space-between;
    display: flex;
}

footer {
    background-color: #2f2f2f; /* Fundo escuro para o rodapé */
    color: #ffffff;
    font-size: 14px;
    height: auto;
    width: 100%;
    padding: 20px 0;
}

footer p {
    margin-left: 4%;
    font-size: 18px;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border-radius: 50px;
    padding: 15px 20px;
    width: 33%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

footer a {
    text-decoration: none;
    background-color: #000000;
    color: white;
    margin: 50px 12px 50px;
    margin-left: 5%;
    padding: 10px 20px;
    border-radius: 30px;

}

footer h1 {
    margin-left: 5%;
    margin-top: 0px;
}


.logo img {
    width: 10%;
    margin-left: 20px;
}

.bt-cadastro {
    background-color: #000000;
    padding: 10px 20px;
    border-radius: 25px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s;
}

.bt-cadastro:hover {
    background-color: #333;
}
/* Navegação */
nav ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
    width: 100%;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: 0.8s;
}

nav ul li a:hover {
    color: #007bff;
    transform: scale(1.1);
}
/* Banner */
.banner {
    text-align: center;
    padding: 100px 20px;
    background-color: #000;
    color: white;
    font-size: 40px;
}

.banner h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.banner p {
    font-size: 20px;
    margin-bottom: 20px;
}

.btn-shop {
    background-color: #007bff;
    color: rgb(255, 255, 255);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    display: inline-block;
}

.btn-shop:hover {
    background-color: #a7a7a7;
    transition: 0.8s;

}

/* produtos */
.produtos {
    padding: 40px 20px;
    display: flex;
    justify-content: space-around;
    gap: 40px;
    background-color: #ffffff;

}

.produtos2 {
    padding: 40px 20px;
    display: flex;
    justify-content: space-around;
    gap: 40px;
    background-color: #000000;
}

.produto {
    text-align: center;
    width: 250px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0);
    background-color: #ffffff;
}

.produto img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.produto h3 {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 600;
}

.produto p {
    margin: 10px 0;
    font-size: 18px;
    color: #007bff;
}

.produto button {
    background-color: #28a745;
    color: rgb(255, 255, 255);
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
}

.produto button:hover {
    background-color: #b4b4b4;
    transition: 0.5s;
}

.section_categoria {
    background-color: #ffffff;
    text-align: center;
    width: 250px;
    padding: 5px;
    border-radius: 5px;
    background-color: #ffffff;
    transition: 0.6s;
    
    
}

.section_categoria:hover {
    transform: scale(0.92)

}


.section {
    display: flex;
}




/* Estilo para a seção de novidades */
.novidades {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
}

.novidade_item {
    text-align: center;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.novidade_item:hover {
    transform: scale(1.05);
}

.novidade_item img {
    max-width: 100%;
    border-radius: 8px;
}

.novidade_item h3 {
    font-size: 1.2em;
    margin: 15px 0;
}

.novidade_item p {
    font-size: 1em;
    color: #555;
}

.novidade_item a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.novidade_item a:hover {
    text-decoration: underline;
}

/* Estilo para ofertas especiais */
.oferta_especial {
    background-color: #f1f1f1;
    padding: 30px;
    text-align: center;
    margin-left: 200px;
    margin-right: 200px;
}

.oferta_especial h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.oferta_especial p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.btn_oferta {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.5s;
}

.btn_oferta:hover {
    background-color: #c7e2ff;
    transform: scale(1.1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Cor de fundo */
body {
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-family: 'Poppins', sans-serif;
    margin: 0px;
}
/* Banner */
.banner {
    text-align: center;
    padding: 100px 20px;
    background-color: #000;
    color:#f1f1f1;
    font-size: 40px;
}

.banner h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.banner p {
    font-size: 20px;
    margin-bottom: 20px;
}

.btn-shop {
    background-color: #007bff;
    color: #f1f1f1;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    display: inline-block;
    transition: 0.8s;
}

.btn-shop:hover {
    background-color: #a7a7a7;
    transform: (1.1);
    
}


.btn-info{
    color: #f1f1f1;
    background-color: #007bff; ;
    padding: 10px 8px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    display: inline-block;
    transition: 0.8s;
}

.btn-info:hover {
    background-color: #a7a7a7;
    transform: (1.1);
}


.produto {
    text-align: center;
    text-decoration: none;
    width: 180px;
    padding: 10px 10px 5px;
    border-radius: 10px;
    background-color:#ffffff;
    transition: 0.8s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    justify-content: space-around;
}

.produto:hover {
    transform: scale(1.03)
}


.produto img {
    width: 100%;
    height: auto;
    border-radius: 0px;
}

.produto h3 {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 600;
}

.produto p {
    margin: 10px 0;
    font-size: 18px;
    color: #f8f8f8;
}

.produto button {
    background-color: #28a745;
    color: rgb(255, 255, 255);
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
}

.produto button:hover {
    background-color: #b4b4b4;
    transition: 0.5s;
}

.anuncio1 {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center; /* Alinha horizontalmente */
    align-items: center;     /* Alinha verticalmente */
    background-color: #f1f1f1;
}
.h1 {
    padding: 15px 20px;
    display: flex;
    justify-content: space-around;
    background-color: #f1f1f1;
    font-size: 20px;
    border-radius: 10px;
}
.h2 {
    padding: 2px 2px;
    display: flex;

    justify-content: space-around;
    background-color: #0026ff96;
    border-radius: 10px;
}
.p1 { 
    padding: 15px 20px;
    display: flex;
    justify-content: space-around;
    background-color: #f1f1f1;
    font-size: 12px;
    border-radius: 12px;

}

.corpo_anuncios {
    align-items: center;
    margin-left: 200px;
    margin-right: 200px;  
    background-color: #f1f1f1;
}

.categorias {
    align-items: center;
    margin-left: 200px;
    margin-right: 200px;  
    display: flex;
    height: 180px;
    background-color: #000000;
    justify-content: space-around;
    margin: auto;
    width: 100%;
}

.section_categoria {
    background-color:#ffffff;
    text-align: center;
    width: 190px;
    padding: 11px 4px 4px;
    border-radius: 10px;
    transition: 0.6s;
    margin: auto;
    margin-right: 10px;
    margin-left: 10px;

    
}

.section_categoria:hover {
    transform: scale(0.8)
}
.btn-carrinho{
    color: #f1f1f1;
    background-color: #838383; ;
    padding: 10px 8px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    display: inline-block;
    transition: 0.8s;
    margin-top: 5px;
}

.section {
    display: flex;
    margin: auto;
    background-color: #000000;
    align-items: center;
    width: 100%;
    height: 250px;
}

.carrinho-container {
    max-width: 800px;
    margin: 40px auto;
    font-family: Arial, sans-serif;
  }
  .corpo-carrinho {
    display: flex;
  }
  
  .tabela-carrinho {
    border-top: 1px solid #ccc;
    margin-bottom: 20px;
  }
  
  .linha-cabecalho {
    padding: 10px 0;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
  }
  
  .coluna-item {
    flex: 3;
    padding-left: 10px;
  }
  
  .coluna-preco {
    flex: 1;
    text-align: right;
    padding-right: 10px;
  }
  
  .itens-carrinho {
    min-height: 150px;
    padding: 20px 10px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ccc;
  }
  
  .botoes-carrinho {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
  }
  
  .btn-carrinho {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
  }
  
  .btn-carrinho:hover {
    opacity: 0.9;
    transform: scale(1.02);
  }
  
  .btn-carrinho.cinza {
    background-color: #f2f2f2;
    color: #333;
  }

  img {
    border-radius: 50px;
  }
.btn-carrinho-remover {
    background-color: black;
    padding: 5px 10px 5px;
    border-radius: 10px;
    color: white;
    transition: 0.4s;
    margin-left: 9%;
}


.btn-carrinho-remover:hover {
    transform: scale(1.08);
}

.btn-carrinho-comprar:hover {
    transform: scale(1.08);
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
  }
  
  .container {
    max-width: 400px;
    margin: 30px auto;
    padding: 20px;
    background-color: white;

    border-radius: 10px;
  }
  
  input {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  
  label {
    font-weight: bold;
    display: flex;
    
  }

  button {
    padding: 8px 50px 8px;
    background-color: #007BFF;
    color: white;
    border-radius: 10px;
    border: 1px solid white;
    transition: 0.4s;
  }

  button:hover {
    transform: scale(1.02);
    background-color: #007bff83;

  }


/* Rodape */