:root {
  /* ─────────── Paleta da identidade (brand board) ─────────── */
  --brand-offwhite: #FAF4F1;
  --brand-blush:    #E8CCC4;
  --brand-rose:     #D6A49A;
  --brand-clay:     #BC7B70;
  --brand-terra:    #A95F48;
  --brand-brown:    #533832;

  /* Superfície rosada das seções internas. Sem ela os tons de rosa do board
     não apareciam em lugar nenhum: os únicos fundos grandes eram off-white,
     branco e marrom. É o que dá o clima terroso à página. */
  --brand-blush-bg: #F2DDD7;
  --blush-section: #F2DDD7;

  /* Variantes aprofundadas para TEXTO.
     As cores originais reprovam em WCAG AA — terracota 4,36:1 e clay 3,11:1
     sobre o off-white, e menos ainda sobre o rosa. Estas mantêm o matiz e
     foram calibradas para o pior caso (o fundo rosa), passando nos três
     fundos. As originais seguem para uso decorativo. */
  --brand-terra-ink: #91523E;  /* 4,63 no rosa · 5,54 no off-white */
  --brand-clay-ink:  #85574F;  /* 4,63 no rosa · 5,55 no off-white */

  /* ─────────── Mapeamento semântico ───────────
     Os nomes originais do projeto foram mantidos para não alterar nenhuma
     regra existente do CSS — apenas os valores mudaram. */
  --cream: var(--brand-offwhite);
  --paper: var(--brand-blush-bg);
  --ink: var(--brand-brown);
  --muted: var(--brand-clay-ink);
  --sage: var(--brand-terra-ink);
  --sage-dark: var(--brand-terra-ink);
  --forest: var(--brand-brown);
  --line: rgba(83, 56, 50, .14);
  --clay: var(--brand-terra);
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow: 0 24px 70px rgba(83, 56, 50, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Jost", system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--clay); outline-offset: 4px; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.section-shell { padding: 112px 0; }
.skip-link { position: fixed; left: 16px; top: -80px; padding: 12px 16px; z-index: 100; border-radius: 10px; background: #fff; box-shadow: var(--shadow); }
.skip-link:focus { top: 16px; }


.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 244, 241, .9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 30px rgba(83, 56, 50, .05); }
.nav-wrap { min-height: 90px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 52px; height: 52px; object-fit: contain; flex: none; }
.brand-text { display: grid; gap: 2px; line-height: 1.05; }
.brand-text strong { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; font-size: 19px; letter-spacing: .04em; color: var(--ink); }
.brand-text small { font-size: 9px; font-weight: 500; letter-spacing: .28em; color: var(--sage-dark); }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { text-decoration: none; font-size: 14px; font-weight: 500; }
.main-nav a:not(.nav-cta) { position: relative; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 0; height: 1px; background: currentColor; transition: width .25s; }
.main-nav a:hover::after { width: 100%; }
.nav-cta { padding: 12px 20px; border: 1px solid var(--sage); border-radius: 999px; color: var(--sage-dark); transition: background .2s, color .2s; }
.nav-cta:hover { background: var(--sage); color: #fff; }
.menu-button { display: none; align-items: center; gap: 10px; min-width: 44px; min-height: 44px; justify-content: center; border: 0; background: transparent; color: var(--ink); font: inherit; cursor: pointer; }
.menu-lines, .menu-lines::before, .menu-lines::after { display: block; width: 22px; height: 1px; background: currentColor; content: ""; transition: transform .2s; }
.menu-lines { position: relative; }
.menu-lines::before { position: absolute; top: -6px; }
.menu-lines::after { position: absolute; top: 6px; }
.menu-button[aria-expanded="true"] .menu-lines { background: transparent; }
.menu-button[aria-expanded="true"] .menu-lines::before { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] .menu-lines::after { transform: translateY(-6px) rotate(-45deg); }

.hero { overflow: hidden; padding-top: 72px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 76px; }
.eyebrow { margin: 0 0 22px; font-size: 11px; font-weight: 600; letter-spacing: .24em; color: var(--sage-dark); }
.hero h1, h2 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; letter-spacing: -.025em; line-height: 1.08; text-wrap: balance; }
.hero h1 { max-width: 680px; margin: 0; font-size: clamp(48px, 5.4vw, 76px); }
.hero h1 em { color: var(--sage); font-weight: 600; }
.hero-text { max-width: 560px; margin: 28px 0 0; font-size: 18px; color: var(--muted); }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 999px; text-decoration: none; text-align: center; font-weight: 600; font-size: 14px; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--sage); color: #fff; box-shadow: 0 12px 30px rgba(146, 96, 87, .18); }
.button-primary:hover { background: var(--sage-dark); }
.button-outline { border: 1px solid var(--line); background: transparent; }
.button-outline:hover { border-color: var(--sage); }
.button-wide { width: 100%; }
.text-link { font-size: 14px; font-weight: 600; text-underline-offset: 5px; }
.trust-row { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 24px; padding: 0; margin: 40px 0 0; color: var(--muted); font-size: 13px; }
.trust-row li { position: relative; padding-left: 16px; }
.trust-row li::before { content: ""; position: absolute; left: 0; top: .65em; width: 6px; height: 6px; border-radius: 50%; background: var(--clay); }

.hero-visual { position: relative; min-height: 650px; }
.portrait-frame { position: absolute; inset: 0 0 25px 45px; overflow: hidden; border-radius: 220px 220px 30px 30px; background: #E8CCC4; box-shadow: var(--shadow); }
.portrait-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(83, 56, 50,.12), transparent 35%); pointer-events: none; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 34%; }

.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; column-gap: 100px; row-gap: 58px; align-items: start; }
.section-heading h2, .services h2, .process-copy h2, .contact-card h2 { margin: 0; font-size: clamp(40px, 4.5vw, 62px); }
.about-portrait { position: relative; grid-column: 1 / -1; overflow: hidden; aspect-ratio: 2.15 / 1; margin: 0; border-radius: 30px 30px 110px 30px; box-shadow: var(--shadow); background: #E8CCC4; }
.about-portrait::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); pointer-events: none; }
.about-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.about-portrait figcaption { position: absolute; left: 28px; bottom: 28px; display: grid; gap: 5px; max-width: 290px; padding: 18px 22px; border: 1px solid rgba(255,255,255,.72); border-radius: 16px; background: rgba(255, 252, 251,.93); box-shadow: 0 14px 36px rgba(83, 56, 50,.14); backdrop-filter: blur(12px); }
.about-portrait figcaption span { color: var(--sage-dark); font-size: 9px; font-weight: 600; letter-spacing: .18em; }
.about-portrait figcaption strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 19px; font-weight: 600; line-height: 1.25; }
.about-copy { max-width: 660px; }
.about-copy p { color: var(--muted); font-size: 17px; }
.about-copy .lead { margin-top: 0; font-size: 22px; color: var(--ink); }
.credibility-card { margin-top: 34px; padding: 24px; border-left: 3px solid var(--clay); border-radius: 0 18px 18px 0; background: var(--cream); }
.credibility-card p { margin: 10px 0 0; font-size: 14px; }
.mini-label { font-size: 10px; letter-spacing: .2em; font-weight: 600; }


.process-contact { background: var(--paper); }
.process-grid { display: grid; grid-template-columns: 1fr .82fr; gap: 80px; align-items: center; }
.steps { list-style: none; padding: 0; margin: 42px 0 0; }
.steps li { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid var(--line); }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps > li > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--cream); color: var(--sage-dark); font-size: 13px; }
.steps strong { display: block; margin-bottom: 4px; }
.steps p { margin: 0; color: var(--muted); font-size: 16px; max-width: 52ch; }
.contact-card { padding: 46px; border: 1px solid rgba(83, 56, 50,.05); border-radius: var(--radius-lg); background: var(--cream); box-shadow: var(--shadow); }
.contact-card > p:not(.eyebrow) { color: var(--muted); }
.contact-details { display: grid; gap: 10px; margin: 28px 0; }
.contact-item { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; padding: 16px; border: 1px solid var(--line); border-radius: 16px; text-decoration: none; background: rgba(255, 255, 255, .48); transition: border-color .2s, transform .2s, background .2s; }
.contact-item:hover { transform: translateY(-2px); border-color: rgba(169, 95, 72, .45); background: rgba(255, 255, 255, .8); }
.contact-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--paper); color: var(--sage-dark); font-size: 18px; }
.contact-item small { display: block; margin-bottom: 4px; color: var(--muted); font-size: 9px; font-style: normal; font-weight: 600; letter-spacing: .16em; }
.contact-item strong { display: block; font-size: 16px; line-height: 1.45; }
.contact-item em { display: block; margin-top: 4px; color: var(--sage-dark); font-size: 12px; font-style: normal; font-weight: 600; }
.contact-actions { display: grid; gap: 12px; margin: 30px 0 20px; }
.privacy-note { display: block; color: var(--muted); line-height: 1.5; }

.site-footer { padding: 34px 0 18px; border-top: 1px solid var(--line); background: var(--cream); }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; }
.footer-brand img { width: 62px; height: 62px; }
.footer-brand .brand-text strong { font-size: 21px; }
.footer-address { text-align: center; font-size: 12px; color: var(--muted); }
.footer-address p { margin: 0 0 2px; }
.footer-address a { font-weight: 600; text-underline-offset: 4px; }
.social-links { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 18px; }
.social-links a { font-size: 13px; text-underline-offset: 4px; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; margin-top: 26px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.footer-bottom p { margin: 0; }
.site-credit { justify-self: end; }
.site-credit strong { color: var(--sage-dark); font-weight: 600; letter-spacing: .04em; }
.mobile-whatsapp { display: none; }

/* O estado oculto só é aplicado quando o JS confirma que está ativo.
   Sem JS, o conteúdo permanece integralmente visível. */
.reveal { transition: opacity .7s ease, transform .7s ease; }
.has-js .reveal { opacity: 0; transform: translateY(24px); }
.has-js .reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .main-nav { position: fixed; inset: 90px 20px auto; display: none; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); box-shadow: var(--shadow); }
  .main-nav.open { display: grid; }
  .menu-button { display: flex; }
  .hero-grid, .about-grid, .process-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 560px; }
  .portrait-frame { left: 0; }
  .about-grid, .process-grid { gap: 48px; }
  .about-portrait { aspect-ratio: 1.65 / 1; }
}

@media (max-width: 640px) {
  body { padding-bottom: 72px; }
  .container { width: min(100% - 28px, 1160px); }
  .section-shell { padding: 78px 0; }
  .nav-wrap { min-height: 78px; }
  .brand img { width: 44px; height: 44px; }
  .brand-text strong { font-size: 17px; }
  .brand-text small { font-size: 8px; letter-spacing: .24em; }
  .main-nav { inset: 78px 14px auto; }
  .menu-label { display: none; }
  .hero { padding-top: 38px; }
  .hero h1 { font-size: clamp(41px, 12vw, 50px); }
  .hero-text { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 470px; }
  .portrait-frame { border-radius: 140px 140px 24px 24px; }
    .about-portrait { aspect-ratio: 4 / 3; border-radius: 24px 24px 70px 24px; }
  .about-portrait img { object-position: 55% center; }
  .about-portrait figcaption { left: 14px; right: 42px; bottom: 14px; max-width: none; padding: 14px 16px; }
  .about-portrait figcaption strong { font-size: 17px; }
  .service-number { margin-bottom: 42px; }
  .contact-card { padding: 30px 22px; }
  .footer-grid { grid-template-columns: 1fr; justify-items: start; }
  .footer-address { text-align: left; }
  .social-links { justify-content: flex-start; }
  .footer-bottom { grid-template-columns: 1fr; gap: 6px; }
  .site-credit { justify-self: start; margin-top: 6px !important; }
  .mobile-whatsapp {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 999px;
    background: var(--sage-dark);
    color: #fff;
    box-shadow: 0 12px 28px rgba(83, 56, 50,.25);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ─────────── Prova social: nota agregada do Google ───────────
   Somente a nota e o link para o perfil. O texto das avaliações não é
   reproduzido no site — depoimento de paciente em publicidade é restrito
   pelo Código de Ética do CFP. */
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 10px 16px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .5);
  text-decoration: none;
  font-size: 13px;
  color: var(--muted);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
/* sem :hover — o selo deixou de ser link */
.google-rating .stars { color: var(--sage); font-size: 14px; letter-spacing: 1px; }
.google-rating .rating-text strong { color: var(--ink); font-weight: 600; }
@media (max-width: 720px) {
  .google-rating { margin-top: 22px; font-size: 12.5px; }
}

/* ══════════════════════════════════════════════════════════════
   SEÇÕES DE POSICIONAMENTO
   Adicionadas na revisão de copy: identificação, frase de respiro
   e avaliações do Google.
   ══════════════════════════════════════════════════════════════ */

/* ─── Identificação: "talvez você se reconheça aqui" ─── */
.identify { padding: 112px 0; background: var(--blush-section); }
.identify-head { max-width: 760px; margin-bottom: 44px; }
.identify-head h2 { margin: 0 0 22px; font-size: clamp(28px, 3vw, 40px); }
.identify-head h2 em { color: var(--sage); font-style: normal; }
.identify-head > p { margin: 0; color: var(--muted); font-size: 16px; }

.phrases { list-style: none; display: grid; gap: 0; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.phrases li {
  position: relative;
  padding: 20px 0 20px 34px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.35;
  font-style: italic;
}
.phrases li::before {
  content: "\201C";
  position: absolute; left: 0; top: 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 40px; line-height: 1; color: var(--clay);
}
.identify-close { margin: 36px 0 0; max-width: 620px; color: var(--muted); font-size: 16px; }
@media (min-width: 860px) {
  .phrases { grid-template-columns: 1fr 1fr; column-gap: 56px; }
  .phrases li:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ─── Sobre: alterna com a identificação ─── */
.about { background: var(--cream); }
.cred-title { margin: 0; font-size: 17px; }
.cred-crp { margin: 2px 0 10px; font-size: 12px; letter-spacing: .18em; color: var(--sage-dark); }
.cred-note { margin: 0; font-size: 14px; }

/* ─── Frase de respiro ─── */
.pull-quote { padding: 112px 0; background: var(--blush-section); }
.pull-quote blockquote { max-width: 900px; margin: 0 auto; text-align: center; }
.pull-quote p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink);
  text-wrap: balance;
}
.pull-quote em { font-style: italic; color: var(--sage); }

/* ─── Avaliações do Google ─── */
.reviews { background: var(--blush-section); }
.reviews-head { max-width: 720px; margin-bottom: 46px; }
.reviews-head h2 { margin: 0 0 16px; font-size: clamp(28px, 3vw, 42px); }
.reviews-head h2 em { color: var(--sage); font-style: normal; }
.reviews-head .text-link { color: var(--sage-dark); }

.review-grid { display: grid; gap: 22px; }
@media (min-width: 900px) { .review-grid { grid-template-columns: repeat(3, 1fr); gap: 26px; } }

.review-card {
  display: flex; flex-direction: column; gap: 14px;
  margin: 0; padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
}
.review-stars { color: var(--sage); font-size: 15px; letter-spacing: 2px; }
.review-card blockquote {
  margin: 0; flex: 1;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px; line-height: 1.45;
}
.review-card blockquote::before { content: "\201C"; }
.review-card blockquote::after { content: "\201D"; }
.review-card figcaption { display: grid; gap: 2px; padding-top: 14px; border-top: 1px solid var(--line); }
.review-card figcaption strong { font-size: 14px; color: var(--ink); }
.review-card figcaption span { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* ─── Frase de respiro: assume o bloco escuro ───
   Com a saída da seção "Como posso te ajudar", a página perdeu seu único
   fundo escuro. A frase absorve esse papel: mantém o contraste de ritmo com
   uma linha, em vez de seis cards. */
.pull-quote { background: var(--forest); }
.pull-quote p { color: var(--cream); }
.pull-quote em { color: var(--brand-rose); }

/* ─── Faixa de públicos ───
   Responde "ela atende alguém como eu?" logo abaixo do hero, antes que a
   seção de identificação (de linguagem adulta e relacional) faça uma mãe
   buscando terapia infantil achar que o site não é para ela. */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.publics { padding: 34px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.public-list { list-style: none; display: grid; gap: 22px; padding: 0; margin: 0; }
.public-list li { display: grid; gap: 4px; }
.public-list strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 21px; font-weight: 600; color: var(--ink); line-height: 1.2;
}
.public-list span { font-size: 13.5px; line-height: 1.5; color: var(--muted); }
@media (min-width: 760px) {
  .publics { padding: 40px 0; }
  .public-list { grid-template-columns: repeat(3, 1fr); gap: 40px; }
}

/* ─── Ritmo vertical no mobile ───
   Precisa vir no fim do arquivo: as regras de .identify e .pull-quote são
   declaradas depois da media query de 640px e venceriam na cascata. */
@media (max-width: 640px) {
  .identify, .pull-quote { padding: 78px 0; }
  .publics { padding: 28px 0; }
}

/* ══════════════════ INTRODUÇÃO ══════════════════
   Cortina de abertura. Só existe com JS ativo — sem JS o conteúdo aparece
   direto, sem tela em branco. Duração reduzida de 2100ms para 1400ms e o
   logo passou de 360 KB para 27 KB, para diminuir o custo em conversão. */
body.intro-active { overflow: hidden; }
.site-intro { display: none; }
.has-js .site-intro {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 44%, rgba(255,255,255,.9), transparent 32%),
    linear-gradient(135deg, #F3E2DC, #FAF4F1 48%, #E8CCC4);
  transition: opacity .4s ease, visibility .4s ease;
}
.has-js .site-intro.is-finished { opacity: 0; visibility: hidden; pointer-events: none; }
.intro-inner { width: min(460px, 88vw); text-align: center; animation: introIn .8s cubic-bezier(.22,1,.36,1) both; }
.intro-inner img { width: min(190px, 48vw); height: auto; aspect-ratio: 1; margin-inline: auto; }
.intro-line { width: 140px; height: 1px; margin: 14px auto 18px; overflow: hidden; background: rgba(146,96,87,.16); }
.intro-line span { display: block; width: 100%; height: 100%; background: var(--clay); transform-origin: left; animation: introProgress 1.1s .1s ease-in-out both; }
.intro-inner p { margin: 0; color: var(--sage-dark); font-family: "Cormorant Garamond", Georgia, serif; font-size: 17px; font-style: italic; animation: introText .6s .3s both; }
@keyframes introIn { from { opacity: 0; transform: translateY(12px) scale(.98); } }
@keyframes introProgress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes introText { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ══════════════════ DÚVIDAS FREQUENTES ══════════════════
   Usa <details>/<summary> nativos: acessível por padrão, sem JavaScript,
   e o conteúdo está sempre no HTML para o Google indexar. */
.faq { background: var(--cream); }
.faq-head { max-width: 720px; margin-bottom: 40px; }
.faq-head h2 { margin: 0; font-size: clamp(28px, 3vw, 40px); }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
  padding: 22px 0; min-height: 44px;
  cursor: pointer; list-style: none;
  font-size: 17px; font-weight: 500; line-height: 1.45; color: var(--ink);
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--sage); }
.faq-icon { position: relative; flex: none; width: 14px; height: 14px; margin-top: 5px; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 14px; height: 1px; background: var(--sage);
  transition: transform .3s ease, opacity .3s ease;
}
.faq-icon::after { transform: rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: rotate(0); opacity: 0; }
.faq-answer { padding-bottom: 24px; }
.faq-answer p { margin: 0; max-width: 68ch; color: var(--muted); font-size: 16px; line-height: 1.7; }
@media (max-width: 640px) {
  .faq-item summary { font-size: 16px; gap: 16px; }
}
