/* Configurações gerais da página */
body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background-color: #faf8f5;
  color: #333;
  border-top: 200px solid #2c4a3e;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

/* Seção Hero */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #f0ece4;
  padding: 0;
}

#hero .hero-conteudo {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 80px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-texto {
  display: flex;
  flex-direction: column;
}

#hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  color: #2c4a3e;
  margin-bottom: 24px;
}

#hero p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
}

#hero a {
  display: inline-block;
  padding: 18px 40px;
  background-color: #2c4a3e;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  align-self: flex-start;
  letter-spacing: 0.5px;
}

.hero-foto img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin: 0 auto;
}


/* Seção Para Quem */
#para-quem {
  padding: 80px 60px;
  max-width: 700px;
  margin: 0 auto;
}

#para-quem h2 {
  font-size: 1.8rem;
  color: #2c4a3e;
  margin-bottom: 40px;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.card {
  background-color: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.card span {
  font-size: 2rem;
}

.card h3 {
  color: #2c4a3e;
  margin: 12px 0 8px;
}

.card p {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
}
/* Seção Sobre */
#sobre {
  background-color: #2c4a3e;
  padding: 80px 60px;
}

.sobre-conteudo {
  max-width: 700px;
  margin: 0 auto;
}

#sobre h2 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 40px;
  margin-top: 0;
  text-align: left;
}

.sobre-texto h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 4px;
}

.crp {
  color: #a8c5bb;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.sobre-texto p {
  color: #d4e6e1;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 16px;
}
/* Seção Como Funciona */
#como-funciona {
  padding: 80px 60px;
  max-width: 700px;
  margin: 0 auto;
}

#como-funciona h2 {
  font-size: 1.8rem;
  color: #2c4a3e;
  margin-bottom: 40px;
}

.passos {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.passo {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.numero {
  font-size: 2.5rem;
  font-weight: bold;
  color: #a8c5bb;
  min-width: 60px;
}

.passo h3 {
  color: #2c4a3e;
  margin: 0 0 8px;
}

.passo p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}
/* Seção FAQ */
#faq {
  background-color: #2c4a3e;
  padding: 80px 60px;
}

.faq-lista {
  max-width: 700px;
  margin: 0 auto;
}

#faq h2 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border-bottom: 1px solid #a8c5bb44;
  padding: 20px 0;
}

.faq-pergunta {
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-family: Georgia, serif;
  cursor: pointer;
  text-align: left;
  width: 100%;
  padding: 0;
}

.faq-resposta {
  color: #d4e6e1;
  line-height: 1.7;
  margin-top: 12px;
  display: none;
}

.faq-resposta.aberta {
  display: block;
}
/* Seção Contato */
#contato {
  padding: 100px 60px;
  text-align: center;
}

.contato-conteudo {
  max-width: 600px;
  margin: 0 auto;
}

#contato h2 {
  font-size: 2rem;
  color: #2c4a3e;
  margin-bottom: 16px;
}

#contato p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

.botao-contato {
  display: inline-block;
  padding: 18px 40px;
  background-color: #2c4a3e;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-family: Georgia, serif;
}
/* Rodapé */
footer {
  background-color: #1a2e28;
  padding: 30px 60px;
  text-align: center;
}

footer p {
  color: #a8c5bb;
  font-size: 0.85rem;
  margin: 0;
}
/* Mobile */
@media (max-width: 768px) {
  #hero {
    padding: 0;
  }

  #hero h1 {
    max-width: 100%;
  }

  #hero p {
    max-width: 100%;
  }

  #hero a {
    width: 100%;
    text-align: center;
    padding: 18px 20px;
    box-sizing: border-box;
    align-self: stretch;
  }

  .hero-texto {
    width: 100%;
    padding: 0;
  }

  .hero-conteudo {
    grid-template-columns: 1fr;
    padding: 60px 28px;
  }

  .hero-foto {
    display: none;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  #para-quem,
  #como-funciona,
  #contato {
    padding: 60px 28px;
  }

  #faq {
    padding: 60px 28px;
  }

  #sobre {
    padding: 60px 28px;
  }

  #depoimentos {
    padding: 60px 28px;
  }

  footer {
    padding: 30px 28px;
  }

  .sobre-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sobre-texto h2,
  .sobre-texto h3 {
    text-align: center !important;
  }

  .passo {
    flex-direction: column;
    gap: 8px;
  }

  .numero {
    font-size: 1.8rem;
  }

  .depoimentos-lista {
    grid-template-columns: 1fr !important;
  }
}


.sobre-inner {
  display: flex;
  gap: 48px;
  align-items: center;
}

.foto-perfil {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 3px solid #a8c5bb;
  filter: brightness(1.05) contrast(1.05);
}

/* Botão flutuante WhatsApp */
.whatsapp-fixo {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background-color: #25d366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animações */
.animar {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animar {
  opacity: 0;
  transform: translateY(80px) scale(0.);
  transition: opacity 1s ease, transform 1s ease;
}

.animar.visivel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Seção Depoimentos */
#depoimentos {
  background-color: #f0f5f3;
  padding: 80px 60px;
}

#depoimentos h2 {
  font-size: 1.8rem;
  color: #2c4a3e;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.depoimentos-lista {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.depoimento {
  background-color: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.depoimento p {
  color: #444;
  line-height: 1.8;
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 20px;
}

.depoimento span {
  color: #2c4a3e;
  font-size: 0.9rem;
  font-weight: 700;
}