/* ============================================================
   Carla Cely · Psicoterapeuta Transpessoal Sistêmica
   "Neutros Elegantes + Mandala"
   ============================================================ */

/* Fonte assinatura escolhida pela Carla (Din Studio) */
@font-face {
  font-family: "Breathing";
  src: url("fonts/breathing.woff2") format("woff2"),
       url("fonts/breathing.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------------- DESIGN TOKENS ---------------- */
:root {
  /* Base neutra */
  --bg:          #F7F1E8;
  --bg-elev:    #FFFFFF;
  --bg-deep:    #EFE4D2;
  --bg-warm:    #F2E6D3;
  --bg-dark:    #1F1A16;
  --bg-cream:    #FDF9F2;

  /* Tinta */
  --ink:         #2A211B;
  --ink-soft:   #5A4D44;
  --ink-muted:  #6F6258;
  --ink-faint:  #A99A8C;
  --line:        #E4D8C5;
  --line-soft:  #EFE5D3;

  /* Marca (da logo mandala) */
  --rose:        #D9A89E;
  --rose-soft:   #ECCAC2;
  --rose-deep:  #B0786C;
  --rose-ink:   #8E5A50;
  --sage:        #9DAE7E;
  --sage-deep:  #6E8060;
  --lilac:       #B5C4DC;
  --lilac-deep: #7E8FAA;
  --gold:        #E0C58A;
  --gold-deep:  #B89854;
  --plum:        #4A3852;

  /* Tipografia */
  --font-display: "Fraunces", "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
  --font-script:  "Breathing", "Caveat", "Brush Script MT", cursive;

  /* Escala (modular 1.25) */
  --t-hero:   clamp(2.4rem, 4.2vw + 1rem, 4.6rem);
  --t-h1:     clamp(1.9rem, 2.6vw + 1rem, 3.1rem);
  --t-h2:     clamp(1.6rem, 1.8vw + .9rem, 2.4rem);
  --t-h3:     clamp(1.18rem, .8vw + .8rem, 1.4rem);
  --t-lead:   clamp(1.05rem, .4vw + .9rem, 1.18rem);
  --t-body:   1rem;
  --t-small:  .9rem;

  /* Espaçamento */
  --sp-1: .25rem;
  --sp-2: .5rem;
  --sp-3: .75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* Layout */
  --container: 1180px;
  --container-wide: 1320px;
  --radius:   18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Sombras */
  --sh-1:  0 1px 2px rgba(42, 33, 27, .04), 0 1px 1px rgba(42, 33, 27, .03);
  --sh-2:  0 8px 24px -8px rgba(74, 56, 82, .12), 0 2px 6px rgba(42, 33, 27, .05);
  --sh-3:  0 24px 60px -20px rgba(74, 56, 82, .25), 0 8px 20px rgba(42, 33, 27, .07);
  --sh-glow: 0 0 0 1px rgba(176, 120, 108, .18), 0 24px 60px -20px rgba(176, 120, 108, .25);

  --ring: 0 0 0 3px rgba(176, 120, 108, .35);

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);

  --header-h: 76px;
}

/* ---------------- RESET LEVE ---------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}
body {
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--rose); color: #fff; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

/* Parágrafos de texto corrido justificados (pedido da Carla)
   Aplicado em desktop E mobile, com hyphens pra evitar rios */
.hero-sub,
.hero-soft,
.section-lead,
.mirror-card p,
.mirror-foot,
.step p,
.method-card p,
.methods-foot,
.journey-text p,
.journey-photo-caption,
.quote-band blockquote p,
.testimonial-text,
.testimonials-note,
.program-desc,
.how-block p,
.faq-body p,
.for-who-copy .lead,
.legal-content p,
.final-cta-lead,
.final-cta-foot,
.footer-brand p,
.footer-foot p,
.footer-foot .disclaimer {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.skip-link {
  position: absolute;
  top: -80px; left: 12px;
  background: var(--ink); color: #fff;
  padding: .6rem 1rem;
  border-radius: 8px;
  z-index: 9999;
  transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 12px; outline: 2px solid var(--gold); }

/* Focus visible global */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible, summary:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 8px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 241, 232, .82);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 28px -16px rgba(42, 33, 27, .12);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  min-height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex: 0 0 auto;
}
.brand-mark {
  width: 44px; height: 44px;
  filter: drop-shadow(0 2px 6px rgba(176, 120, 108, .15));
  transition: transform .6s var(--ease-out);
}
.brand:hover .brand-mark { transform: rotate(20deg); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-script);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .01em;
}
.brand-sub {
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(.7rem, 1.4vw, 1.4rem);
  margin-left: auto;
}
.primary-nav a {
  position: relative;
  font-size: .92rem;
  color: var(--ink-soft);
  padding: .35rem .1rem;
  transition: color .2s var(--ease-out);
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--rose-deep);
  transition: right .35s var(--ease-out);
}
.primary-nav a:hover { color: var(--ink); }
.primary-nav a:hover::after { right: 0; }

.btn-wa-mini {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: #fff;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .01em;
  transition: transform .25s var(--ease-out), background .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.btn-wa-mini:hover {
  background: var(--rose-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -10px rgba(176, 120, 108, .45);
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 12px;
  transition: background .2s;
}
.nav-toggle:hover { background: var(--line-soft); }
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem clamp(1.25rem, 4vw, 2rem) 2rem;
  background: var(--bg-cream);
  border-top: 1px solid var(--line);
  gap: .25rem;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 1.05rem;
  color: var(--ink);
}
.mobile-menu a:last-of-type { border-bottom: 0; }
.btn-wa-mobile {
  margin-top: 1rem;
  text-align: center;
  background: var(--rose-deep);
  color: #fff !important;
  padding: 1rem !important;
  border-radius: var(--radius-pill);
  font-weight: 500;
  border-bottom: 0 !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: 1.05rem 1.6rem;
  background: var(--ink);
  color: var(--bg-cream);
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .005em;
  transition: transform .3s var(--ease-out), background .3s var(--ease-out), box-shadow .3s var(--ease-out);
  box-shadow: 0 10px 26px -14px rgba(42, 33, 27, .55);
}
.btn-primary:hover {
  background: var(--rose-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -14px rgba(176, 120, 108, .55);
}
.btn-primary svg { transition: transform .3s var(--ease-out); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-primary.big { padding: 1.2rem 2rem; font-size: 1.08rem; }

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section-head {
  max-width: 760px;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.section-head.center { margin-inline: auto; text-align: center; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose-ink);
  font-weight: 500;
  margin-bottom: 1rem;
}
.section-tag::before {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
  opacity: .55;
}
.section-tag.light { color: var(--rose-soft); }

.section-title {
  font-family: var(--font-display);
  font-size: var(--t-h2);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.015em;
  color: var(--ink);
  font-variation-settings: "opsz" 80;
}
.section-title em {
  font-style: italic;
  color: var(--rose-ink);
  font-weight: 400;
}

.section-lead {
  font-size: var(--t-lead);
  color: var(--ink-soft);
  margin-top: 1rem;
  max-width: 60ch;
  line-height: 1.65;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose-ink);
  font-weight: 500;
  margin-bottom: 1.4rem;
  padding: .4rem .85rem;
  background: rgba(217, 168, 158, .14);
  border: 1px solid rgba(176, 120, 108, .22);
  border-radius: var(--radius-pill);
}
.eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--rose-deep);
  box-shadow: 0 0 0 3px rgba(176, 120, 108, .25);
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(176, 120, 108, .25); }
  50% { box-shadow: 0 0 0 6px rgba(176, 120, 108, 0); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6.5rem) 0 clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 80% at 80% 30%, rgba(217, 168, 158, .14), transparent 60%),
    radial-gradient(ellipse 70% 70% at 10% 80%, rgba(157, 174, 126, .08), transparent 60%),
    var(--bg);
}
.hero-ornament {
  position: absolute;
  top: -120px;
  right: -180px;
  width: clamp(420px, 60vw, 760px);
  opacity: .14;
  pointer-events: none;
  z-index: 0;
}
.hero-ornament img {
  width: 100%; height: auto;
  animation: rotateSlow 120s linear infinite;
  transform-origin: center;
}
@keyframes rotateSlow { to { transform: rotate(360deg); } }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero-copy { max-width: 620px; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: var(--t-hero);
  line-height: 1.04;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 1.6rem;
  font-variation-settings: "opsz" 144;
}
.hero-title .reveal-line {
  display: block;
  overflow: hidden;
}
.hero-title .reveal-line.italic {
  font-style: italic;
  color: var(--rose-ink);
  font-weight: 350;
}

.hero-sub {
  font-size: clamp(1.05rem, .4vw + .9rem, 1.22rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 2rem;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .9rem;
  margin-bottom: 2.4rem;
}
.hero-soft {
  font-size: .92rem;
  color: var(--ink-muted);
  padding-left: .3rem;
}
.hero-soft strong { color: var(--rose-ink); font-weight: 500; }

/* Trust band: faixa editorial limpa, sem cards */
.hero-trust {
  display: flex;
  align-items: stretch;
  gap: clamp(1.2rem, 3vw, 2.6rem);
  padding-top: 1.7rem;
  margin-top: .4rem;
  border-top: 1px solid var(--line);
  max-width: 560px;
}
.hero-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding-left: clamp(1.2rem, 3vw, 2.6rem);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6%;
  bottom: 6%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line) 30%, var(--line) 70%, transparent);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.6vw + .9rem, 1.7rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  font-variation-settings: "opsz" 144;
  font-variant-numeric: lining-nums;
  letter-spacing: -.01em;
}
.hero-stat-label {
  font-size: .8rem;
  color: var(--ink-muted);
  letter-spacing: .015em;
  line-height: 1.35;
  max-width: 18ch;
}

.hero-photo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}
/* Aura: mandala rotativa atrás da foto */
.hero-photo-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  max-width: 700px;
  aspect-ratio: 1;
  transform: translate(-50%, -52%);
  pointer-events: none;
  z-index: 0;
  opacity: .35;
}
.hero-photo-aura img {
  width: 100%; height: 100%;
  animation: rotateSlow 90s linear infinite;
  transform-origin: center;
}
/* Moldura arch (portal contemplativo) */
.hero-photo-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  padding: 14px;
  border-radius: 240px 240px 22px 22px;
  background:
    linear-gradient(180deg, #FBF6EE 0%, #F4E8D6 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .85) inset,
    0 0 0 1px rgba(176, 120, 108, .18),
    0 30px 70px -30px rgba(74, 56, 82, .35),
    0 12px 30px -10px rgba(176, 120, 108, .25);
}
.hero-photo-frame::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 214px 214px 18px 18px;
  background: conic-gradient(from 220deg, var(--rose-soft), var(--lilac), var(--sage), var(--gold), var(--rose-soft));
  filter: blur(18px);
  opacity: .35;
  z-index: -1;
  animation: rotateSlow 40s linear infinite;
}
.hero-photo-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 200px 200px 12px 12px;
  overflow: hidden;
  background: var(--bg-deep);
}
.hero-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform .8s var(--ease-out);
}
.hero-photo-frame:hover .hero-photo-inner img { transform: scale(1.03); }

.hero-photo-caption {
  display: flex; flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  text-align: center;
}
.hero-photo-caption .caligrafia {
  font-family: var(--font-script);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--rose-ink);
  line-height: 1.1;
}
.hero-photo-caption span:last-child {
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: .35rem;
}

.scroll-cue {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  color: var(--ink-muted);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  animation: bobble 2.6s ease-in-out infinite;
}
@keyframes bobble {
  0%, 100% { transform: translate(-50%, 0); opacity: .8; }
  50% { transform: translate(-50%, 6px); opacity: 1; }
}

/* ============================================================
   ESPELHO DA DOR
   ============================================================ */
.mirror {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-cream);
  position: relative;
}
.mirror::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.mirror-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2.4rem;
}
.mirror-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.8rem 1.8rem 1.6rem;
  border: 1px solid var(--line-soft);
  box-shadow: var(--sh-1);
  overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .3s;
}
/* Borda colorida na lateral esquerda (rotativo entre as cores da paleta) */
.mirror-card::before {
  content: "";
  position: absolute;
  top: 14%; bottom: 14%;
  left: 0;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--rose);
  transition: top .35s var(--ease-out), bottom .35s var(--ease-out);
}
.mirror-card:nth-child(2)::before { background: var(--sage); }
.mirror-card:nth-child(3)::before { background: var(--lilac-deep); }
.mirror-card:nth-child(4)::before { background: var(--gold-deep); }
.mirror-card:nth-child(5)::before { background: var(--rose-ink); }
.mirror-card:nth-child(6)::before { background: var(--plum); }
.mirror-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, transparent 70%, rgba(217, 168, 158, .08));
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s;
}
.mirror-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
  border-color: rgba(176, 120, 108, .25);
}
.mirror-card:hover::before { top: 6%; bottom: 6%; }
.mirror-card:hover::after { opacity: 1; }
.mirror-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--rose);
  position: absolute;
  top: .4rem; left: 1.2rem;
  font-variation-settings: "opsz" 144;
}
.mirror-card p {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 400;
  font-variation-settings: "opsz" 80;
  padding-top: 1.4rem;
}

.mirror-foot {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--rose-ink);
  max-width: 50ch;
  margin: 0 auto;
  font-variation-settings: "opsz" 80;
}

/* ============================================================
   PARA QUEM
   ============================================================ */
.for-who {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg);
  position: relative;
}

.for-who-grid {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.for-who-visual {
  position: relative;
}
.for-who-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-deep);
  box-shadow: var(--sh-3);
}
.for-who-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.for-who-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  box-shadow: var(--sh-3);
  max-width: 240px;
}
.for-who-badge img { width: 44px; height: 44px; }
.for-who-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
}
.for-who-badge span {
  font-size: .82rem;
  color: var(--ink-muted);
}

.for-who-copy .lead {
  font-size: var(--t-lead);
  color: var(--ink-soft);
  margin-top: 1rem;
  margin-bottom: 1.8rem;
  line-height: 1.65;
}
.for-who-list { display: flex; flex-direction: column; gap: .9rem; }
.for-who-list li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.for-who-list li > span {
  flex: 1;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.for-who-list svg {
  flex-shrink: 0;
  color: var(--sage-deep);
  background: rgba(157, 174, 126, .14);
  padding: 4px;
  border-radius: 50%;
  margin-top: 1px;
}

/* ============================================================
   O QUE ACONTECE (STEPS)
   ============================================================ */
.what-happens {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-cream);
  position: relative;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.step {
  position: relative;
  padding: 2rem 1.5rem 1.8rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  transition: transform .4s var(--ease-out), background .35s, border-color .3s;
}
.step:hover {
  transform: translateY(-4px);
  background: #fff;
  border-color: var(--rose-soft);
}
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--rose-ink);
  margin-bottom: .9rem;
  font-variation-settings: "opsz" 144;
  font-variant-numeric: lining-nums;
  letter-spacing: -.02em;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .55rem;
  line-height: 1.25;
  font-variation-settings: "opsz" 80;
}
.step p {
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ============================================================
   MÉTODOS
   ============================================================ */
.methods {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(181, 196, 220, .12), transparent 50%),
    var(--bg-warm);
  position: relative;
  overflow: hidden;
}
.methods-ornament {
  position: absolute;
  top: 50%;
  left: -160px;
  transform: translateY(-50%);
  width: 360px;
  opacity: .12;
  pointer-events: none;
}
.methods-ornament img {
  animation: rotateSlow 180s linear infinite;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  position: relative;
  z-index: 1;
}
.method-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.6rem 1.8rem;
  border: 1px solid var(--line-soft);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .3s;
  display: flex;
  flex-direction: column;
}
.method-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-3);
  border-color: var(--rose-soft);
}
.method-icon {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(217, 168, 158, .2), rgba(181, 196, 220, .2));
  color: var(--rose-deep);
  border-radius: 14px;
  margin-bottom: 1.2rem;
}
.method-icon svg { width: 28px; height: 28px; }
.method-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .6rem;
  line-height: 1.25;
  font-variation-settings: "opsz" 80;
}
.method-card p {
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.methods-foot {
  margin-top: 2.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink-soft);
  font-variation-settings: "opsz" 80;
  position: relative; z-index: 1;
}
.methods-foot strong {
  font-style: normal;
  color: var(--rose-ink);
  font-weight: 500;
}

/* ============================================================
   JORNADA (foto sticky + texto rola)
   ============================================================ */
.journey {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    radial-gradient(ellipse 40% 60% at 0% 30%, rgba(176, 120, 108, .08), transparent 50%),
    radial-gradient(ellipse 40% 60% at 100% 70%, rgba(157, 174, 126, .07), transparent 50%),
    var(--bg);
  position: relative;
  overflow: visible;
}

.journey-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: flex-start;
  position: relative;
}

/* Foto sticky: fica ancorada no topo enquanto o texto rola */
.journey-photo {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  align-self: start;
}
.journey-photo > img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 25%;
  box-shadow: var(--sh-3);
  position: relative;
  z-index: 1;
}
.journey-photo-deco {
  position: absolute;
  bottom: -50px;
  left: -60px;
  width: 220px;
  opacity: .22;
  pointer-events: none;
  z-index: 0;
}
.journey-photo-deco img {
  animation: rotateSlow 90s linear infinite;
}

/* Caption flutuante abaixo da foto */
.journey-photo-caption {
  position: relative;
  z-index: 1;
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, .65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  font-family: var(--font-display);
  font-size: .95rem;
  font-style: italic;
  color: var(--ink-soft);
  font-variation-settings: "opsz" 80;
  line-height: 1.5;
}
.journey-photo-caption::before {
  content: "\201C";
  font-family: var(--font-display);
  color: var(--rose-deep);
  font-size: 1.4rem;
  margin-right: .2rem;
  vertical-align: middle;
  font-variation-settings: "opsz" 144;
}

.journey-text {
  margin-top: .5rem;
}
.journey-text p {
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.72;
  margin-top: 1rem;
}
.journey-text p:first-child { margin-top: 0; }
.journey-copy strong { color: var(--ink); font-weight: 500; }
.journey-copy em {
  font-style: italic;
  color: var(--rose-ink);
  font-weight: 400;
}

/* Estatísticas em destaque visual */
.journey-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
  margin-bottom: 2rem;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(135deg, rgba(217, 168, 158, .12), rgba(157, 174, 126, .08));
  border-radius: var(--radius);
  border: 1px solid rgba(176, 120, 108, .18);
  position: relative;
}
.journey-stats::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 1px;
  height: 60%;
  background: rgba(176, 120, 108, .25);
  transform: translate(-50%, -50%);
}
.journey-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--rose-ink);
  line-height: 1;
  font-variation-settings: "opsz" 144;
  font-variant-numeric: lining-nums;
  letter-spacing: -.02em;
}
.journey-stat span {
  display: block;
  margin-top: .35rem;
  font-size: .82rem;
  color: var(--ink-soft);
  line-height: 1.4;
  max-width: 18ch;
}

/* Título da seção de credenciais */
.journey-cred-title {
  margin-top: 2.4rem;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose-ink);
  font-weight: 500;
}

.credentials {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}
.credentials li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1rem 1.2rem;
  background: var(--bg-cream);
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
}
.credentials li:hover {
  transform: translateX(2px);
  border-color: var(--rose-soft);
  box-shadow: var(--sh-1);
}
.cred-mark {
  flex-shrink: 0;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(176, 120, 108, .14);
  color: var(--rose-ink);
  margin-top: 2px;
}
.credentials strong {
  display: block;
  font-size: .95rem;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: .15rem;
}
.credentials span {
  font-size: .85rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* ============================================================
   CITAÇÃO
   ============================================================ */
.quote-band {
  position: relative;
  padding: clamp(4rem, 7vw, 6rem) 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, #2a2018 0%, var(--bg-dark) 70%);
  color: var(--bg-cream);
  overflow: hidden;
}
.quote-ornament {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 520px;
  opacity: .08;
  pointer-events: none;
  filter: brightness(1.4);
}
.quote-ornament img {
  animation: rotateSlow 100s linear infinite;
}

.quote-band blockquote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.quote-band blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw + .8rem, 2.6rem);
  font-weight: 350;
  font-style: italic;
  line-height: 1.25;
  letter-spacing: -.015em;
  color: var(--bg-cream);
  font-variation-settings: "opsz" 144;
}
.quote-band blockquote footer {
  margin-top: 2rem;
}
.quote-band blockquote footer .caligrafia {
  font-family: var(--font-script);
  font-size: 2rem;
  font-weight: 600;
  color: var(--rose);
}
.quote-band blockquote footer::before {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--rose);
  margin: 0 auto 1rem;
  opacity: .55;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testimonials {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
@media (max-width: 1000px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
}

.testimonial-card {
  position: relative;
  background: var(--bg-cream);
  border-radius: var(--radius);
  padding: 2rem 1.8rem 1.8rem;
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .3s;
}
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: -.4rem;
  left: 1.4rem;
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--rose-soft);
  line-height: 1;
  font-variation-settings: "opsz" 144;
  opacity: .6;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--rose-soft);
  box-shadow: var(--sh-3);
}

.testimonial-stars {
  display: flex;
  gap: .15rem;
  margin-bottom: 1rem;
  color: var(--gold-deep);
  position: relative;
  z-index: 1;
}
.testimonial-stars svg { width: 14px; height: 14px; }

.testimonial-text {
  flex: 1;
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 80;
  margin-bottom: 1.6rem;
  position: relative;
  z-index: 1;
}

.testimonial-foot {
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  position: relative;
}
.testimonial-foot::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 32px;
  height: 1px;
  background: var(--rose-deep);
}
.testimonial-card:nth-child(2) .testimonial-foot::before { background: var(--sage-deep); }
.testimonial-card:nth-child(3) .testimonial-foot::before { background: var(--lilac-deep); }
.testimonial-foot strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: .25rem;
  font-variation-settings: "opsz" 80;
  letter-spacing: -.005em;
}
.testimonial-foot span {
  display: block;
  font-size: .8rem;
  color: var(--ink-muted);
  line-height: 1.4;
  letter-spacing: .01em;
}

.testimonials-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: 2rem;
  font-size: .82rem;
  color: var(--ink-muted);
  font-style: italic;
}
.testimonials-note svg { flex-shrink: 0; color: var(--rose-deep); }

/* ============================================================
   PROGRAMAS
   ============================================================ */
.programs {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-cream);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
@media (max-width: 720px) {
  .programs-grid { grid-template-columns: 1fr; }
}
.program-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.8rem 2rem;
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .3s;
}
.program-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rose);
  opacity: .55;
  transition: opacity .3s, height .3s var(--ease-out);
}
.program-card:nth-child(2)::before { background: var(--sage); }
.program-card:nth-child(3)::before { background: var(--lilac-deep); }
.program-card:nth-child(4)::before { background: var(--gold-deep); }
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-3);
  border-color: var(--rose-soft);
}
.program-card:hover::before { opacity: 1; height: 4px; }
.program-card.featured {
  background: linear-gradient(155deg, #fff 0%, #FBF1E6 100%);
  border-color: rgba(176, 120, 108, .25);
}
.program-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  background: var(--ink);
  color: var(--bg-cream);
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  margin-bottom: 1rem;
  z-index: 1;
}
.program-card h3 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: .8rem;
  font-variation-settings: "opsz" 80;
}
.program-desc {
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.program-feats {
  display: flex; flex-direction: column;
  gap: .45rem;
  margin-bottom: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-soft);
}
.program-feats li {
  font-size: .88rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: .55rem;
}
.program-feats li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rose-deep);
  flex-shrink: 0;
}
.program-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  align-self: flex-start;
  font-size: .92rem;
  font-weight: 500;
  color: var(--rose-ink);
  padding: .55rem 0;
  position: relative;
  transition: color .25s;
}
.program-cta::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  transform: scaleX(.4);
  opacity: .55;
  transition: transform .35s var(--ease-out), opacity .25s;
}
.program-cta:hover { color: var(--ink); }
.program-cta:hover::after { transform: scaleX(1); opacity: 1; transform-origin: left; }
.program-cta svg { transition: transform .3s var(--ease-out); }
.program-cta:hover svg { transform: translateX(4px); }

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.how-it-works {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    radial-gradient(ellipse 50% 80% at 100% 0%, rgba(157, 174, 126, .12), transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(217, 168, 158, .12), transparent 55%),
    var(--bg);
  overflow: hidden;
}
.how-it-works::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: clamp(300px, 50%, 600px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
@media (max-width: 900px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .how-grid { grid-template-columns: 1fr; }
}
.how-block {
  position: relative;
  padding: 2rem 1.6rem 1.8rem;
  background:
    linear-gradient(180deg, #FFFFFF 0%, var(--bg-cream) 100%);
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .3s;
}
.how-block::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(217, 168, 158, .18), transparent 70%);
  pointer-events: none;
  opacity: .8;
}
.how-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-3);
  border-color: var(--rose-soft);
}
.how-step {
  position: absolute;
  top: 1.3rem; right: 1.4rem;
  font-family: var(--font-display);
  font-size: .85rem;
  font-style: italic;
  color: var(--ink-faint);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
}
.how-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(217, 168, 158, .22), rgba(181, 196, 220, .18));
  color: var(--rose-ink);
  border-radius: 14px;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
}
.how-icon svg { width: 24px; height: 24px; }
.how-block h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .55rem;
  font-variation-settings: "opsz" 80;
  position: relative;
  z-index: 1;
}
.how-block p {
  font-size: .94rem;
  color: var(--ink-soft);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-cream);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.faq-item {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: border-color .25s, box-shadow .3s;
}
.faq-item[open] {
  border-color: var(--rose-soft);
  box-shadow: var(--sh-2);
  background: #fff;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
  font-variation-settings: "opsz" 80;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--rose-ink); }
.faq-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--rose-deep);
  background: rgba(217, 168, 158, .15);
  transition: transform .35s var(--ease-out), background .25s;
}
.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  background: var(--rose-deep);
  color: #fff;
}
.faq-body {
  padding: 0 1.5rem 1.5rem;
  animation: faqIn .35s var(--ease-out);
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.faq-body p {
  font-size: .98rem;
  color: var(--ink-soft);
  line-height: 1.7;
  padding-top: .25rem;
  border-top: 1px solid var(--line-soft);
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.final-cta {
  position: relative;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(217, 168, 158, .14), transparent 60%),
    radial-gradient(ellipse 70% 70% at 20% 80%, rgba(157, 174, 126, .1), transparent 60%),
    var(--bg-dark);
  color: var(--bg-cream);
  overflow: hidden;
  text-align: center;
}
.final-cta-ornament {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  opacity: .07;
  pointer-events: none;
  filter: brightness(1.6);
}
.final-cta-ornament img {
  animation: rotateSlow 140s linear infinite;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.final-cta .section-tag {
  color: var(--rose-soft);
  margin-bottom: 1.4rem;
}
.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw + 1rem, 3.4rem);
  font-weight: 350;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--bg-cream);
  font-variation-settings: "opsz" 144;
  margin-bottom: 1.4rem;
}
.final-cta-title em {
  font-style: italic;
  color: var(--rose-soft);
}
.final-cta-lead {
  font-size: 1.1rem;
  color: rgba(247, 241, 232, .82);
  line-height: 1.65;
  max-width: 56ch;
  margin-bottom: 2.4rem;
}
.final-cta .btn-primary {
  background: var(--bg-cream);
  color: var(--ink);
  box-shadow: 0 14px 40px -16px rgba(255, 255, 255, .35);
}
.final-cta .btn-primary:hover {
  background: var(--rose);
  color: var(--ink);
  box-shadow: 0 20px 46px -16px rgba(217, 168, 158, .55);
}
.final-cta-foot {
  margin-top: 1.5rem;
  font-size: .9rem;
  color: rgba(247, 241, 232, .65);
}
.final-cta-foot a {
  color: var(--rose-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #16110D;
  color: rgba(247, 241, 232, .75);
  padding: clamp(3rem, 6vw, 5rem) 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(247, 241, 232, .12);
}
.footer-brand p {
  margin-top: 1.2rem;
  font-size: .92rem;
  line-height: 1.7;
  color: rgba(247, 241, 232, .65);
  max-width: 40ch;
}
.footer-mark {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-mark > div {
  display: flex;
  flex-direction: column;
}
.footer-mark .caligrafia {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--rose-soft);
  line-height: 1.1;
}
.footer-mark span:last-child {
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(247, 241, 232, .55);
  margin-top: .35rem;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose-soft);
  font-weight: 500;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col li, .footer-col a {
  font-size: .92rem;
  color: rgba(247, 241, 232, .72);
  transition: color .2s;
}
.footer-col a:hover { color: var(--rose-soft); }

.footer-foot {
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  font-size: .82rem;
  color: rgba(247, 241, 232, .68);
  line-height: 1.5;
}
.footer-foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-legal {
  display: flex;
  gap: .8rem;
  align-items: center;
  flex-wrap: wrap;
}
.footer-legal a {
  color: rgba(247, 241, 232, .72);
  transition: color .2s;
  font-size: .82rem;
}
.footer-legal a:hover { color: var(--rose-soft); }
.footer-legal span { color: rgba(247, 241, 232, .25); }
.footer-foot .disclaimer {
  font-size: .8rem;
  max-width: 70ch;
  color: rgba(247, 241, 232, .78);
  line-height: 1.55;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float-wa {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 60;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow:
    0 10px 24px -6px rgba(37, 211, 102, .5),
    0 0 0 0 rgba(37, 211, 102, .5);
  transition: transform .25s var(--ease-out), box-shadow .25s;
  animation: waPulse 2.4s ease-in-out infinite;
}
.float-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 30px -6px rgba(37, 211, 102, .65);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 24px -6px rgba(37, 211, 102, .5), 0 0 0 0 rgba(37, 211, 102, .35); }
  50%      { box-shadow: 0 10px 24px -6px rgba(37, 211, 102, .5), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ============================================================
   REVEAL ANIMATIONS (progressive enhancement)
   ============================================================ */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease-out), transform .9s var(--ease-out);
}
html.js [data-reveal].revealed {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] { opacity: 1; transform: none; transition: none; }
}

html.js .hero-title .reveal-line {
  opacity: 0;
  transform: translateY(40px);
  animation: lineUp .9s var(--ease-out) forwards;
}
.hero-title .reveal-line:nth-child(1) { animation-delay: .1s; }
.hero-title .reveal-line:nth-child(2) { animation-delay: .22s; }
.hero-title .reveal-line:nth-child(3) { animation-delay: .38s; }
.hero-title .reveal-line:nth-child(4) { animation-delay: .5s; }
@keyframes lineUp {
  to { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE · MOBILE & TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-copy { max-width: 100%; }
  .hero-photo-frame { max-width: 400px; margin-inline: auto; }
  .hero-photo-aura { max-width: 560px; }

  .for-who-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .for-who-visual { max-width: 480px; margin-inline: auto; width: 100%; }

  .journey-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .journey-photo {
    position: static;
    max-width: 480px;
    margin-inline: auto;
  }
  .journey-photo-caption { margin-top: 1rem; font-size: .9rem; }
}

@media (max-width: 860px) {
  .primary-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .btn-wa-mini { display: none; }

  /* HERO mobile: foto protagonista no topo, headline logo abaixo,
     "3 vagas" desce pra perto do CTA (reforço de urgência) */
  .hero-grid { gap: 1.2rem; }
  .hero-copy { display: contents; }
  .hero-photo { order: 1; margin-bottom: 0; }
  .hero-copy .hero-title { order: 2; }
  .hero-copy .hero-sub { order: 3; }
  .hero-copy .hero-ctas { order: 4; }
  .hero-copy .eyebrow { order: 5; }
  .hero-copy .hero-trust { order: 6; }
}

@media (max-width: 720px) {
  :root { --header-h: 58px; }

  /* Header mais compacto e coeso com a tela */
  .header-inner { gap: .65rem; }
  .brand-mark { width: 32px; height: 32px; }
  .brand-name { font-size: 1.1rem; letter-spacing: .005em; }
  .brand-sub { font-size: .56rem; letter-spacing: .09em; }

  .hero { padding-top: 1.1rem; padding-bottom: 3rem; }
  .hero-ornament { right: -200px; top: -60px; width: 420px; opacity: .08; }

  /* Headline mobile: maior e mais imponente */
  .hero-title {
    font-size: clamp(2.5rem, 10.5vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -.03em;
    margin-bottom: .85rem;
    text-align: center;
  }
  .hero-sub {
    margin-bottom: 1.3rem;
    margin-inline: auto;
  }
  .hero-ctas { margin-bottom: 1.2rem; align-items: center; }

  /* Eyebrow "3 vagas abertas" em 1 linha centralizada, abaixo do CTA */
  .hero-copy .eyebrow {
    align-self: center;
    font-size: .64rem;
    letter-spacing: .1em;
    padding: .38rem .85rem;
    margin: 0 auto 1.1rem;
    white-space: nowrap;
  }

  /* Foto hero mobile: maior e mais arredondada */
  .hero-photo-frame {
    max-width: 320px;
    border-radius: 190px 190px 16px 16px;
    padding: 10px;
  }
  .hero-photo-inner {
    border-radius: 180px 180px 8px 8px;
  }
  .hero-photo-aura { max-width: 440px; opacity: .3; }
  .hero-photo-caption { margin-top: 1.1rem; gap: .15rem; }
  .hero-photo-caption .caligrafia { font-size: 1.55rem; line-height: 1; }
  .hero-photo-caption span:last-child { font-size: .6rem; letter-spacing: .12em; margin-top: .15rem; }

  /* Trust band mobile: 3 colunas compactas, centralizada */
  .hero-trust {
    gap: 0;
    padding-top: 1.1rem;
    margin-top: .2rem;
    max-width: 100%;
    justify-content: space-between;
    text-align: center;
  }
  .hero-stat {
    flex: 1;
    align-items: center;
    padding-left: 0;
    gap: .2rem;
  }
  .hero-stat:not(:first-child)::before {
    top: 10%;
    bottom: 10%;
  }
  .hero-stat-num { font-size: clamp(1.2rem, 5vw, 1.5rem); }
  .hero-stat-label {
    font-size: .7rem;
    max-width: 14ch;
    line-height: 1.3;
  }

  .scroll-cue { display: none; }

  .mirror-list { grid-template-columns: 1fr; gap: .9rem; }
  .mirror-card { padding: 1.6rem 1.4rem 1.3rem; }
  .mirror-card p { font-size: 1.02rem; padding-top: 1rem; }

  .for-who-badge {
    bottom: -1rem;
    right: 50%;
    transform: translateX(50%);
    width: max-content;
  }

  /* Jornada mobile: stats em 1 coluna */
  .journey-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem 1.2rem;
  }
  .journey-stats::before {
    top: 50%; left: 5%; right: 5%;
    width: auto; height: 1px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, transparent, rgba(176, 120, 108, .3), transparent);
  }

  /* Testimonials mobile */
  .testimonial-card { padding: 1.6rem 1.4rem 1.4rem; }
  .testimonials-grid { gap: 1rem; }

  /* How blocks mobile */
  .how-grid { grid-template-columns: 1fr; }
  .how-block { padding: 1.6rem 1.4rem 1.4rem; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }
  .footer-brand { grid-column: 1 / -1; }

  .quote-band blockquote p { font-size: 1.4rem; line-height: 1.3; }
  .quote-band blockquote footer .caligrafia { font-size: 1.7rem; }

  .float-wa { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .float-wa svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2.35rem, 11vw, 3rem);
  }
  .hero-sub { font-size: 1rem; }
  .btn-primary { padding: .95rem 1.3rem; font-size: .96rem; width: 100%; justify-content: center; }
  .btn-primary.big { font-size: 1rem; padding: 1.05rem 1.4rem; }
  .hero-ctas { width: 100%; }
  .hero-soft { font-size: .85rem; width: 100%; }

  .hero-photo-frame { max-width: 290px; border-radius: 175px 175px 14px 14px; }
  .hero-photo-inner { border-radius: 165px 165px 6px 6px; }
  .hero-photo-caption .caligrafia { font-size: 1.75rem; }
  .hero-stat-num { font-size: 1.18rem; }
  .hero-stat-label { font-size: .66rem; }

  .section-title { line-height: 1.18; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .program-card { padding: 1.6rem 1.4rem; }
  .step { padding: 1.6rem 1.3rem; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .float-wa, .nav-toggle, .mobile-menu { display: none !important; }
  .hero-ornament, .methods-ornament, .quote-ornament, .final-cta-ornament, .journey-photo-deco { display: none !important; }
  body { background: #fff; color: #000; }
}
