/* Andreia Ferreira — Psicóloga · Psicoterapeuta · Neuropsicóloga */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --bone: #EDE8E4;
  --bone-deep: #E3DCD6;
  --paper: #F6F3F0;
  --ink: #2B2927;
  --ink-soft: #5C5753;
  --muted: #8E8782;
  --terra: #CF816A;
  --terra-deep: #B26950;
  --blue: #799DAD;
  --blue-deep: #33505F;
  --line: #D8D0C9;

  --display: 'Cormorant Garamond', Georgia, serif;
  --body: 'Jost', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.005em;
  margin: 0;
}
h1 { font-size: clamp(42px, 6.6vw, 86px); }
h2 { font-size: clamp(32px, 4.6vw, 58px); }
h3 { font-size: clamp(21px, 2.2vw, 27px); line-height: 1.18; }
em { font-style: italic; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.narrow { max-width: 800px; }

.eyebrow {
  font-size: 11px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--blue); margin: 0 0 24px;
}
.eyebrow.t { color: var(--terra-deep); }
.lead { font-size: clamp(17px, 1.5vw, 19.5px); line-height: 1.66; color: var(--ink-soft); }

/* ── NAV ─────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 32px;
  transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
#nav.stuck {
  padding: 12px 32px;
  background: rgba(237, 232, 228, .88);
  backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: 0 1px 0 var(--line);
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { height: 46px; width: auto; transition: height .4s var(--ease); }
#nav.stuck .brand img { height: 38px; }

.nav-right { display: flex; align-items: center; gap: 34px; }
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  text-decoration: none; font-size: 13.5px; font-weight: 400; letter-spacing: .04em;
  color: var(--ink-soft); position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--terra); transition: right .45s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--body); font-size: 13.5px; font-weight: 500; letter-spacing: .05em;
  padding: 14px 28px; border-radius: 2px; border: 1px solid var(--terra);
  background: var(--terra); color: #fff; text-decoration: none;
  transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.btn:hover { transform: translateY(-2px); background: var(--terra-deep); border-color: var(--terra-deep); box-shadow: 0 10px 24px rgba(178,105,80,.22); }
.btn.ghost { background: none; color: var(--ink); border-color: var(--line); }
.btn.ghost:hover { background: none; border-color: var(--ink); box-shadow: none; }
.btn.light { background: #fff; color: var(--blue-deep); border-color: #fff; }
.btn.light:hover { background: var(--bone); border-color: var(--bone); color: var(--blue-deep); }
.btn svg { width: 14px; height: 14px; }
#nav .btn { padding: 11px 22px; font-size: 12.5px; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: 2px; background: none; cursor: pointer; padding: 0;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 17px; height: 1.2px; background: var(--ink); transition: transform .4s var(--ease); }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(3.1px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { transform: translateY(-3.1px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 95; background: var(--bone);
  padding: 118px 32px 40px; display: flex; flex-direction: column;
  opacity: 0; pointer-events: none; transform: translateY(-10px);
  transition: opacity .4s var(--ease), transform .5s var(--ease);
}
body.menu-open .mobile-menu { opacity: 1; pointer-events: auto; transform: none; }
.mobile-menu a {
  font-family: var(--display); font-size: 32px; text-decoration: none;
  padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--ink);
}
.mobile-menu .btn {
  margin-top: 28px; border-bottom: 0; color: #fff;
  font-family: var(--body); font-size: 14px; padding: 17px 28px;
}

/* ── HERO ────────────────────────────────────── */
.hero { position: relative; padding: 172px 0 96px; overflow: hidden; }
.hero-mark {
  position: absolute; right: -90px; top: 40px; width: min(50vw, 620px);
  opacity: .10; pointer-events: none; z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }
.hero h1 { max-width: 15ch; }
.hero h1 em { color: var(--terra); }
.hero .lead { margin: 32px 0 0; max-width: 50ch; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 40px; }

.creds {
  border-top: 1px solid var(--line); margin-top: 92px; padding: 24px 0 0;
  display: flex; flex-wrap: wrap; gap: 10px 38px;
  font-size: 13px; color: var(--muted); letter-spacing: .03em;
}
.creds b { color: var(--ink-soft); font-weight: 500; }

/* ── SECTIONS ────────────────────────────────── */
.section { padding: 112px 0; }
.section-head { max-width: 660px; margin-bottom: 62px; }
.section-head h2 em { color: var(--terra); }

/* serviços — dual tone */
.svc { border-top: 1px solid var(--line); }
.svc-row {
  display: grid; grid-template-columns: 66px 1fr 1.15fr; gap: 30px; align-items: start;
  padding: 38px 8px; border-bottom: 1px solid var(--line);
  transition: background .5s var(--ease), padding-left .5s var(--ease);
  position: relative;
}
.svc-row::before {
  content: ''; position: absolute; left: 0; top: -1px; height: 1px; width: 0;
  background: var(--tone, var(--terra)); transition: width .7s var(--ease);
}
.svc-row:hover::before { width: 100%; }
.svc-row:hover { background: var(--paper); padding-left: 20px; }
.svc-n {
  font-family: var(--display); font-size: 25px; color: var(--tone, var(--terra));
  line-height: 1;
}
.svc-row h3 { padding-right: 20px; }
.svc-row p { margin: 0; color: var(--ink-soft); font-size: 15.5px; }
.svc-row[data-tone="blue"] { --tone: var(--blue); }

/* quem acompanho — linha que desenha */
.life { background: var(--paper); }
.life-track { position: relative; margin-top: 56px; }
.life-line {
  position: absolute; left: 0; right: 0; top: 13px; height: 1px; background: var(--line);
}
.life-line i {
  position: absolute; left: 0; top: 0; height: 1px; width: 0; background: var(--terra);
  transition: width 1.6s var(--ease);
}
.life-track.in .life-line i { width: 100%; }
.life-items { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative; }
.life-item { text-align: left; }
.life-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--bone);
  border: 1px solid var(--line); margin: 9px 0 22px;
  transition: background .5s var(--ease), border-color .5s var(--ease), transform .5s var(--ease);
}
.life-track.in .life-item:nth-child(1) .life-dot { transition-delay: .15s; }
.life-track.in .life-item:nth-child(2) .life-dot { transition-delay: .45s; }
.life-track.in .life-item:nth-child(3) .life-dot { transition-delay: .75s; }
.life-track.in .life-item:nth-child(4) .life-dot { transition-delay: 1.05s; }
.life-track.in .life-item:nth-child(5) .life-dot { transition-delay: 1.35s; }
.life-track.in .life-dot { background: var(--terra); border-color: var(--terra); transform: scale(1.25); }
.life-item b { display: block; font-family: var(--display); font-size: 23px; font-weight: 400; margin-bottom: 6px; }
.life-item span { font-size: 14px; color: var(--muted); }

/* sobre */
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 76px; align-items: start; }
.about-photo { position: relative; }
.about-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 18%; }
.about-photo::after {
  content: ''; position: absolute; inset: 14px -14px -14px 14px;
  border: 1px solid var(--blue); z-index: -1;
}
.about-body p { color: var(--ink-soft); margin: 0 0 20px; }
.about-body p:last-child { margin-bottom: 0; }
.stat {
  display: flex; align-items: baseline; gap: 16px; margin: 0 0 34px;
}
.stat b { font-family: var(--display); font-size: clamp(56px, 8vw, 92px); line-height: .82; color: var(--terra); font-weight: 300; }
.stat span { font-size: 14px; color: var(--muted); max-width: 16ch; line-height: 1.35; }

.quote {
  margin: 50px 0 0; padding: 32px 0 0; border-top: 1px solid var(--line);
  font-family: var(--display); font-size: clamp(22px, 2.5vw, 31px);
  font-style: italic; font-weight: 300; line-height: 1.32;
}
.quote cite { display: block; margin-top: 18px; font-family: var(--body); font-style: normal; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

.training { margin-top: 62px; }
.training h4 {
  font-size: 11px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 18px;
}
.tr-row { display: flex; justify-content: space-between; gap: 22px; padding: 14px 0; border-top: 1px solid var(--line); font-size: 14.5px; }
.tr-row span { color: var(--ink-soft); }
.tr-row b { font-weight: 500; color: var(--ink); }
.tr-row i { font-style: normal; color: var(--muted); white-space: nowrap; font-size: 13px; }

/* consultas */
.sessions { background: var(--blue-deep); color: var(--bone); }
.sessions .eyebrow { color: rgba(237,232,228,.55); }
.sessions h2 em { color: var(--terra); }
.sess-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 56px; }
.sess-grid-3 { grid-template-columns: repeat(3, 1fr); }
.sess-card .sess-tag {
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid rgba(237,232,228,.18);
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(237,232,228,.62);
}
.sess-card { display: flex; flex-direction: column; }
.sess-card .sess-tag { margin-top: auto; }
.sess-card {
  border: 1px solid rgba(237,232,228,.2); padding: 34px;
  transition: background .4s var(--ease), border-color .4s var(--ease);
}
.sess-card:hover { background: rgba(237,232,228,.05); border-color: rgba(237,232,228,.4); }
.sess-card .k { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--terra); margin-bottom: 18px; }
.sess-card h3 { margin-bottom: 14px; }
.sess-card p { color: rgba(237,232,228,.7); font-size: 15px; margin: 0; }
.sess-card .addr { margin-top: 16px; font-size: 14px; color: rgba(237,232,228,.55); }

.price-rows { margin-top: 52px; border-top: 1px solid rgba(237,232,228,.2); }
.price-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  padding: 22px 0; border-bottom: 1px solid rgba(237,232,228,.2);
}
.price-row .who b { font-size: 17px; font-weight: 400; display: block; }
.price-row .who small { font-size: 13px; color: rgba(237,232,228,.55); }
.price-row .amount { font-family: var(--display); font-size: 30px; white-space: nowrap; }
.sess-note { margin-top: 30px; font-size: 13.5px; color: rgba(237,232,228,.55); }
.sessions .btn { margin-top: 36px; }

/* contacto */
.final { padding: 122px 0; text-align: center; }
.final-mark { width: 86px; margin: 0 auto 34px; opacity: .9; }
.final h2 { max-width: 17ch; margin: 0 auto; }
.final h2 em { color: var(--terra); }
.final .lead { margin: 24px auto 40px; max-width: 46ch; }
.final-links { margin-top: 44px; display: flex; gap: 12px 34px; justify-content: center; flex-wrap: wrap; font-size: 14.5px; }
.final-links a { color: var(--ink-soft); text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 3px; }
.final-links a:hover { color: var(--terra-deep); border-color: var(--terra); }

/* footer */
footer { background: var(--blue-deep); color: rgba(237,232,228,.55); padding: 44px 0; font-size: 12.5px; }
.foot-in { display: flex; flex-wrap: wrap; gap: 14px 32px; justify-content: space-between; }
.foot-legal { display: flex; flex-wrap: wrap; gap: 10px 22px; }
footer a { color: rgba(237,232,228,.55); text-decoration: none; }
footer a:hover { color: var(--bone); }
.crisis {
  margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(237,232,228,.14);
  display: flex; flex-wrap: wrap; gap: 8px 28px; font-size: 11.5px; color: rgba(237,232,228,.4);
}
.crisis b { color: rgba(237,232,228,.68); font-weight: 500; }

/* reveal */
.rv { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.rv.in { opacity: 1; transform: none; }

/* legal */
.legal-head { padding: 152px 0 22px; }
.legal-head .back { font-size: 13px; color: var(--muted); text-decoration: none; display: inline-flex; gap: 8px; align-items: center; margin-bottom: 26px; }
.legal-head .updated { font-size: 13px; color: var(--muted); margin-top: 16px; }
.legal-body { padding-bottom: 104px; }
.legal-body h2 { font-family: var(--body); font-size: 16px; font-weight: 500; margin: 42px 0 12px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--ink-soft); font-size: 15.5px; }
.legal-body a { color: var(--terra-deep); }

@media (max-width: 920px) {
  .nav-links, #nav .btn { display: none; }
  .nav-toggle { display: flex; }
  .brand img, #nav.stuck .brand img { height: 38px; }
  .hero { padding: 128px 0 74px; }
  .hero-mark { right: -130px; top: auto; bottom: -40px; width: 70vw; opacity: .07; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { max-width: 360px; }
  .about-photo::after { inset: 12px -12px -12px 12px; }
  .svc-row { grid-template-columns: 44px 1fr; gap: 14px 18px; padding: 28px 4px; }
  .svc-row p { grid-column: 2; }
  .life-items { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .life-line { display: none; }
  .life-dot { margin-top: 0; }
  .sess-grid, .sess-grid-3 { grid-template-columns: 1fr; }
  .section, .final { padding: 78px 0; }
}
@media (max-width: 520px) {
  .life-items { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}
