/* =========================================================
   ANDRESSA SANTANA — Psicóloga · Salvador + Online
   Design system: creme · areia · oliva · terracota
   Assinatura visual: o arco (portal) — "um espaço seguro"
   ========================================================= */

:root{
  --creme:      #F7F4EC;
  --areia:      #EDE7DB;
  --oliva-950:  #2B2F26;
  --oliva-900:  #3E4636;
  --oliva-700:  #5A6552;
  --oliva-100:  #E5E7D9;
  --terracota:  #B9765A;
  --terracota-l:#D9A98F;
  --grafite:    #37342D;
  --grafite-2:  #6E6A5E;
  --card:       #FFFDF8;
  --borda:      #E4DCCB;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --radius: 24px;
  --shadow-soft: 0 24px 48px -28px rgba(62, 70, 54, .35);
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; margin: 0; padding: 0; }

html{ scroll-behavior: smooth; }

body{
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--grafite);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
}

img{ display: block; max-width: 100%; }

a{ color: inherit; }

:focus-visible{ outline: 2px solid var(--oliva-700); outline-offset: 3px; border-radius: 4px; }

section{ scroll-margin-top: 88px; }

.container{ width: min(1180px, 100% - clamp(40px, 6vw, 80px)); margin-inline: auto; }
.narrow{ max-width: 800px; }

.skip-link{
  position: fixed; top: -60px; left: 16px; z-index: 200;
  background: var(--oliva-900); color: var(--creme);
  padding: 10px 18px; border-radius: 10px; font-size: 14px;
  transition: top .25s var(--ease);
}
.skip-link:focus{ top: 12px; }

/* ---------- Tipografia ---------- */
h1, h2, h3{
  font-family: var(--font-display);
  font-weight: 500;
  color: #39402F;
  line-height: 1.14;
  letter-spacing: -.012em;
}

h2{ font-size: clamp(1.85rem, 3.2vw, 2.7rem); }

.eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .17em;
  text-transform: uppercase; color: var(--oliva-700);
  margin-bottom: 18px;
}
.eyebrow-leaf{ width: 15px; height: 15px; fill: currentColor; flex: none; }

.accent{ font-style: italic; color: var(--terracota); position: relative; white-space: nowrap; }
.accent-light{ font-style: italic; color: var(--terracota-l); }

.underline{
  position: absolute; left: 2%; bottom: -.13em; width: 96%; height: .14em;
  fill: none; stroke: var(--terracota); stroke-width: 3.2; stroke-linecap: round;
  stroke-dasharray: 230; stroke-dashoffset: 230;
  animation: draw 1s var(--ease) 1.05s forwards;
}
@keyframes draw{ to{ stroke-dashoffset: 0; } }

/* ---------- Botões & links ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-size: 15.5px; font-weight: 600;
  padding: 15px 30px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform .25s var(--ease), background-color .25s, color .25s,
              border-color .25s, box-shadow .25s;
}
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }

.btn-solid{ background: var(--oliva-700); color: var(--creme); }
.btn-solid:hover{ background: var(--oliva-900); box-shadow: var(--shadow-soft); }

.btn-ghost{ background: transparent; color: var(--grafite); border-color: var(--borda); }
.btn-ghost:hover{ border-color: var(--oliva-700); color: var(--oliva-900); }

.btn-cream{ background: var(--creme); color: var(--oliva-900); }
.btn-cream:hover{ background: #fff; box-shadow: 0 20px 44px -20px rgba(0,0,0,.45); }

.btn-sm{ padding: 11px 22px; font-size: 14px; }
.btn-lg{ padding: 18px 38px; font-size: 16.5px; }
.btn-block{ width: 100%; }

.arrow{ display: inline-block; transition: transform .25s var(--ease); }
.btn:hover .arrow, .text-link:hover .arrow{ transform: translateX(4px); }

.text-link{
  font-weight: 600; color: var(--oliva-700); text-decoration: none;
  border-bottom: 1px solid transparent; transition: color .2s;
}
.text-link:hover{ color: var(--oliva-900); }

.wa-icon{ width: 21px; height: 21px; fill: currentColor; flex: none; }

/* ---------- Seções ---------- */
.section{ padding: clamp(76px, 9vw, 124px) 0; }
.section-alt{ background: var(--areia); }
.section-sage{ background: var(--oliva-100); }

.section-head{ max-width: 660px; margin: 0 auto clamp(44px, 6vw, 68px); text-align: center; }
.section-intro{ margin-top: 18px; color: var(--grafite-2); font-size: 17px; }

/* ---------- Cards ---------- */
.card{
  background: var(--card);
  border: 1px solid var(--borda);
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(62,70,54,.04);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color .35s, border-color .35s, box-shadow .35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled{
  background: rgba(247, 244, 236, .85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--borda);
}

.header-inner{ display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 78px; }

.brand{ text-decoration: none; display: flex; flex-direction: column; line-height: 1.25; }
.brand-name{ font-family: var(--font-display); font-size: 21px; font-weight: 500; color: #39402F; }
.brand-sub{ font-size: 10.5px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--grafite-2); }

.main-nav ul{ display: flex; align-items: center; gap: clamp(20px, 2.6vw, 34px); list-style: none; }
.main-nav a:not(.btn){
  font-size: 14px; font-weight: 500; text-decoration: none; color: var(--grafite);
  transition: color .2s;
}
.main-nav a:not(.btn):hover{ color: var(--oliva-700); }

.hamburger{
  display: none; position: relative; z-index: 130;
  width: 44px; height: 44px; border: 1px solid var(--borda); border-radius: 50%;
  background: var(--card); cursor: pointer;
}
.hamburger span{
  position: absolute; left: 12px; right: 12px; height: 1.8px; border-radius: 2px;
  background: var(--oliva-900); transition: transform .3s var(--ease), top .3s var(--ease);
}
.hamburger span:nth-child(1){ top: 18px; }
.hamburger span:nth-child(2){ top: 25px; }
.hamburger.active span:nth-child(1){ top: 21px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2){ top: 21px; transform: rotate(-45deg); }

.nav-cta-mobile{ display: none; }

/* =========================================================
   HERO
   ========================================================= */
.hero{ overflow: hidden; }

.hero-grid{
  display: grid; grid-template-columns: 1.12fr .88fr;
  gap: clamp(44px, 6vw, 88px); align-items: center;
  padding-top: clamp(148px, 19vh, 190px);
  padding-bottom: clamp(80px, 10vh, 116px);
}

.hero-title{
  font-size: clamp(2.55rem, 5vw, 4.35rem);
  margin-bottom: 26px;
}

.hero-sub{ max-width: 52ch; color: var(--grafite-2); font-size: clamp(16.5px, 1.3vw, 18px); margin-bottom: 38px; }

.hero-ctas{ display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 34px; }

.hero-proof{
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; color: var(--grafite-2);
}
.hero-proof strong{ color: var(--grafite); font-weight: 700; }

.stars{ display: inline-flex; gap: 2px; }
.stars svg{ width: 17px; height: 17px; fill: var(--terracota); }
.stars--lg svg{ width: 21px; height: 21px; }
.stars--sm svg{ width: 13px; height: 13px; }

/* Foto em arco — assinatura do site */
.hero-photo{ position: relative; }
.arch-frame{
  position: relative; z-index: 1;
  aspect-ratio: 4 / 5; max-width: 480px; margin-left: auto;
  border-radius: 999px 999px var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(62, 70, 54, .45);
}
.arch-frame img{ width: 100%; height: 100%; object-fit: cover; }

.hero-blob{
  position: absolute; top: -7%; right: -9%; width: 112%; z-index: 0;
  fill: var(--oliva-100);
}

/* Animação de entrada */
.anim-load{ opacity: 0; animation: fadeUp .8s var(--ease) forwards; animation-delay: var(--d, 0s); }
@keyframes fadeUp{ from{ opacity: 0; transform: translateY(18px); } to{ opacity: 1; transform: none; } }

.anim-photo{ opacity: 0; animation: photoIn 1s var(--ease) forwards; animation-delay: var(--d, 0s); }
@keyframes photoIn{ from{ opacity: 0; transform: translateY(14px) scale(1.03); } to{ opacity: 1; transform: none; } }

/* =========================================================
   TRUST BAR
   ========================================================= */
.trustbar{ background: var(--card); border-block: 1px solid var(--borda); }
.trustbar-inner{
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px 22px; padding: 24px 0;
  font-size: 12.5px; font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase; color: var(--grafite-2); text-align: center;
}
.trustbar-inner i{ width: 5px; height: 5px; border-radius: 50%; background: var(--terracota); opacity: .75; }

/* =========================================================
   IDENTIFICAÇÃO — cards de dor
   ========================================================= */
.pain-grid{
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 22px; margin-bottom: clamp(44px, 6vw, 64px);
}

.pain-card{ padding: clamp(28px, 3.4vw, 40px); transition: transform .3s var(--ease), box-shadow .3s; }
.pain-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-soft); }

.card-icon{
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--oliva-100); color: var(--oliva-700);
  margin-bottom: 22px;
}
.card-icon svg{ width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.pain-card h3{ font-size: 22.5px; margin-bottom: 10px; }
.pain-card p{ color: var(--grafite-2); font-size: 15.5px; }

.pain-close{
  text-align: center; max-width: 620px; margin-inline: auto;
  font-family: var(--font-display); font-size: clamp(1.25rem, 2vw, 1.55rem);
  color: #39402F; line-height: 1.5;
}
.pain-close .text-link{
  display: block; margin-top: 14px; font-family: var(--font-body); font-size: 15.5px;
}

/* =========================================================
   SOBRE
   ========================================================= */
.about-grid{
  display: grid; grid-template-columns: .92fr 1.08fr;
  gap: clamp(44px, 6.5vw, 92px); align-items: center;
}

.photo-frame{
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 4.6; box-shadow: var(--shadow-soft);
}
.photo-frame::after{
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, .35); pointer-events: none;
}
.photo-frame img{ width: 100%; height: 100%; object-fit: cover; }

.about-copy h2{ margin-bottom: 22px; }
.about-copy > p{ color: var(--grafite-2); margin-bottom: 18px; max-width: 56ch; }

.credentials{ list-style: none; margin: 30px 0 36px; display: grid; gap: 13px; }
.credentials li{ display: flex; align-items: center; gap: 13px; font-weight: 600; font-size: 15.5px; color: var(--grafite); }
.cred-check{
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--oliva-700); display: grid; place-items: center;
}
.cred-check svg{ width: 12px; height: 12px; fill: none; stroke: var(--creme); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

/* =========================================================
   TCC — fluxo pensamentos → emoções → comportamentos
   ========================================================= */
.tcc-flow{
  display: flex; align-items: center; justify-content: center;
  gap: clamp(10px, 2.4vw, 26px); flex-wrap: wrap;
  margin-top: clamp(40px, 5vw, 60px);
}

.tcc-node{ text-align: center; padding: 0 6px; }
.tcc-node strong{ display: block; font-family: var(--font-display); font-size: clamp(19px, 2vw, 23px); font-weight: 500; color: #39402F; }
.tcc-node small{ font-size: 13px; color: var(--grafite-2); letter-spacing: .03em; }

.tcc-dot{
  display: block; width: 10px; height: 10px; margin: 0 auto 12px;
  border-radius: 50%; background: var(--terracota);
  animation: pulse 3.2s ease-in-out infinite; animation-delay: var(--t, 0s);
}
@keyframes pulse{ 0%, 100%{ transform: scale(1); opacity: .55; } 50%{ transform: scale(1.5); opacity: 1; } }

.tcc-link{ width: clamp(56px, 7vw, 90px); height: 24px; flex: none; }
.tcc-line{ fill: none; stroke: var(--oliva-700); stroke-width: 1.6; stroke-dasharray: 4 7; stroke-linecap: round; animation: dash 2.6s linear infinite; }
@keyframes dash{ to{ stroke-dashoffset: -44; } }
.tcc-arrow{ fill: none; stroke: var(--oliva-700); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.tcc-note{ text-align: center; margin-top: 34px; font-size: 15px; color: var(--grafite-2); font-style: italic; }

/* =========================================================
   COMO FUNCIONA — passos
   ========================================================= */
.steps{
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 40px); list-style: none; counter-reset: passo;
}

.step{ position: relative; padding-top: 8px; }
.step::before{
  content: ""; position: absolute; top: 15px; left: 0; right: -40px;
  height: 1px; background: var(--borda);
}
.step:last-child::before{ display: none; }
.step::after{
  content: ""; position: absolute; top: 11.5px; left: 0;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--terracota); opacity: .8;
}

.step-num{
  display: block; margin-bottom: 20px;
  font-family: var(--font-display); font-style: italic; font-size: 42px;
  color: var(--terracota); opacity: .85; line-height: 1;
}
.step h3{ font-size: 19.5px; margin-bottom: 9px; padding-left: 24px; }
.step p{ font-size: 14.8px; color: var(--grafite-2); padding-left: 24px; }

/* =========================================================
   MODALIDADES
   ========================================================= */
.modality-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: stretch; }

.modality-card{ overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s; }
.modality-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-soft); }

.modality-media{ aspect-ratio: 16 / 8.6; overflow: hidden; }
.modality-media img, .modality-media svg{ width: 100%; height: 100%; object-fit: cover; }

.modality-body{ display: flex; flex-direction: column; flex: 1; padding: clamp(28px, 3vw, 38px); }
.modality-body h3{ font-size: 24px; margin-bottom: 6px; }
.modality-place{ font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--terracota); margin-bottom: 6px; }
.modality-address{ font-size: 14.5px; color: var(--grafite-2); margin-bottom: 16px; }
.modality-body > p:not(.modality-place):not(.modality-address){ color: var(--grafite-2); font-size: 15.5px; flex: 1; }
.modality-actions{ margin-top: 26px; }

/* =========================================================
   AVALIAÇÕES
   ========================================================= */
.rating-line{
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 20px; font-size: 15.5px; color: var(--grafite-2);
}
.rating-line strong{ color: var(--grafite); font-size: 17px; }

.reviews-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.review-card{ padding: clamp(28px, 3vw, 36px); display: flex; flex-direction: column; }
.review-card blockquote{ flex: 1; }
.review-card blockquote p{
  font-size: 15.5px; color: var(--grafite); line-height: 1.75;
}
.review-card blockquote p::before{
  content: "“"; display: block;
  font-family: var(--font-display); font-size: 44px; line-height: .6;
  color: var(--terracota); margin-bottom: 14px;
}

.review-card figcaption{
  display: flex; align-items: center; gap: 12px;
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--borda);
}
.review-avatar{
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  background: var(--oliva-100); color: var(--oliva-700);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 17px;
}
.review-author{ font-weight: 700; font-size: 14.5px; line-height: 1.3; }
.review-author small{ display: block; font-weight: 500; color: var(--grafite-2); font-size: 12.5px; }
.review-card .stars{ margin-left: auto; }

.reviews-link{ text-align: center; margin-top: 44px; font-size: 16px; }

/* =========================================================
   INTERLUDE EMOCIONAL
   ========================================================= */
.interlude{
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: min(560px, 78vh);
}

.interlude-media{ overflow: hidden; position: relative; }
.interlude-media img{
  position: absolute; inset: -28px 0; width: 100%; height: calc(100% + 56px);
  object-fit: cover; will-change: transform;
}

.interlude-copy{
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(52px, 7vw, 104px);
  background: var(--creme);
}
.interlude-copy h2{ font-size: clamp(1.95rem, 3.4vw, 3rem); margin-bottom: 24px; }
.interlude-copy p{ color: var(--grafite-2); max-width: 44ch; margin-bottom: 36px; }

/* =========================================================
   GALERIA — consultório
   ========================================================= */
.gallery{
  display: grid; gap: 20px;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: repeat(2, 264px);
}
.gallery-item{ border-radius: 20px; overflow: hidden; margin: 0; }
.gallery-item img{ width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery-item:hover img{ transform: scale(1.04); }
.gallery-item--big{ grid-row: 1 / 3; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list{ display: grid; gap: 14px; }

.faq-item{
  background: var(--card); border: 1px solid var(--borda);
  border-radius: 16px; overflow: hidden;
}
.faq-item summary{
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 26px; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: 18.5px; font-weight: 500; color: #39402F;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary:hover{ color: var(--oliva-700); }

.faq-icon{ position: relative; flex: none; width: 15px; height: 15px; }
.faq-icon::before, .faq-icon::after{
  content: ""; position: absolute; background: var(--oliva-700);
  top: 50%; left: 50%; border-radius: 2px;
  transition: transform .28s var(--ease);
}
.faq-icon::before{ width: 15px; height: 1.7px; transform: translate(-50%, -50%); }
.faq-icon::after{ width: 1.7px; height: 15px; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon::after{ transform: translate(-50%, -50%) rotate(90deg); }

.faq-answer{ display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s var(--ease); }
.faq-item.open .faq-answer{ grid-template-rows: 1fr; }
.faq-answer p{
  overflow: hidden; min-height: 0;
  padding: 0 26px; color: var(--grafite-2); font-size: 15.5px;
}
.faq-item.open .faq-answer p{ padding-bottom: 24px; }

/* =========================================================
   CTA FINAL
   ========================================================= */
.final-cta{
  background: var(--oliva-900);
  color: #F1EDE0;
  text-align: center;
  padding: clamp(96px, 13vw, 148px) 0;
  position: relative; overflow: hidden;
}
.cta-arch{ width: 42px; height: 54px; color: rgba(241, 237, 224, .45); margin-bottom: 30px; }
.final-cta h2{ color: #F7F4EC; font-size: clamp(2rem, 4vw, 3.15rem); max-width: 17ch; margin: 0 auto 22px; }
.final-cta p{ color: rgba(241, 237, 224, .78); margin-bottom: 40px; font-size: 17px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background: var(--oliva-950); color: #B9B6A6; font-size: 14.5px; }

.footer-grid{
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px; padding: clamp(56px, 7vw, 84px) 0 48px;
}

.footer-name{ font-family: var(--font-display); font-size: 24px; color: #F1EDE0; margin-bottom: 4px; }
.footer-role{ font-size: 12px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: #8F917E; margin-bottom: 18px; }
.site-footer address{ font-style: normal; line-height: 1.8; color: #B9B6A6; }

.footer-title{
  font-size: 11.5px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: #8F917E; margin-bottom: 16px;
}
.footer-nav, .footer-contact, .footer-legal{ display: flex; flex-direction: column; gap: 11px; }
.site-footer a{ color: #B9B6A6; text-decoration: none; transition: color .2s; width: fit-content; }
.site-footer a:hover{ color: #F1EDE0; }

.footer-bottom{
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  border-top: 1px solid rgba(241, 237, 224, .12);
  padding: 26px 0 34px; font-size: 12.5px; color: #8F917E;
}
.footer-sig{ text-align: right; max-width: 52ch; }

/* =========================================================
   FLUTUANTES — WhatsApp + barra mobile
   ========================================================= */
.wa-float{
  position: fixed; right: 26px; bottom: 26px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--oliva-700); color: var(--creme);
  display: grid; place-items: center;
  box-shadow: 0 14px 34px -12px rgba(43, 47, 38, .55);
  opacity: 0; transform: translateY(14px) scale(.85); pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease), background-color .2s;
}
.wa-float svg{ width: 27px; height: 27px; fill: currentColor; }
.wa-float.visible{ opacity: 1; transform: none; pointer-events: auto; }
.wa-float:hover{ background: var(--oliva-900); transform: translateY(-2px); }

.mobile-cta{
  position: fixed; inset: auto 0 0 0; z-index: 55;
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(247, 244, 236, .92);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-top: 1px solid var(--borda);
  transform: translateY(110%);
  transition: transform .4s var(--ease);
}
.mobile-cta.visible{ transform: none; }

/* =========================================================
   REVEAL — entrada ao rolar
   ========================================================= */
.reveal{ opacity: 0; transform: translateY(26px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.in-view{ opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 1023px){
  .header-cta{ display: none; }
}

@media (max-width: 960px){
  .hamburger{ display: block; }

  .main-nav{
    position: fixed; top: 0; right: 0; height: 100dvh;
    width: min(84vw, 380px); z-index: 120;
    background: var(--creme);
    border-left: 1px solid var(--borda);
    transform: translateX(102%);
    transition: transform .4s var(--ease);
    padding: 120px clamp(28px, 8vw, 48px) 40px;
    visibility: hidden;
  }
  .main-nav.open{ transform: none; visibility: visible; box-shadow: -30px 0 80px rgba(43,47,38,.18); }
  .main-nav ul{ flex-direction: column; align-items: flex-start; gap: 26px; }
  .main-nav a:not(.btn){ font-size: 19px; }
  .nav-cta-mobile{ display: block; margin-top: 10px; }

  .hero-grid{ grid-template-columns: 1fr; padding-top: 112px; }
  .hero-photo{ order: -1; max-width: 440px; margin-bottom: 40px; }
  .arch-frame{ margin-inline: auto; }

  .about-grid{ grid-template-columns: 1fr; }
  .photo-frame{ max-width: 520px; }

  .steps{ grid-template-columns: 1fr; gap: 0; border-left: 1px solid var(--borda); margin-left: 6px; }
  .step{ padding: 26px 0 26px 30px; }
  .step::before, .step::after{ display: none; }
  .step::before{
    display: block; top: 34px; bottom: -4px; left: -3.5px; right: auto;
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--terracota); opacity: .8;
  }
  .step-num{ font-size: 30px; margin-bottom: 6px; }
  .step h3, .step p{ padding-left: 0; }

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

  .reviews-grid{ grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }

  .interlude{ grid-template-columns: 1fr; }
  .interlude-media{ min-height: 320px; position: relative; }
  .interlude-media img{ position: absolute; inset: -28px 0; height: calc(100% + 56px); }

  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }
  .footer-sig{ text-align: left; }
}

@media (max-width: 700px){
  body{ font-size: 16px; }

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

  .gallery{ grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery-item{ aspect-ratio: 4 / 3; }
  .gallery-item--big{ grid-row: auto; aspect-ratio: 4 / 3.2; }

  .hero-ctas .btn{ width: 100%; }

  .trustbar-inner{ gap: 10px 16px; font-size: 11.5px; }
  .trustbar-inner i:nth-of-type(2){ display: none; }

  .wa-float{ display: none; }
  .footer-bottom{ padding-bottom: 96px; }

  .step-num{ font-size: 26px; }
  .faq-item summary{ font-size: 16.5px; padding: 19px 20px; }
  .faq-answer p{ padding: 0 20px; }
  .faq-item.open .faq-answer p{ padding-bottom: 20px; }
}

/* ---------- Movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .anim-load, .anim-photo{ opacity: 1; }
  .reveal{ opacity: 1; transform: none; }
  .underline{ stroke-dashoffset: 0; }
  .interlude-media img{ transform: none !important; }
}
