/* ============================================================
   Naiana Viegas — Psicologia Clínica e Educacional
   Design acolhedor, arredondado e fluido
   Paleta: creme · azul-sereno · terracota
   ============================================================ */

:root {
  /* Cores */
  --paper:      #f7f2e9;  /* fundo principal (creme quente) */
  --paper-2:    #f1e8d8;  /* seção alternada / creme profundo */
  --ink:        #37322b;  /* texto (marrom-carvão quente) */
  --muted:      #786d5e;  /* texto secundário */
  --line:       #e7dcc8;  /* fios sutis */

  --terra:      #c47d39;  /* terracota (acento principal) */
  --terra-deep: #a9622a;  /* terracota escuro (hover) */
  --terra-tint: #f0ddc4;  /* terracota claríssimo (fundos) */

  --blue:       #8ca3c1;  /* azul-sereno */
  --blue-deep:  #4d627f;  /* azul profundo (seção destaque) */
  --blue-tint:  #e3eaf2;  /* azul claríssimo (fundos) */

  --white:      #ffffff;

  /* Tipografia */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Formas */
  --r-sm: 18px;
  --r:    26px;
  --r-lg: 40px;
  --r-xl: 56px;
  --pill: 999px;

  /* Sombras suaves */
  --shadow-sm: 0 8px 22px -14px rgba(77, 98, 127, .45);
  --shadow:    0 26px 56px -30px rgba(77, 98, 127, .55);
  --shadow-warm: 0 30px 64px -32px rgba(169, 98, 42, .5);

  --maxw: 1160px;
  --header-h: 80px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

h1, h2, h3 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.container-narrow { max-width: 760px; }

.section { position: relative; padding: clamp(64px, 9vw, 116px) 0; }
section[id] { scroll-margin-top: calc(var(--header-h) + 10px); }

.eyebrow-tag {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--terra-tint); color: var(--terra-deep);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 16px; border-radius: var(--pill);
}
.eyebrow-tag .sun-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--terra); flex-shrink: 0; }

.kicker {
  font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terra-deep); font-weight: 700; margin-bottom: 16px;
}

/* ---------- Botões (pílula) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--terra); color: var(--white);
  font-family: var(--sans); font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.01em;
  padding: 15px 30px; border: 2px solid var(--terra); border-radius: var(--pill);
  cursor: pointer; box-shadow: var(--shadow-warm);
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.btn:hover { background: var(--terra-deep); border-color: var(--terra-deep); transform: translateY(-3px); box-shadow: 0 24px 50px -24px rgba(169,98,42,.6); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); box-shadow: none; }
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.btn-invert { background: var(--white); color: var(--terra-deep); border-color: var(--white); box-shadow: 0 24px 50px -28px rgba(0,0,0,.4); }
.btn-invert:hover { background: var(--paper); color: var(--terra-deep); border-color: var(--paper); }

.btn-small { padding: 11px 22px; font-size: 0.85rem; box-shadow: none; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 0.96rem; color: var(--terra-deep);
  transition: gap .3s var(--ease);
}
.link-arrow:hover { gap: 12px; }

/* ---------- Blobs decorativos ---------- */
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(8px); opacity: .55; z-index: 0; pointer-events: none;
}
.sun-accent { color: var(--terra); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: transparent;
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
.site-header.scrolled {
  background: rgba(247, 242, 233, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 6px 30px -18px rgba(77,98,127,.5);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.brand { display: flex; align-items: center; gap: 11px; }
.brand-sun { width: 26px; height: 26px; color: var(--terra); flex-shrink: 0; }
.brand-name { font-family: var(--serif); font-size: 1.32rem; font-weight: 600; letter-spacing: 0.005em; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a:not(.btn) {
  font-size: 0.96rem; font-weight: 600; color: var(--muted);
  position: relative; padding: 6px 2px; transition: color .3s;
}
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 50%; bottom: 0; width: 0; height: 2px;
  background: var(--terra); border-radius: 2px; transform: translateX(-50%);
  transition: width .3s var(--ease);
}
.nav a:not(.btn):hover { color: var(--ink); }
.nav a:not(.btn):hover::after, .nav a.active::after { width: 22px; }
.nav a.active { color: var(--ink); }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .35s var(--ease), opacity .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: calc(var(--header-h) + 56px) 0 90px; overflow: hidden; }
.hero .blob-1 { width: 460px; height: 460px; background: var(--terra-tint); top: -120px; right: -130px; opacity: .7; }
.hero .blob-2 { width: 360px; height: 360px; background: var(--blue-tint); bottom: -160px; left: -120px; opacity: .8; }

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(36px, 5vw, 76px); align-items: center;
}
.hero-text .eyebrow-tag { margin-bottom: 26px; }
.hero h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.3rem); font-weight: 500;
  margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--terra); }
.hero-sub { font-size: clamp(1.05rem, 1.7vw, 1.22rem); color: var(--muted); max-width: 520px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 38px; }

.hero-meta { display: flex; gap: 12px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--ink);
  font-size: 0.84rem; font-weight: 600;
  padding: 9px 16px; border-radius: var(--pill); box-shadow: var(--shadow-sm);
}
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--terra); display: inline-block; }
.chip.is-blue .dot { background: var(--blue); }
.chip .live { animation: pulse 2.2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

/* Foto arco do hero */
.hero-figure { position: relative; justify-self: center; width: 100%; max-width: 420px; }
.hero-figure .photo {
  position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 5;
  border-radius: 230px 230px 36px 36px;
  background: linear-gradient(160deg, var(--blue-tint), var(--terra-tint));
  box-shadow: var(--shadow); overflow: hidden;
}
.hero-figure .photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-figure .ring {
  position: absolute; z-index: 0; width: 120px; height: 120px; border-radius: 50%;
  border: 2px dashed var(--terra); opacity: .5; top: -26px; left: -26px;
}
.hero-figure .pebble {
  position: absolute; z-index: 2; border-radius: 50%; box-shadow: var(--shadow-sm);
}
.hero-figure .pebble.p1 { width: 64px; height: 64px; background: var(--terra); bottom: 40px; left: -28px; }
.hero-figure .pebble.p2 { width: 38px; height: 38px; background: var(--blue); top: 30px; right: -16px; }

/* ---------- Manifesto (frase de acolhimento) ---------- */
.manifesto { padding: clamp(40px, 6vw, 64px) 0; }
.manifesto-box {
  background: var(--blue-tint); border-radius: var(--r-lg);
  padding: clamp(40px, 6vw, 72px); text-align: center; position: relative; overflow: hidden;
}
.manifesto-box p {
  font-family: var(--serif); font-size: clamp(1.5rem, 3.2vw, 2.4rem); font-weight: 400;
  font-style: italic; line-height: 1.3; color: var(--blue-deep); max-width: 760px; margin: 0 auto;
}

/* ---------- Section heads ---------- */
.section-head { max-width: 660px; margin: 0 auto clamp(44px, 6vw, 66px); text-align: center; }
.section-head .kicker { margin-bottom: 14px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; margin-bottom: 18px; }
.section-lead { color: var(--muted); font-size: 1.08rem; }

/* ---------- Cards de áreas (Como ajudo) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--white); border-radius: var(--r); padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-ico {
  width: 56px; height: 56px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--terra-tint); color: var(--terra-deep); margin-bottom: 20px;
}
.card:nth-child(3n+2) .card-ico { background: var(--blue-tint); color: var(--blue-deep); }
.card-ico svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.42rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.99rem; }

/* ---------- Serviços (grade 2x2) ---------- */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.services-grid .card { padding: 38px 34px; }
.services-grid .card:nth-child(2) .card-ico,
.services-grid .card:nth-child(3) .card-ico { background: var(--blue-tint); color: var(--blue-deep); }

/* ---------- Quando buscar apoio (chips) ---------- */
.needs { padding-top: 0; }
.needs-panel {
  background: var(--paper-2); border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 72px) clamp(26px, 5vw, 56px); text-align: center;
}
.needs-panel .kicker { margin-bottom: 12px; }
.needs-panel h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 500; margin-bottom: 12px; }
.needs-panel .section-lead { color: var(--muted); max-width: 620px; margin: 0 auto; }
.needs-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }
.need-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border-radius: var(--pill);
  padding: 12px 22px; font-weight: 600; color: var(--ink); box-shadow: var(--shadow-sm);
}
.need-chip::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--terra); flex-shrink: 0; }
.need-chip:nth-child(even)::before { background: var(--blue); }

/* ---------- Abordagem (painel azul flutuante) ---------- */
.approach { padding: clamp(40px, 6vw, 70px) 0; }
.approach-panel {
  position: relative; overflow: hidden;
  background: var(--blue-deep); color: var(--paper);
  border-radius: var(--r-xl); padding: clamp(48px, 6vw, 84px);
  box-shadow: var(--shadow);
}
.approach-panel .blob-3 { width: 320px; height: 320px; background: rgba(196,125,57,.35); top: -90px; right: -80px; opacity: .8; }
.approach-head { position: relative; z-index: 1; max-width: 620px; margin-bottom: 48px; }
.approach-head .kicker { color: var(--terra-tint); }
.approach-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 500; margin-bottom: 18px; color: var(--white); }
.approach-head p { color: rgba(255,255,255,.82); font-size: 1.06rem; }

.approach-points { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.point .point-num {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(247,242,233,.14); color: var(--terra-tint);
  font-family: var(--serif); font-size: 1.2rem; font-weight: 600; margin-bottom: 16px;
}
.point h3 { font-size: 1.32rem; color: var(--white); margin-bottom: 8px; }
.point p { color: rgba(255,255,255,.78); font-size: 0.98rem; }

/* ---------- Como funciona (linha do tempo fluida) ---------- */
.steps-wrap { position: relative; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 1; }
.steps::before {
  content: ""; position: absolute; z-index: 0;
  top: 35px; left: 12%; right: 12%; height: 2px;
  background-image: linear-gradient(to right, var(--terra) 50%, transparent 50%);
  background-size: 14px 2px; background-repeat: repeat-x; opacity: .55;
}
.step { text-align: center; position: relative; }
.step-num {
  width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); color: var(--terra-deep);
  font-family: var(--serif); font-size: 1.7rem; font-weight: 600;
  box-shadow: var(--shadow-sm); border: 2px solid var(--terra-tint);
}
.step:nth-child(even) .step-num { color: var(--blue-deep); border-color: var(--blue-tint); }
.step h3 { font-size: 1.28rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.96rem; max-width: 240px; margin: 0 auto; }

/* ---------- Sobre ---------- */
.about { background: var(--paper-2); }
.about-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.about-figure { position: relative; justify-self: center; width: 100%; max-width: 360px; }
.about-figure .photo {
  width: 100%; aspect-ratio: 1 / 1; border-radius: 50%;
  background: linear-gradient(160deg, var(--terra-tint), var(--blue-tint));
  box-shadow: var(--shadow); overflow: hidden;
}
.about-figure .photo img { width: 100%; height: 100%; object-fit: cover; }
.about-figure .ring-2 {
  position: absolute; inset: -16px; border-radius: 50%;
  border: 2px dashed var(--blue); opacity: .45; z-index: -1;
}
.about-text h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 500; margin-bottom: 22px; }
.about-text p { color: var(--muted); margin-bottom: 18px; }
.about-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 12px; }

/* ---------- FAQ (cartões arredondados) ---------- */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--white); border-radius: var(--r); box-shadow: var(--shadow-sm);
  overflow: hidden; transition: box-shadow .35s var(--ease);
}
.faq-item.open { box-shadow: var(--shadow); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 24px 28px; text-align: left;
  font-family: var(--serif); font-size: clamp(1.12rem, 2vw, 1.32rem); font-weight: 500; color: var(--ink);
}
.faq-icon {
  position: relative; width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%;
  background: var(--terra-tint); transition: background .3s;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--terra-deep); border-radius: 2px;
  transition: transform .35s var(--ease);
}
.faq-icon::before { top: 14px; left: 8px; width: 14px; height: 2px; }
.faq-icon::after { top: 8px; left: 14px; width: 2px; height: 14px; }
.faq-item.open .faq-icon { background: var(--terra); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: var(--white); }
.faq-item.open .faq-icon::after { transform: scaleY(0); }

.faq-a { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 28px 26px; color: var(--muted); }

/* ---------- Experiências (palestras e acompanhamento) ---------- */
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.exp-card {
  position: relative; background: var(--white); border-radius: var(--r);
  padding: 30px 30px 26px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.exp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.exp-card .quote-mark {
  font-family: var(--serif); font-size: 3.6rem; line-height: 0.5; color: var(--terra);
  height: 24px; display: block;
}
.exp-card blockquote { font-size: 1.04rem; font-style: italic; color: var(--ink); flex: 1; }
.exp-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.exp-who { font-size: 0.9rem; font-weight: 700; color: var(--muted); }
.exp-tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 13px; border-radius: var(--pill); white-space: nowrap;
  background: var(--terra-tint); color: var(--terra-deep);
}
.exp-tag.is-blue { background: var(--blue-tint); color: var(--blue-deep); }

/* Estado "em breve" (enquanto não há depoimentos reais) */
.exp-empty {
  text-align: center; background: var(--white); border-radius: var(--r-lg);
  padding: clamp(44px, 6vw, 72px) clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow-sm); max-width: 720px; margin: 0 auto;
}
.exp-empty-ico { font-family: var(--serif); font-size: 4rem; line-height: 0.4; color: var(--terra); display: inline-block; height: 36px; }
.exp-empty h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 500; margin-bottom: 14px; }
.exp-empty p { color: var(--muted); max-width: 480px; margin: 0 auto 28px; }

/* ---------- CTA final (painel terracota) ---------- */
.cta { padding: clamp(40px, 6vw, 70px) 0 clamp(70px, 9vw, 120px); }
.cta-panel {
  position: relative; overflow: hidden; text-align: center;
  background: var(--terra); color: var(--white);
  border-radius: var(--r-xl); padding: clamp(54px, 7vw, 96px) clamp(28px, 5vw, 60px);
  box-shadow: var(--shadow-warm);
}
.cta-panel .blob-4 { width: 300px; height: 300px; background: rgba(247,242,233,.22); top: -90px; left: -70px; }
.cta-panel .blob-5 { width: 240px; height: 240px; background: rgba(77,98,127,.3); bottom: -110px; right: -60px; }
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta h2 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); font-weight: 500; margin-bottom: 18px; }
.cta p { color: rgba(255,255,255,.9); font-size: 1.1rem; margin-bottom: 36px; }

/* ---------- Rodapé ---------- */
.site-footer { background: var(--paper-2); border-radius: var(--r-xl) var(--r-xl) 0 0; padding: clamp(56px, 7vw, 80px) 0 36px; }
.footer-inner { display: flex; justify-content: space-between; gap: 44px; flex-wrap: wrap; padding-bottom: 38px; border-bottom: 1px solid var(--line); }
.footer-brand { display: flex; flex-direction: column; gap: 8px; max-width: 280px; }
.footer-brand .brand { margin-bottom: 4px; }
.footer-crp { font-size: 0.9rem; color: var(--muted); }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a, .footer-contact a { font-size: 0.96rem; color: var(--muted); transition: color .3s; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--terra-deep); }
.footer-bottom { padding-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.crisis { font-size: 0.85rem; color: var(--muted); max-width: 720px; line-height: 1.6; }
.crisis strong { color: var(--ink); }
.copyright { font-size: 0.84rem; color: var(--muted); }

/* ---------- Botão flutuante WhatsApp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--terra); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-warm);
  transition: transform .3s var(--ease), background .3s;
}
.wa-float:hover { transform: scale(1.08) rotate(-4deg); background: var(--terra-deep); }

/* ---------- Botão "Deixar depoimento" ---------- */
.exp-cta { text-align: center; margin-top: 42px; }

/* ---------- Modal de depoimento ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: none; }
.modal.open { display: block; }
.modal-overlay { position: absolute; inset: 0; background: rgba(55, 50, 43, 0.5); backdrop-filter: blur(3px); }
.modal-dialog {
  position: relative; z-index: 1;
  width: min(560px, calc(100% - 36px));
  max-height: calc(100vh - 48px); overflow-y: auto;
  margin: max(24px, 5vh) auto 24px;
  background: var(--paper); border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow);
}
.modal.open .modal-dialog { animation: modalIn .42s var(--ease); }
@keyframes modalIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

.modal-close {
  position: absolute; top: 15px; right: 15px; width: 40px; height: 40px; border-radius: 50%;
  border: 0; background: var(--paper-2); color: var(--ink); font-size: 1.5rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .3s;
}
.modal-close:hover { background: var(--terra-tint); }
.modal h2 { font-size: clamp(1.5rem, 3vw, 1.9rem); margin-bottom: 6px; }
.modal-sub { color: var(--muted); font-size: 0.96rem; margin-bottom: 24px; }

/* Formulário */
.depo-form { display: flex; flex-direction: column; gap: 18px; }
.depo-form > label, .field-label { font-weight: 700; font-size: 0.92rem; color: var(--ink); }
.depo-form input[type="text"], .depo-form input[type="email"], .depo-form textarea {
  width: 100%; margin-top: 8px; font: inherit; color: var(--ink);
  background: var(--white); border: 1.5px solid var(--line); border-radius: 14px;
  padding: 12px 15px; transition: border-color .3s;
}
.depo-form textarea { resize: vertical; min-height: 112px; }
.depo-form input:focus, .depo-form textarea:focus { outline: none; border-color: var(--terra); }

.type-choice { display: flex; gap: 12px; margin-top: 10px; }
.type-opt { flex: 1; position: relative; margin: 0; }
.type-opt input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.type-opt span {
  display: block; text-align: center; padding: 12px; border-radius: 14px;
  border: 1.5px solid var(--line); font-weight: 700; cursor: pointer; transition: all .25s;
}
.type-opt input:checked + span { border-color: var(--terra); background: var(--terra-tint); color: var(--terra-deep); }
.type-opt:nth-child(2) input:checked + span { border-color: var(--blue); background: var(--blue-tint); color: var(--blue-deep); }
.type-opt input:focus-visible + span { outline: 2px solid var(--terra); outline-offset: 2px; }

.consent { display: flex; align-items: flex-start; gap: 10px; font-weight: 400; font-size: 0.88rem; color: var(--muted); cursor: pointer; }
.consent input { margin-top: 3px; flex-shrink: 0; }
.hidden-field { position: absolute; left: -9999px; }
.depo-form .btn { margin-top: 6px; align-self: flex-start; }

/* Sucesso / prévia */
.depo-success { text-align: center; }
.depo-success .check {
  width: 62px; height: 62px; border-radius: 50%; background: var(--terra-tint); color: var(--terra-deep);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 1.7rem; font-weight: 700;
}
.depo-success h2 { margin-bottom: 8px; }
.depo-success > p { color: var(--muted); margin-bottom: 24px; }
.preview-label { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 12px; }
.depo-success .exp-card { text-align: left; }

/* ---------- Animação de entrada ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 940px) {
  .nav {
    position: fixed; inset: var(--header-h) 12px auto 12px;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--white); border-radius: var(--r);
    padding: 16px; box-shadow: var(--shadow);
    transform: translateY(-130%); transition: transform .42s var(--ease);
  }
  .nav.open { transform: translateY(0); }
  .nav a:not(.btn) { padding: 14px 12px; border-radius: 14px; font-size: 1rem; }
  .nav a:not(.btn)::after { display: none; }
  .nav a:not(.btn):hover { background: var(--paper); }
  .nav .btn { margin-top: 10px; }
  .nav-toggle { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-text .eyebrow-tag { margin-left: auto; margin-right: auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-meta { justify-content: center; }
  .hero-figure { order: -1; max-width: 340px; }

  .cards { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .approach-points { grid-template-columns: 1fr; gap: 26px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .steps::before { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .about-figure { order: -1; }
  .about-cta { justify-content: center; }
}

@media (max-width: 560px) {
  .brand-name { font-size: 1.16rem; }
  .cards { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .faq-q { padding: 20px 22px; }
  .faq-a p { padding: 0 22px 22px; }
}

/* ---------- Acessibilidade: reduz movimento ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .chip .live { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
