/* =========================
   HEADER / NAVBAR – LAYOUT
========================= */
header.site-header {
   background-color: var(--color-light-bg);
   overflow: visible; /* ✅ ESSENCIAL para o menu mobile */
   box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
   position: sticky;
   top: 0;
   z-index: 1000;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================
   HERO / BANNER – LAYOUT
========================= */
.banner {
  background-color: var(--color-background);
}

.banner-cont {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 1.75rem;
}

/* =========================
   SEÇÕES – ESTRUTURA PADRÃO
========================= */
section {
  width: 100%;
}

section > header:not(.sobre-header) {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  padding: 0 24px;
}

section > header h2 {
  margin-bottom: 8px;
}

section > header p {
  color: var(--text-color-muted);
}

/* =========================
   CONTEÚDO CENTRALIZADO
========================= */
.textos,
.perguntas {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

/* =========================
   SOBRE – INFORMAÇÕES PROFISSIONAIS
========================= */
.sobre-figma {
  width: 100%;
  background-color: #f1eef2;
  padding: 80px 24px;
}
.sobre-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sobre-header {
   text-align: center;
   margin-bottom: 64px;
}

.sobre-header h2 {
  font-size: 40px;
  font-weight: 700;
}

.crp {
  color: var(--text-color-muted);
  font-weight: 600;
  margin-top: 8px;
}

.nome {
  color: #6b7280;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
@media (max-width: 900px) {
  .sobre-grid {
    grid-template-columns: 1fr;
  }
}

.star {
  color: #a855f7;
  margin-right: 8px;
  font-size: 0.9em;
}

/* ============================================
   THERAPIES SECTION
   ============================================ */
.therapies {
    background-color: var(--color-white);
    padding: 80px 24px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.therapies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

/* Ajuste para celulares */
@media (max-width: 768px) {
    .therapies {
        padding: 40px 16px;
    }
    .therapies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* =========================
   CONTATO – GRID
========================= */
.contato-figma {
  background-color: var(--color-light-bg);
}

.contato-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

/* =========================
   CARD – GRID
========================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.card.lateral .foto-perfil {
  width: 160px;
  height: 160px;
  margin: 0 auto 24px auto;
  border: 4px solid #e5e7eb;
  border-radius: 50%;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.card.lateral .foto-perfil img {
  width: 100%;
  height: 100%;
  object-fit: cover;
   object-position: 40% center;
  border-radius: 50%;
}
.card.formacao li {
  margin-bottom: 14px;
}

/* =========================
   FAQ
========================= */
.faq {
    padding: 60px 0;
    background-color: var(--color-light); /* Fundo leve para destacar os cards */
}

/* Padrão de título solicitado */
.faq-header {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 0 24px;
    text-align: center; /* Centralizado como na imagem */
}

.faq-header h2 {
    margin-bottom: 8px;
    font-size: 2.2rem; /* Tamanho de destaque */
}

.faq .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


/* =========================
   MAPA
========================= */
.contato-mapa iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 12px;
}

/* =========================
   CONTAINER GLOBAL 
========================= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================
   FRASE / CITAÇÃO
========================= */
.quote {
  background-color: var(--color-background);
  padding: 80px 24px;
  border-top: 1px solid rgba(139, 92, 246, 0.15);
}

.quote blockquote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote blockquote p {
  font-size: 18px;
  line-height: 1.6;
  font-style: italic;
  color: var(--text-color-muted);
}

.quote blockquote footer {
  margin-top: 16px;
  font-size: 14px;
  color: #7c3aed;
  font-weight: 500;
}


/* =========================
   FOOTER
========================= */
footer {
  background-color: var(--color-light-bg);
  padding: 24px;
  text-align: center;
}

footer p.footer-frase {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-color-muted);
}

footer p.footer-frase span {
  color: #7c3aed;
}


/* =========================
   RESPONSIVIDADE
========================= */
@media (max-width: 900px) {

  .banner-cont {
    flex-direction: column;
    text-align: center;
  }

  .contato-grid {
    grid-template-columns: 1fr;
  }

}

/* =========================
   CONTATOS E MAPA
========================= */
.contact {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    padding: 0 24px;
}

.contact-header h2 {
    color: var(--color-primary );
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.contact-header p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Duas colunas iguais */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Ajuste para telas menores */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-map {
        height: 350px;
    }
}

/* =========================
   WHATSAPP
========================= */

.whatsapp-float {
  position: fixed;
  bottom: max(16px, env(safe-area-inset-bottom));
   color: #ffffff;
  right: max(16px, env(safe-area-inset-right));
  width: 56px;
  height: 56px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
