@font-face {
  font-family: "VNI Korin";
  src: url("fonte/vni-korin.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&family=Lora:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "Playfair Display", serif;
  overflow-x: hidden

}

/* Header */
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 5vw;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: background-color 0.3s ease;
  flex-wrap: wrap;
  margin-top: -120px;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
}

.logo-img {
  width: 145px;
  height: auto;
}
/* Navegação */
nav {
  width: auto;
  flex-grow: 1;
}

ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

li {
  font-size: 1.3rem;
  font-family: "Lora", sans-serif;
  color: #fff; /* Cor padrão */
  transition: all 0.3s ease;
  position: relative;
  margin-left: 50px;
}

/* Estilização especial para o texto degradê no hover */
li:hover {
  background: linear-gradient(45deg, #f7e98e, #f1c857, #d4af37, #b18904);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
}

nav ul li:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

a i {
  margin-right: 5px;
}

/* WhatsApp Header */
.whatsapp-header {
  background: linear-gradient(45deg, #43e97b, #25a18b);
  padding: 8px 15px;
  border-radius: 20px;
  box-shadow: 2px 2px 10px rgba(56, 249, 215, 0.4);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  width: max-content;
  margin-right: 13px;
}

.whatsapp-header a {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: white;
  text-decoration: none;
}

.whatsapp-header a i {
  margin-right: 8px;
  font-size: 1.2rem;
}

/* Efeito hover invertendo as cores do degradê */
.whatsapp-header:hover {
  background: linear-gradient(45deg, #2cc5a9, #38c466);
  cursor: pointer;
}


.instagram-header {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  padding: 8px 15px;
  border-radius: 20px;
  box-shadow: 2px 2px 10px rgba(204, 24, 136, 0.5);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  width: max-content;
}

.instagram-header a {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: white;
  text-decoration: none;
}

.instagram-header a i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.instagram-header:hover {
  background: linear-gradient(45deg, #bc1888, #cc2366, #dc2743, #e6683c, #f09433);
  cursor: pointer;
}

/* WhatsApp flutuante */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  padding: 10px 15px;
  border-radius: 50px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

.whatsapp a {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
}

.whatsapp a:hover {
  background-color: #1da851;
  cursor: pointer;
}

/* SEÇÃO INICIAL - imagem de fundo + conteúdo centralizado */
.inicio-section {
  background-image: url("./imagenss/bananeira.jpg");
  background-size: cover;
  background-position: 50% 24%;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 60px; /* Espaçamento superior ajustado para o header */
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Conteúdo */
.inicio-content {
  color: #fff;
  max-width: 800px;
}

.inicio-content h1 {
  color: #fff;
  font-size: 5rem;
  margin: 0 0 20px;
  font-family: 'Lora', serif;
}

.inicio-content p {
  color: #ffffff;
  font-size: 3rem;
  font-family: 'Lora', serif;
  margin: 0 0 30px;
}

/* Botão de WhatsApp (se houver na seção) */
.botao-whatsapp {
  background-color: #25d366;
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1.2rem;
  font-family: 'Lora', serif;
  transition: background-color 0.3s ease;
}

.botao-whatsapp:hover {
  background-color: #1da851;
  cursor: pointer;
}


.produtos-novos {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 por linha */
  gap: 30px;
  background-color: #3c6e47;
  padding: 50px 20px;
  color: white;
  margin-top: 30px;
  align-items: stretch;
}

.introducao {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 30px;
}

.introducao h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  text-align: center;
}

.introducao p {
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: justify;

}

.produtos-novos .novidade {
  background-color: #3c6e47;
  border-radius: 50px;
  box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.produtos-novos .novidade:hover {
  transform: scale(1.05);
  box-shadow: 4px 4px 50px rgba(0, 0, 0, 0.3);
}

.produtos-novos img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 10px;
}

.produtos-novos h3 {
  font-size: 2.2rem;
  margin: 20px 0 10px;
  font-weight: bold;
  text-align: center;
}

.produtos-novos .novidade p {
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 50px;
}

.novinha {
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 60px;
}

/* Responsivo */
@media (max-width: 768px) {
  .produtos-novos {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .produtos-novos img {
    height: 200px;
  }
}





.product-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px;
  background-color: #3c6e47;
  margin-top: 15px;
  height: 85vh;
}

.product-info {
  flex: 1;
  padding-right: 20px;
}

.product-info h2 {
  font-size: 2.5em;
  color: #d4af37; /* Título em amarelo dourado */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  text-align: justify;
  
}

.product-info p {
  font-size: 1.5em;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(20, 2, 2, 0.7);
  text-align: justify;
  font-family: sans-serif;
}

.product-details {
  margin-top: 20px;
}

.product-details h3 {
  font-size: 1.8em;
  color: #d4af37; /* Título em amarelo dourado */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-family: 'Lora', serif;
}

.product-details p {
  font-size: 1.36em;
  color: #fff; /* Verde suave para o subtítulo */
  text-shadow: 2px 2px 4px rgba(20, 2, 2, 0.7);
  text-align: justify;
}

.product-carousel {
  flex: 1;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.carousel-container {
  width: 100%;
  max-width: 600px;
  height: 400px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-container img {
  max-width: 100%; /* Garantir que a largura não ultrapasse o limite do carrossel */
  max-height: 100%; /* Garantir que a altura não ultrapasse o limite do carrossel */
  object-fit: contain; /* Mostra a imagem inteira, sem distorcer */
  position: absolute;
  transition: transform 2.5s ease-in-out, opacity 0.5s ease-in-out;
  opacity: 0;
  margin: auto; /* Centraliza a imagem automaticamente dentro do carrossel */
}
.carousel-container img.active {
  opacity: 1;
  transform: scale(1.1); /* Aplica um leve zoom na imagem */
}

/* Mais controle sobre o tempo de transição */
.carousel-container img.active {
  transition: transform 2.5s ease-in-out, opacity 0.5s ease-in-out;
}

/* Botões de navegação centralizados abaixo da área do carrossel */
.product-buttons {
  display: flex;
  justify-content: center; /* Alinha os botões no centro */
  gap: 10px;
  margin-top: 20px; /* Distância entre as imagens e os botões */
  margin-right: 80px;
  overflow-x: auto !important;
}

.product-buttons i {
  font-size: 30px;
  cursor: pointer;
  background: linear-gradient(45deg, #f7e98e, #f1c857, #d4af37, #b18904);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.2s ease-in-out, background 0.3s ease-in-out;
  margin-top: 20px;
}

.product-buttons i:hover {
transition: 0.3s;
}

.product-buttons .active {
  color: #1ce0f1; /* Cor do botão quando ativo */
}

/* Adicionando efeito de clique para o botão */
.product-buttons i:active {
  color: #a38428; /* Cor quando clicado, um tom mais escuro de dourado */
}
.destaks-content {
  position: relative;
  width: 100%;
  height: 80vh;
  display: flex;
  flex-direction: column; /* Mantém o título e o texto empilhados */
  justify-content: center; /* Centraliza verticalmente */
  align-items: center; /* Centraliza horizontalmente */
  text-align: center;
  margin-top: 30px;
  padding: 0 20px; /* Espaço nas laterais */
  background: url(./imagenss/feira_LE_upscale_balanced_x4.jpg) center/cover no-repeat fixed;
  color: rgb(36, 0, 0);
  font-family: "VNI Korin", sans-serif;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Adicionando sobreposição para ajustar a opacidade sem afetar o conteúdo */
.destaks-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Ajuste a opacidade aqui */
  z-index: 1;
}

/* Mantém o conteúdo acima da sobreposição */
.destaks-content > * {
  position: relative;
  z-index: 2;
}

.destaks-content h2 {
  font-size: 2.5rem;
  font-family: "Lora", serif;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  /* Garante que o título ocupe toda a largura */
  text-align: center; /* Título centralizado */
  margin-right: 300px;
}

.destaks-content p {
  font-size: 1.8rem;
  color: #fff;
  text-align: center; /* Mantém o texto centralizado */
  margin: 0 20px;
  padding: 0;
  width: 80%;
  white-space: normal;
  line-height: 1.6;
  text-shadow: 2px 2px 4px rgba(99, 91, 91, 0.7);
  text-align: justify;
}

.destaks-caixa {
  display: flex;
  width: 100%;
  height: 90vh;
}

/* Bloco verde à esquerda com texto */
.destaks-caixinha {
  margin-top: 5px;
  width: 65%;
  background-color: #3c6e47; /* Verde forte */
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; /* Alinha o texto à esquerda */
  padding: 40px;
  text-align: left;
  font-size: 1.8rem;
  line-height: 1.6;
  text-shadow: 2px 2px 4px rgba(99, 91, 91, 0.7);
  height: 100%;
  text-align: justify;
}

.destaks-title {
  text-align: center; /* Centraliza o título */
  margin-bottom: 20px;
  font-size: 2.5rem;
  margin-left: 300px;
  text-align: justify;
}

.destaks-title h2{
  text-align: center;
  justify-items: center;
  display: flex;
  margin-left: 200px;
  text-align: justify;
  font-family: "Lora", serif;
}

/* Bloco da direita com a imagem de fundo */
.destaks-caixola {
  width: 35%;
  height: 100%; /* Garante que ocupe toda a altura */
  background: url(./imagenss/feira2_LE_upscale_balanced_x4_light_ai_30.jpg) center/cover no-repeat;
  background-size: cover; /* A imagem cobre a área do bloco */
  position: relative;
  margin-top: 5px;
  margin-left: 2px;
  text-align: justify;
}

/* Estilo para o mapa dentro de cada feira */
.mapinha{
  margin-top: 20px;
  width: 100%;
  height: 150px; /* Mapa pequeno */
  display: flex;
  justify-content: center;
  align-items: center;
}

.mapinha iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.destaks-caixinha p {
  margin-top: 20px;
  text-align: justify;
  font-size: 1.55rem;;
}
.destaks-caixinha h2 {
  font-family: 'Lora', serif;
}
.destaks-caixinha h4 {
  margin-left: 100px;
  font-family: 'Lora', serif;
}
.destaks-caixinha li {
  font-family: 'Lora', serif;
}

.missao-visao-valores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  background-color: #3c6e47;
  padding: 50px 20px;
  text-align: center;
  color: white;
  margin-top: 30px;
  height: 100vh;
  align-items: stretch; /* Garante que os blocos ocupem toda a altura disponível */
}

.missao-visao-valores .bloco {
  background-color: #3c6e47;
  border-radius: 15px;
  box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Distribui o conteúdo verticalmente */
  padding: 20px;
  height: 100%; /* Agora o bloco ocupa 100% da altura do contêiner */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.missao-visao-valores .bloco:hover {
  transform: scale(1.05);
  box-shadow: 4px 4px 50px rgba(0, 0, 0, 0.3);
}

.missao-visao-valores img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.missao-visao-valores h3 {
  font-size: 2.2rem;
  margin: 20px 0;
  font-weight: bold;
}

.missao-visao-valores p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}
/* Responsivo */
@media (max-width: 768px) {
  .missao-visao-valores {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .missao-visao-valores .bloco {
    height: auto;
  }

  .missao-visao-valores img {
    height: 150px;
  }
}

.produtos-container {
  background-color: #faf3e0;
  text-align: center;
  padding: 20px 0;
  width: 100%;
  min-height: 100vh; /* Ajustado para garantir que a área de produtos ocupe toda a altura */
  display: grid;
  justify-content: center;
  align-items: start; /* Ajustado para evitar sobreposição e garantir o posicionamento correto */
  margin-top: 13px;
  color: white;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.produtos-container h2 {
  color: #6b8e23;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  justify-items: center;
}

.produtos-container p {
  color: #444;
  font-size: 1.2rem;
  max-width: 800px;
  line-height: 1.6;
  margin: 0 auto 20px auto;
  text-align: center;
  text-align: justify;
}

.grid-produtos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
  /* Garantir que a altura da grid se ajuste conforme o conteúdo */
  margin-bottom: 30px; /* Um pequeno espaço entre os cards e o botão */
}

.card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s;
  background-position: center;
}

.card img:hover {
  transform: scale(1.1);
}

.card h3 {
  margin: 10px 0;
  color: #333;
  font-size: 1.5rem;
}

#P8,
#P10,
#P11 {
  object-fit: cover;
  object-position: center;
  height: 200px;
}

/* Centralizando o botão "Saiba Mais" */
.produtos-saiba-mais {
  display: flex;
  justify-content: center; /* Centraliza o botão horizontalmente */
  margin-top: 20px; /* Distância entre os cards e o botão */
  width: 100%;
  padding-bottom: 20px;
}

.produtos-botao {
  display: flex;
  justify-content: center; /* Centraliza o conteúdo dentro do container */
  align-items: center; /* Garante que o conteúdo fique centrado verticalmente */
  width: 100%; /* Faz com que o container ocupe toda a largura disponível */
}

.produtos-botao button {
  width: 150px;
  font-weight: 500;
  background-color: #4CAF50; /* verde vibrante */
  color: black;
  font-family: "Poppins", sans-serif;
  border: 2px solid #4CAF50;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  padding: 10px;
  transition: all 0.4s ease;
  border-radius: 6px;
}

.produtos-botao button:hover {
  background: linear-gradient(45deg, #8de08d, #a6f3a6, #7cdb7c, #5fc75f); /* degradê verde metálico claro */
  color: white;
  border: 2px solid transparent;
  box-shadow: 0 0 8px rgba(124, 219, 124, 0.8);
}



/* Estilo para a seção "Localização e Contato" */
.localizacao-contato {
  background-color: #faf3e0;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  width: 100%;
}

.localizacao-textos {
  flex: 1;
  padding-right: 30px;
}

.localizacao-contato h2 {
  font-size: 3rem;
  color: #6b8e23;
  margin-bottom: 30px;
}

.localizacao-contato .localizacao,
.localizacao-contato .contato {
  margin: 20px 0;
}

.localizacao-contato h3 {
  font-size: 2rem;
  color: #6b8e23;
  margin-bottom: 15px;
}

.localizacao-contato p {
  font-size: 1.5rem;
  color: #444;
 text-align: justify;
}

.mapa {
  flex: 1;
  max-width: 800px; /* Aumentado */
  height: 500px; /* Aumentado */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mapa iframe {
  width: 100%;
  height: 80%;
  border: none;
}

/* Estilização do botão WhatsApp */
.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25d366;
  color: white;
  font-size: 1.5rem;
  padding: 12px 20px;
  margin-top: 15px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease-in-out;
  width: fit-content;
}

.whatsapp-button i {
  margin-right: 10px;
}

.whatsapp-button:hover {
  background-color: #1ebe5d;
}
/* Estilo principal do footer */
/* Estilo principal do footer */
.footer {
  background-color: #276955;
  color: #fff;
  padding: 40px 20px;
  width: 100%;
  height: 100%;
  min-height: 200px; /* Ajuste conforme necessário */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}


.footer-section {
  flex: 1;
  min-width: 200px;
  display: block;
  margin-bottom: 60px;
  text-align: center;
  align-items: center;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 1.2em;
  color: #fff;
  text-align: center;
}

.footer-section ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: block;
  flex-direction: column;
  text-align: center;
}

.footer-section ul li {
  min-height: 30px; /
}
.footer-section li {
  margin-bottom: 8px;
}

.footer-section a {
  color: #fff;
  text-decoration: none;
  font-size: 1em;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 40px;
}

.footer-section a:hover {
  color: #ffd700;
}

.footer-section i {
  margin-right: 10px;
  font-size: 1.2em;
  color: #9bddc7;
}

/* Responsividade para tablets (até 1024px) */
@media (max-width: 1024px) {
  header {
    padding: 0 5%;
    height: 100px;
  }

  .inicio-content h1 {
    font-size: 3.5rem;
  }

  .inicio-content p {
    font-size: 2rem;
  }

  .product-section {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }

  .product-info,
  .product-carousel {
    width: 100%;
    padding: 0;
  }

  .product-carousel {
    margin-top: 30px;
  }

  .carousel-container {
    height: 300px;
  }

  .product-buttons {
    margin-right: 0;
  }

  .destaks-content h2 {
    font-size: 2rem;
    margin-right: 0;
  }

  .destaks-content p {
    font-size: 1.2rem;

  }

  .destaks-content {
    height: 120vh;
  }
  .destaks-caixa {
    flex-direction: column;
    height: auto;
  }

  .destaks-caixinha {
    width: 100%;
    padding: 30px;
    align-items: center;
    text-align: left;
  }

  .destaks-caixinha p,
  .destaks-caixinha h2,
  .destaks-caixinha h4,
  .destaks-caixinha li {
    text-align: left;
    margin-left: 0;
  }

  .destaks-title {
    margin-left: 0;
    text-align: center;
  }

  .destaks-title h2 {
    margin-left: 0;
    text-align: center;
    justify-content: center;
  }

  .destaks-caixola {
    width: 100%;
    height: 300px;
    margin-left: 0;
  }

  .missao-visao-valores {
    grid-template-columns: 1fr;
    height: auto;
    padding: 30px 10px;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .destaks-caixinha {
    padding: 20px;
  }

  .destaks-caixinha p {
    font-size: 1.3rem;
  }

  .destaks-title h2 {
    font-size: 2rem;
  }

  .mapinha {
    height: 200px;
  }

  .missao-visao-valores {
    padding: 20px 10px;
  }
}


/* Responsividade para tablets (até 1024px) */
/* Telas até 768px */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 10px 5%;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .logo-img {
    width: 120px;
    margin-left: 40px;
  }

  .whatsapp-header {
    align-items: center;
    margin-top: 20px;
    margin-left: 40px;
  }

  .instagram-header {
    align-items: center;
    margin-top: 15px;
    margin-left: 8px;
  }

  .inicio-section {
    height: 70vh; /* REDUZIDA */
  }

  .inicio-content {
    margin-top: 120px; /* SUBIU */
  }

  .inicio-content h1 {
    font-size: 2rem;
  }

  .inicio-content p {
    font-size: 1.2rem;
  }

  .destaks-content h2 {
    text-align: left;
    margin-top: 100px;
  }

  .produtos-container {
    padding: 20px 10px; /* Reduz as laterais pra evitar o texto sair da tela */
  }

  .produtos-container p {
    font-size: 1.1rem;
    padding: 0 10px;
    max-width: 100%; /* Garante que não passe da largura do container */
    box-sizing: border-box;
  }

  .grid-produtos {
    grid-template-columns: repeat(2, 1fr); /* Exibe 2 colunas */
    padding: 10px;
    gap: 15px;
  }

  .card {
    padding: 10px;
  }

  .card h3 {
    font-size: 1.2rem;
  }

  .card img {
    height: 160px;
  }

  .produtos-botao {
    padding: 10px;
  }

  .produtos-botao button {
    width: 140px;
    font-size: 0.9rem;
  }
  .localizacao-contato {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }

  .localizacao-textos {
    padding: 0;
    margin-bottom: 30px;
  }

  .localizacao-contato h2 {
    font-size: 2rem;
  }

  .localizacao-contato h3 {
    font-size: 1.6rem;
  }

  .localizacao-contato p {
    font-size: 1.2rem;
    text-align: justify;
  }

  .mapa {
    width: 100%;
    max-width: 100%;
    height: 300px;
  }

  .whatsapp-button {
    font-size: 1.2rem;
    padding: 10px 16px;
    margin-top: 20px;
  }

  
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-section {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }

  .footer-section ul {
    align-items: center;
  }

  .footer-section a {
    justify-content: center;
    margin-right: 0;
  }
}

/* Telas até 480px */
@media (max-width: 480px) {
  .logo-img {
    width: 100px;
    margin-right: 39px;
  }

  nav ul {
    gap: 10px;
    margin-top: 10px;
  }

  li {
    font-size: 1rem;
    margin-left: 0;
  }

  .whatsapp-header {
    margin-top: 20px;
    margin-right: 39px;
  }

  .inicio-section {
    height: 75vh; /* REDUZIDA */
  }

  .inicio-content {
    margin-top: 10px; /* SUBIU */
  }

  .inicio-content h1 {
    font-size: 1.8rem;
  }

  .inicio-content p {
    font-size: 1.1rem;
  }
  .destaks-content h2 {
    text-align: left;
    margin-top: 50px;
  }

  .destaks-caixinha {
    padding: 15px;
  }

  .destaks-caixinha p {
    font-size: 1.1rem;
  }

  .destaks-title h2 {
    font-size: 1.8rem;
  }

  .mapinha {
    height: 180px;
  }

  .missao-visao-valores {
    padding: 15px 5px;
  }

  grid-produtos {
    grid-template-columns: 1fr; /* Uma coluna só em celulares pequenos */
  }

  .produtos-container p {
    font-size: 1rem;
  }

  .card img {
    height: 140px;
  }

  .localizacao-contato {
    padding: 20px 10px;
  }

  .localizacao-contato h2 {
    font-size: 1.8rem;
  }

  .localizacao-contato h3 {
    font-size: 1.4rem;
  }

  .localizacao-contato p {
    font-size: 1.1rem;
  }

  .mapa {
    height: 250px;
  }

  .whatsapp-button {
    font-size: 1rem;
    padding: 8px 14px;
  }
}
