/* =====================================================================
   Psicóloga Elaine Zuchi — Folha de estilo principal
   Design system: "Espaço Seguro"
   - Cor âncora: teal profundo (confiança, calma)
   - Fundo: papel quente (acolhimento, sem o clichê creme/terracota)
   - Acento: damasco suave (humano, gentil)
   - Tipografia: Fraunces (títulos) + Mulish (corpo)
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Cores */
  --paper:        #FBF9F5;   /* fundo principal, papel quente */
  --paper-soft:   #F4F0E9;   /* blocos suaves */
  --sage:         #E9EFEA;   /* superfície calma */
  --sage-deep:    #DCE7E1;
  --ink:          #1E2A2C;   /* texto principal */
  --ink-soft:     #4A5A5C;   /* texto secundário */
  --teal:         #2F5D62;   /* marca principal */
  --teal-deep:    #1C3B3E;   /* títulos/escuro */
  --teal-light:   #6E9A9C;
  --apricot:      #E0A188;   /* acento quente */
  --apricot-soft: #F2D9CC;
  --whats:        #25D366;   /* WhatsApp */
  --whats-deep:   #128C7E;
  --line:         #E3DDD2;   /* divisórias */
  --white:        #FFFFFF;

  /* Tipografia */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Escala / espaçamento */
  --maxw: 1180px;
  --maxw-narrow: 760px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(28, 59, 62, .06);
  --shadow: 0 14px 40px rgba(28, 59, 62, .10);
  --shadow-lg: 0 24px 70px rgba(28, 59, 62, .14);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset enxuto ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-deep); }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--teal-light); outline-offset: 3px; border-radius: 6px; }

/* ---------- Tipografia ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--teal-deep);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }
h4 { font-size: 1.15rem; }
p { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 700; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--apricot);
  display: inline-block;
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: var(--maxw-narrow); }
section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-head { max-width: 720px; margin-bottom: 2.8rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: .9rem; font-size: 1.12rem; }

.bg-sage { background: var(--sage); }
.bg-paper-soft { background: var(--paper-soft); }
.bg-teal { background: var(--teal-deep); }
.bg-teal h1, .bg-teal h2, .bg-teal h3 { color: var(--paper); }
.bg-teal p { color: #CFE0DD; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .6rem;
  font-weight: 800;
  font-size: 1rem;
  padding: .92rem 1.45rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn-whats { background: var(--whats); color: #08361f; box-shadow: 0 8px 22px rgba(37,211,102,.35); }
.btn-whats:hover { background: #1ec45c; color: #08361f; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37,211,102,.42); }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-deep); color:#fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--teal); border-color: var(--sage-deep); }
.btn-ghost:hover { background: var(--sage); color: var(--teal-deep); border-color: var(--teal-light); }
.btn-light { background: var(--paper); color: var(--teal-deep); }
.btn-light:hover { background:#fff; transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; }

/* ---------- Cabeçalho ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,249,245,.82);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 74px; }
.brand { display: flex; align-items: center; gap: .65rem; font-family: var(--font-display); font-weight: 600; color: var(--teal-deep); font-size: 1.18rem; letter-spacing: -.01em; flex: none; white-space: nowrap; }
.brand:hover { color: var(--teal-deep); }
.brand .mark { height: 46px; width: auto; flex: none; }
.brand small { display:block; font-family: var(--font-body); font-weight:700; font-size:.62rem; letter-spacing:.16em; text-transform:uppercase; color: var(--teal); margin-top:1px; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: .95rem; list-style: none; }
.nav-links a { color: var(--ink-soft); font-weight: 700; font-size: .9rem; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--teal-deep); }
.nav-cta { display: flex; align-items: center; gap: .55rem; }
.site-header .brand { font-size: 1.06rem; }
.site-header .brand .mark { height: 42px; }
.site-header .brand small { letter-spacing: .12em; }
.site-header .nav-cta .btn { padding: .78rem 1.1rem; font-size: .94rem; }
.site-header .nav-cta .btn svg { width: 18px; height: 18px; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; color: var(--teal-deep); }
.nav-toggle svg { width: 28px; height: 28px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(2.5rem, 6vw, 4.5rem); padding-bottom: clamp(3rem, 7vw, 5.5rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { margin: 1.1rem 0 1.2rem; }
.hero h1 em { font-style: italic; color: var(--teal); }
.hero-lead { font-size: 1.2rem; max-width: 33ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.9rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; margin-top: 2.2rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.hero-trust div { min-width: 90px; }
.hero-trust b { font-family: var(--font-display); font-size: 1.5rem; color: var(--teal-deep); display: block; }
.hero-trust span { font-size: .86rem; color: var(--ink-soft); }

/* Cartão visual do hero (sem foto obrigatória) */
.hero-visual { position: relative; }
.hero-card {
  position: relative; z-index: 2;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-lg);
}
.hero-photo {
  width: 100%; aspect-ratio: 4/5; border-radius: var(--radius);
  background: linear-gradient(150deg, var(--sage-deep), var(--teal-light));
  object-fit: cover; display: block;
}
.hero-photo-fallback { display:flex; align-items:flex-end; padding: 1.2rem; color:#fff; }
.hero-badge {
  position: absolute; z-index: 3; right: -14px; bottom: 28px;
  background: var(--apricot); color: #5a2c19;
  border-radius: var(--radius);
  padding: .8rem 1.1rem; box-shadow: var(--shadow);
  font-weight: 800; font-size: .9rem; max-width: 200px; line-height: 1.3;
}
.hero-badge small { display:block; font-weight:700; opacity:.8; font-size:.72rem; }
.blob { position: absolute; z-index: 1; filter: blur(2px); opacity: .55; }
.blob-1 { width: 360px; top: -60px; right: -90px; color: var(--apricot-soft); }
.blob-2 { width: 300px; bottom: -80px; left: -70px; color: var(--sage-deep); }

/* ---------- Cartões / grids ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--sage-deep); }
.card .ic {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--sage); color: var(--teal);
  display: grid; place-items: center; margin-bottom: 1rem;
}
.card .ic svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .5rem; font-size: 1.2rem; }
.card p { font-size: .98rem; }

/* lista de especialidades (chips) */
.chips { display: flex; flex-wrap: wrap; gap: .65rem; }
.chip {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-pill); padding: .55rem 1.05rem;
  font-weight: 700; font-size: .94rem; color: var(--ink);
}
.chip.is-accent { background: var(--sage); border-color: var(--sage-deep); }

/* passos (como funciona) */
.steps { counter-reset: step; display: grid; gap: 1.2rem; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: start; }
.step .num {
  counter-increment: step;
  width: 46px; height: 46px; flex: none;
  border-radius: 50%; background: var(--teal); color: #fff;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  display: grid; place-items: center;
}
.step .num::before { content: counter(step); }
.step h3 { font-size: 1.18rem; margin-bottom: .25rem; }

/* lista com check */
.checklist { list-style: none; display: grid; gap: .85rem; }
.checklist li { display: grid; grid-template-columns: auto 1fr; gap: .75rem; align-items: start; }
.checklist .tick {
  width: 24px; height: 24px; flex: none; margin-top: 2px;
  border-radius: 50%; background: var(--sage); color: var(--teal);
  display: grid; place-items: center;
}
.checklist .tick svg { width: 14px; height: 14px; }

/* valores / preços */
.price-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; padding: .9rem 0; border-bottom: 1px dashed var(--line); gap: 1rem; }
.price-row:last-child { border-bottom: 0; }
.price-row b { font-family: var(--font-display); font-size: 1.6rem; color: var(--teal-deep); white-space: nowrap; }
.price-note { background: var(--sage); border-radius: var(--radius); padding: 1rem 1.2rem; font-size: .95rem; margin-top: 1.2rem; }

/* destaque acolhimento */
.welcome-quote {
  background: linear-gradient(160deg, var(--teal-deep), var(--teal));
  color: #EAF3F1; border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.2rem); position: relative; overflow: hidden;
}
.welcome-quote::before {
  content: "\201C"; font-family: var(--font-display);
  position: absolute; top: -30px; left: 18px; font-size: 11rem; color: rgba(255,255,255,.12);
}
.welcome-quote p { color: #EAF3F1; font-size: 1.2rem; position: relative; }
.welcome-quote .sign { margin-top: 1.2rem; font-weight: 800; color: #fff; }

/* FAQ */
.faq { display: grid; gap: .9rem; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0;
  padding: 1.2rem 1.4rem; font-weight: 800; font-size: 1.05rem; color: var(--teal-deep);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q .pm { width: 24px; height: 24px; flex: none; position: relative; transition: transform .3s var(--ease); }
.faq-q .pm::before, .faq-q .pm::after { content:""; position:absolute; background: var(--teal); border-radius:2px; }
.faq-q .pm::before { width: 100%; height: 2.5px; top: 11px; left:0; }
.faq-q .pm::after { height: 100%; width: 2.5px; left: 11px; top:0; transition: transform .3s var(--ease); }
.faq-item[open] .pm::after { transform: scaleY(0); }
.faq-a { padding: 0 1.4rem 1.3rem; }
.faq-a p { font-size: .99rem; }
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* prova de confiança / badges */
.trust-bar { display: flex; flex-wrap: wrap; gap: 1rem 2.4rem; justify-content: center; align-items: center; }
.trust-item { display: flex; align-items: center; gap: .6rem; font-weight: 700; color: var(--ink-soft); font-size: .96rem; }
.trust-item svg { width: 22px; height: 22px; color: var(--teal); flex: none; }

/* faixa de países */
.flags { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.flag-pill { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: .45rem 1rem; font-weight: 700; font-size: .9rem; }

/* CTA final */
.cta-band { background: var(--teal-deep); color: #fff; border-radius: var(--radius-lg); padding: clamp(2.2rem, 6vw, 3.8rem); text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #CFE0DD; max-width: 52ch; margin: 1rem auto 1.8rem; font-size: 1.12rem; }
.cta-band .hero-actions { justify-content: center; }

/* página interna: cabeçalho */
.page-hero { background: var(--sage); padding: clamp(2.6rem, 6vw, 4.2rem) 0 clamp(2.2rem,5vw,3.2rem); }
.page-hero .eyebrow { margin-bottom: .8rem; }
.page-hero p { font-size: 1.15rem; max-width: 60ch; margin-top: 1rem; }
.breadcrumb { font-size: .85rem; color: var(--ink-soft); margin-bottom: 1rem; }
.breadcrumb a { color: var(--ink-soft); }

/* prosa (sobre, políticas, blog) */
.prose { max-width: 720px; }
.prose p { margin-bottom: 1.1rem; }
.prose h2 { margin: 2.2rem 0 .8rem; }
.prose h3 { margin: 1.6rem 0 .6rem; }
.prose ul, .prose ol { margin: 0 0 1.1rem 1.2rem; color: var(--ink-soft); }
.prose li { margin-bottom: .5rem; }
.prose a { text-decoration: underline; }

/* blog cards */
.post-card { display: flex; flex-direction: column; height: 100%; }
.post-card .tag { font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--apricot); }
.post-card h3 { margin: .5rem 0; font-size: 1.25rem; }
.post-card .more { margin-top: auto; font-weight: 800; }

/* aviso ético */
.notice { background: var(--paper-soft); border: 1px solid var(--line); border-left: 4px solid var(--apricot); border-radius: 12px; padding: 1.1rem 1.3rem; font-size: .95rem; color: var(--ink-soft); }
.notice strong { color: var(--ink); }

/* formulário de contato */
.field { display: grid; gap: .4rem; margin-bottom: 1.1rem; }
.field label { font-weight: 700; font-size: .94rem; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: 12px; background: var(--white);
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal-light); outline: none; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: start; }
.contact-info .card { margin-bottom: 1rem; }
.contact-info a { font-weight: 700; }

/* ---------- Rodapé ---------- */
.site-footer { background: var(--teal-deep); color: #C7D8D6; padding: 3.4rem 0 1.8rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.4rem; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-weight: 800; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: #C7D8D6; }
.site-footer a:hover { color: #fff; }
.footer-brand .brand { color: #fff; }
.footer-brand .brand small { color: var(--apricot); }
.footer-brand p { color: #A9C0BD; font-size: .95rem; margin-top: 1rem; max-width: 38ch; }
.footer-links { list-style: none; display: grid; gap: .6rem; font-size: .96rem; }
.social { display: flex; gap: .7rem; margin-top: 1rem; }
.social a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.social a:hover { background: var(--apricot); color: var(--teal-deep); }
.social svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.4rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .85rem; color: #9FB6B3; }
.footer-bottom .crp { font-weight: 800; color: #fff; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 80;
  background: var(--whats); color: #fff;
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.06); color: #fff; }
.wa-float svg { width: 32px; height: 32px; }
.wa-float .pulse { position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.45);} 70%{box-shadow:0 0 0 16px rgba(37,211,102,0);} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0);} }

/* barra fixa mobile */
.mobile-bar { display: none; }

/* ---------- Animações de entrada ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsivo ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1180px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.menu-open .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: .5rem 24px 1.2rem; box-shadow: var(--shadow);
  }
  .site-header.menu-open .nav-links li { width: 100%; border-bottom: 1px solid var(--line); }
  .site-header.menu-open .nav-links a { display: block; padding: .95rem 0; }
}
@media (max-width: 760px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  section { padding: 2.8rem 0; }
  .hero-trust { gap: 1rem 1.4rem; }
  .wa-float { display: none; }            /* substituído pela barra fixa no mobile */
  .mobile-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
    background: var(--paper); border-top: 1px solid var(--line);
    padding: .6rem .8rem; gap: .6rem; box-shadow: 0 -6px 20px rgba(28,59,62,.10);
  }
  .mobile-bar .btn { flex: 1; padding: .85rem; }
  body { padding-bottom: 76px; } /* espaço para a barra fixa */
  .price-row b { font-size: 1.35rem; }
}
@media (max-width: 420px) {
  .hero-badge { position: static; max-width: none; margin-top: 1rem; }
}
