/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #ffe6f0; /* rosa claro */
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* HEADER */
header {
  background-color: #ff66a3; /* rosa forte */
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 60px;
  height: auto;
}

.menu {
  list-style: none;
  display: flex;
  gap: 15px;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.menu a:hover {
  text-decoration: underline;
}

/* CONTEÚDO PRINCIPAL */
main {
  flex-grow: 1;
  max-width: 3500px;
  margin: 30px auto;
  padding: 0 20px;
}

/* PRODUTOS */
.produtos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.produto {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 0 6px #ff99c8;
  width: 220px;
  padding: 10px;
  text-align: center;
}

.produto img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.produto h3 {
  color: #cc397b;
  margin-bottom: 5px;
}

.produto p {
  font-weight: bold;
}

/* TÍTULOS */
h1, h2 {
  color: #cc397b;
  margin-bottom: 20px;
  text-align: center;
}

/* FORMULÁRIO CONTATO */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}

label {
  font-weight: bold;
  color: #cc397b;
}

input, textarea {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
}

button {
  background-color: #cc397b;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background-color: #a72c60;
}

/* FOOTER */
footer {
  background-color: #ff66a3;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}

/* RESPONSIVIDADE */
@media (max-width: 600px) {
  .produtos {
    flex-direction: column;
    align-items: center;
  }

  .produto {
    width: 90%;
  }

  header {
    flex-direction: column;
    gap: 15px;
  }
}
.botao-compre {
  display: inline-block;
  margin-top: 10px;
  background-color: #25D366; /* Cor do WhatsApp */
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.botao-compre:hover {
  background-color: #1ebe5d;
}
header {
  position: relative; /* necessário para o posicionamento absoluto */
  background-color: #ff66a3;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.acoes-produto {
  margin-top: 10px;
  text-align: center; /* centraliza os botões */
  font-size: 14px;
}

.ou-texto {
  margin: 5px 0;
  font-size: 14px;
  font-weight: bold;
  color: #555;
}

.botao-compre {
  display: inline-block;
  background-color: #28a745; /* verde original */
  color: #fff;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 5px;
}

.botao-compre:hover {
  background-color: #218838; /* verde mais escuro ao passar o mouse */
}
.catalogo-container {
  width: 90%;
  max-width: 1500px; /* permite várias colunas */
  margin: 0 auto;
  padding: 20px 0;
}

.catalogo-container h1 {
  color: #cc397b;
  text-align: center;
  margin-bottom: 30px;
}

/* Flex responsivo para produtos */
.produtos-categoria {
  display: flex;
  flex-wrap: wrap; /* permite múltiplas linhas */
  gap: 20px; /* espaço entre produtos */
  justify-content: flex-start; /* os produtos ficam alinhados à esquerda, mas você pode usar center */
}

.produto-categoria {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 0 6px #ff99c8;
  width: 220px; /* largura fixa para várias colunas */
  padding: 10px;
  text-align: center;
}

.produto-categoria img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.produto-categoria h3 {
  color: #cc397b;
  margin-bottom: 5px;
}

.produto-categoria p {
  font-weight: bold;
}

/* Botão Compre já */
.produto-categoria .botao-compre {
  display: inline-block;
  margin-top: 10px;
  background-color: #25D366; /* verde WhatsApp */
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.produto-categoria .botao-compre:hover {
  background-color: #1ebe5d;
}

/* Responsividade */
@media (max-width: 1200px) {
  .produto-categoria {
    width: 180px; /* mais produtos por linha em telas menores */
  }
}

@media (max-width: 768px) {
  .produtos-categoria {
    justify-content: center; /* centraliza produtos em mobile */
  }

  .produto-categoria {
    width: 90%; /* ocupa a maior parte da tela no celular */
  }
}
.catalogo-container {
  width: 90%;
  max-width: 1500px; /* permite várias colunas */
  margin: 0 auto;
  padding: 20px 0;
}

.catalogo-container h1 {
  color: #cc397b;
  text-align: center;
  margin-bottom: 30px;
}

/* Flex responsivo para produtos */
.produtos-categoria {
  display: flex;
  flex-wrap: wrap; /* permite múltiplas linhas */
  gap: 20px; /* espaço entre produtos */
  justify-content: flex-start; /* os produtos ficam alinhados à esquerda, mas você pode usar center */
}

.produto-categoria {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 0 6px #ff99c8;
  width: 220px; /* largura fixa para várias colunas */
  padding: 10px;
  text-align: center;
}

.produto-categoria img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.produto-categoria h3 {
  color: #cc397b;
  margin-bottom: 5px;
}

.produto-categoria p {
  font-weight: bold;
}

/* Botão Compre já */
.produto-categoria .botao-compre {
  display: inline-block;
  margin-top: 10px;
  background-color: #25D366; /* verde WhatsApp */
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.produto-categoria .botao-compre:hover {
  background-color: #1ebe5d;
}

/* Responsividade */
@media (max-width: 1200px) {
  .produto-categoria {
    width: 180px; /* mais produtos por linha em telas menores */
  }
}

@media (max-width: 768px) {
  .produtos-categoria {
    justify-content: center; /* centraliza produtos em mobile */
  }

  .produto-categoria {
    width: 90%; /* ocupa a maior parte da tela no celular */
  }
}
.aba-categorias {
  display: flex;
  justify-content: center; /* centraliza horizontalmente */
  gap: 25px; /* espaço entre as opções */
  margin-bottom: 30px;
}

.aba-categorias a {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  background-color: #ff99c8; /* rosa suave */
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.aba-categorias a.categoria-destaque {
  background-color: #ff66a3; /* rosa mais forte para destaque */
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.aba-categorias a:hover {
  background-color: #e55a90; /* efeito hover sutil */
  transform: translateY(-2px); /* leve elevação */
}
.banner-inicial {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: linear-gradient(120deg, #ffe6f0, #ff99c8); /* degradê rosa */
  padding: 40px 20px;
  border-radius: 12px;
  margin: 30px auto;
  max-width: 1200px;
  flex-wrap: wrap;
  gap: 20px;
}

.banner-content {
  max-width: 500px;
  text-align: left;
}

.banner-content h1 {
  font-size: 2.5rem;
  color: #cc397b;
  margin-bottom: 15px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #333;
}

.botao-banner {
  display: inline-block;
  background-color: #25D366; /* verde WhatsApp */
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.botao-banner:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
}

.banner-img {
  max-width: 300px;
  border-radius: 12px;
}

/* Responsividade */
@media (max-width: 768px) {
  .banner-inicial {
    flex-direction: column;
    text-align: center;
  }

  .banner-content {
    max-width: 100%;
  }

  .banner-img {
    max-width: 80%;
    margin-top: 20px;
  }

  .banner-content h1 {
    font-size: 2rem;
  }

  .banner-content p {
    font-size: 1rem;
  }
}
.produto {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 220px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.produto:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ff66a3;
  color: white;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
}

.acoes-produto {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.botao-secundario {
  display: inline-block;
  background-color: #ff99c8;
  color: white;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.botao-secundario:hover {
  background-color: #ff66a3;
  transform: translateY(-2px);
}
.contato-container {
  max-width: 600px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}

.contato-container h1 {
  color: #cc397b;
  margin-bottom: 10px;
  font-size: 2.2rem;
}

.descricao-contato {
  color: #555;
  margin-bottom: 30px;
  font-size: 1rem;
}

.form-card {
  background-color: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.form-contato label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #cc397b;
}

.form-contato input,
.form-contato textarea {
  width: 100%;
  padding: 10px 12px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
}

.botao-contato {
  margin-top: 20px;
  background-color: #28a745;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.botao-contato:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 600px) {
  .contato-container {
    margin: 30px 10px;
  }

  .form-card {
    padding: 20px 15px;
  }
}
/* SOBRE */
.sobre-container {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}

.sobre-intro h1 {
  color: #cc397b;
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.sobre-intro p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.sobre-imagens {
  margin-top: 40px;
}

.imagens-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.imagens-wrapper img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.imagens-wrapper img:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.assinatura {
  font-style: italic;
  color: #cc397b;
  font-size: 1.1rem;
  margin-top: 10px;
}
