/* ==========================================================================
   Prosperadamente — Landing Page
   Paleta sugerida (sem logo/marca definida ainda — trocar quando houver):
   Verde profundo (prosperidade, calma) + Terracota (acolhimento, humano)
   ========================================================================== */

:root {
  /* Paleta */
  --bg: #FBF7F0;
  --bg-alt: #F3EBDD;
  --bg-deep: #16281F;
  --ink: #1C2620;
  --ink-soft: #47554C;
  --primary: #234C3A;
  --primary-dark: #142F23;
  --primary-light: #33684E;
  --accent: #C1683A;
  --accent-dark: #A2532B;
  --accent-soft: #EFC9A8;
  --gold: #B8934B;
  --white: #FFFFFF;
  --line: rgba(28, 38, 32, 0.12);
  --line-soft: rgba(28, 38, 32, 0.08);

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

  /* Espaçamento fluido */
  --space-xs: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
  --space-sm: clamp(0.9rem, 0.8rem + 0.4vw, 1.25rem);
  --space-md: clamp(1.5rem, 1.2rem + 1vw, 2.5rem);
  --space-lg: clamp(2.5rem, 2rem + 2vw, 4.5rem);
  --space-xl: clamp(4rem, 3rem + 4vw, 8rem);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 20px 60px -25px rgba(20, 47, 35, 0.35);
  --shadow-tight: 0 8px 24px -12px rgba(20, 47, 35, 0.3);
  --container: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.section {
  padding-block: var(--space-xl);
  position: relative;
}
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: var(--bg-deep);
  color: #EDE7DA;
}
.section-dark h2, .section-dark h3 { color: #FBF7F0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: var(--space-sm);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}
.section-dark .eyebrow { color: var(--accent-soft); }
.section-dark .eyebrow::before { background: var(--accent-soft); }

.section-head {
  max-width: 720px;
  margin-bottom: var(--space-lg);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 1.6rem + 1.6vw, 2.9rem); margin-bottom: var(--space-sm); }
.section-head p { font-size: 1.08rem; color: var(--ink-soft); max-width: 60ch; }
.section-head.center p { margin-inline: auto; }
.section-dark .section-head p { color: #C9CFC7; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 1.05em 1.8em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-tight);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(162, 83, 43, 0.55); }
.btn-outline {
  background: transparent;
  color: var(--bg);
  border: 1.5px solid rgba(251, 247, 240, 0.45);
}
.btn-outline:hover { background: rgba(251, 247, 240, 0.1); border-color: var(--bg); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--primary); background: rgba(35, 76, 58, 0.05); }
.btn-block { width: 100%; }
.btn svg { width: 1.15em; height: 1.15em; flex-shrink: 0; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-xs); align-items: center; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding-block: var(--space-xs);
  background: rgba(251, 247, 240, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -20px rgba(20, 47, 35, 0.4);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6em;
}
.logo-mark { height: 40px; width: 40px; object-fit: contain; display: block; flex-shrink: 0; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  gap: 0.15em;
}
.logo-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary-dark);
  white-space: nowrap;
}
.logo-tagline {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-links a { transition: color 0.2s ease; position: relative; }
.nav-links a:hover { color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: var(--space-sm); }
.header-actions .btn-primary { padding: 0.85em 1.4em; font-size: 0.92rem; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--space-xl) + 3.5rem);
  padding-bottom: var(--space-xl);
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(60% 55% at 85% 8%, rgba(193, 104, 58, 0.22), transparent 60%),
    radial-gradient(50% 45% at 8% 18%, rgba(35, 76, 58, 0.16), transparent 60%),
    radial-gradient(40% 40% at 50% 100%, rgba(184, 147, 75, 0.12), transparent 65%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: var(--space-xl); }
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 1.9rem + 2.6vw, 4rem);
  color: var(--primary-dark);
  margin-bottom: var(--space-sm);
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--accent-dark);
}
.hero-copy .lede {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: var(--space-md);
}
.hero-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm) var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--line);
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.55em;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-dark);
}
.hero-trust svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

.hero-note {
  margin-top: var(--space-sm);
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* Hero visual — vídeo de apresentação */
.hero-visual { position: relative; }
.hero-video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--primary-dark);
  aspect-ratio: 9 / 16;
  max-height: 560px;
  margin-inline: auto;
}
.hero-video-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: var(--primary-dark);
}
.hero-video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  background:
    radial-gradient(60% 50% at 50% 40%, rgba(193, 104, 58, 0.22), transparent 70%),
    var(--primary-dark);
  color: rgba(251, 247, 240, 0.55);
}
.hero-video-placeholder svg { width: 52px; height: 52px; }
.hero-video-placeholder span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-video-tag {
  position: absolute;
  z-index: 2;
  top: var(--space-sm);
  left: var(--space-sm);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--bg);
  background: rgba(20, 47, 35, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(251, 247, 240, 0.25);
  padding: 0.5em 1em;
  border-radius: 999px;
  pointer-events: none;
}

/* ---------- Marquee / faixa ---------- */
.strip {
  background: var(--primary-dark);
  color: var(--bg);
  padding-block: var(--space-xs);
  overflow: hidden;
}
.strip-track {
  display: flex;
  gap: var(--space-lg);
  white-space: nowrap;
  animation: scroll-strip 32s linear infinite;
  width: max-content;
}
@keyframes scroll-strip {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.strip-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(251, 247, 240, 0.55);
  display: inline-flex;
  align-items: center;
  gap: var(--space-lg);
}
.strip-track span::after { content: "•"; color: var(--accent-soft); margin-left: var(--space-lg); }

/* ---------- Dores (editorial, estilo jornal impresso, fundo escuro) ---------- */
.pain-masthead {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--space-lg);
}
.pain-kicker-main {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
  padding-bottom: 0.6em;
  margin-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(251, 247, 240, 0.2);
}
.pain-masthead h2 { font-size: clamp(1.8rem, 1.5rem + 1.6vw, 2.7rem); margin-bottom: var(--space-sm); }

.pain-columns {
  columns: 1;
  column-gap: var(--space-lg);
}
@media (min-width: 700px) {
  .pain-columns { columns: 2; column-rule: 1px solid rgba(251, 247, 240, 0.16); }
}
@media (min-width: 980px) {
  .pain-columns { columns: 3; }
}

.pain-brief {
  break-inside: avoid;
  padding-block: var(--space-md);
  padding-left: var(--space-sm);
  margin-left: calc(var(--space-sm) * -1);
  border-top: 1px solid rgba(251, 247, 240, 0.16);
  border-left: 2px solid transparent;
  transition: border-left-color 0.3s ease, transform 0.3s ease;
}
.pain-columns .pain-brief:hover { border-left-color: var(--accent); transform: translateX(4px); }

.pain-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 0.5em;
}
.pain-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.42;
  color: var(--bg);
}
.pain-quote::before { content: "\201C"; color: var(--accent-soft); font-size: 1.3em; line-height: 0; }
.pain-quote::after { content: "\201D"; color: var(--accent-soft); font-size: 1.3em; line-height: 0; }

.pain-pullquote {
  margin-top: var(--space-lg);
  padding-block: var(--space-md);
  border-top: 1px solid rgba(251, 247, 240, 0.35);
  border-bottom: 1px solid rgba(251, 247, 240, 0.35);
  text-align: center;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--bg);
}
.pain-pullquote .text-accent { color: var(--accent-soft); }

/* ---------- Diferenciais ---------- */
.text-highlight {
  color: var(--accent-soft);
  font-size: 1.15em;
  font-style: italic;
}
.diff-grid {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: 1fr;
}
@media (min-width: 620px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .diff-grid { grid-template-columns: repeat(3, 1fr); } }

.diff-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid var(--line-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.diff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-tight); }
.diff-card .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}
.diff-card .icon-wrap svg { width: 26px; height: 26px; color: var(--bg); }
.diff-card.featured { background: var(--primary); color: var(--bg); border-color: rgba(251, 247, 240, 0.16); box-shadow: var(--shadow-soft); }
.diff-card.featured .icon-wrap { background: var(--accent); }
.diff-card.featured p { color: rgba(251, 247, 240, 0.8); }
.diff-card h3 { font-size: 1.15rem; margin-bottom: 0.4em; color: var(--primary-dark); }
.diff-card p { color: var(--ink-soft); font-size: 0.96rem; }
.diff-card.featured h3 { color: var(--bg); }

/* ---------- Os 12 módulos ---------- */
.module-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6em;
  justify-content: center;
  margin-bottom: var(--space-lg);
}
.module-filter {
  padding: 0.6em 1.3em;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.module-filter:hover { border-color: var(--primary); color: var(--primary); }
.module-filter.is-active { background: var(--primary); border-color: var(--primary); color: var(--bg); }
.module-filter .count { font-weight: 500; opacity: 0.6; font-variant-numeric: tabular-nums; }

.module-rail {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 0.25rem 0.25rem var(--space-sm);
  margin: 0 -0.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-soft) transparent;
}
.module-rail::-webkit-scrollbar { height: 6px; }
.module-rail::-webkit-scrollbar-thumb { background: var(--accent-soft); border-radius: 999px; }

.module-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: min(80vw, 290px);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.55em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.module-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-tight); }
.module-card.is-hidden { display: none; }
.module-card .module-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--accent-soft);
  line-height: 1;
}
.module-card .module-phase-tag {
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3em 0.75em;
  border-radius: 4px;
  border: 1px solid transparent;
}
.module-card[data-phase="diagnostico"] .module-phase-tag { background: rgba(35, 76, 58, 0.08); border-color: rgba(35, 76, 58, 0.25); color: var(--primary); }
.module-card[data-phase="autorregulacao"] .module-phase-tag { background: rgba(51, 104, 78, 0.1); border-color: rgba(51, 104, 78, 0.35); color: var(--primary-light); }
.module-card[data-phase="performance"] .module-phase-tag { background: rgba(193, 104, 58, 0.08); border-color: rgba(193, 104, 58, 0.3); color: var(--accent-dark); }
.module-card[data-phase="estrategia"] .module-phase-tag { background: rgba(184, 147, 75, 0.12); border-color: rgba(184, 147, 75, 0.4); color: var(--gold); }
.module-card[data-phase="execucao"] .module-phase-tag { background: rgba(20, 47, 35, 0.08); border-color: rgba(20, 47, 35, 0.3); color: var(--primary-dark); }
.module-card h3 { font-size: 1.05rem; color: var(--primary-dark); }
.module-card p { font-size: 0.92rem; color: var(--ink-soft); }

.module-note {
  text-align: center;
  margin-top: var(--space-lg);
}
.module-note-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65em;
  max-width: 100%;
  padding: 0.9em 1.5em;
  border-radius: 999px;
  background: rgba(35, 76, 58, 0.07);
  border: 1px solid rgba(35, 76, 58, 0.22);
  color: var(--primary-dark);
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: left;
}
.module-note-badge svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent);
}
.module-note-badge strong { color: var(--accent-dark); font-weight: 700; }

/* ---------- A jornada em cenas ---------- */
.journey-scenes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}
@media (min-width: 700px) { .journey-scenes { grid-template-columns: repeat(4, 1fr); gap: var(--space-md); } }

.scene {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-tight);
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.scene:hover, .scene:focus-visible { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.0);
  transition: filter 0.35s ease;
}
.scene.is-visible img { animation: scene-kenburns 16s ease-out forwards; }
@keyframes scene-kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
.scene:hover img, .scene:focus-visible img { filter: brightness(0.55); }
.scene-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: fit-content;
  height: fit-content;
  padding: 0.6em 1.2em;
  border-radius: 999px;
  border: 1.5px solid rgba(251, 247, 240, 0.6);
  color: var(--bg);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.scene:hover .scene-hint, .scene:focus-visible .scene-hint { opacity: 1; transform: scale(1); }
.scene-caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: var(--space-sm);
  display: flex;
  align-items: baseline;
  gap: 0.45em;
  background: linear-gradient(to top, rgba(15, 26, 20, 0.9), transparent 75%);
}
.scene-num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--accent-soft);
  line-height: 1;
}
.scene-phase {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--bg);
}

/* ---------- Modal dos pilares ---------- */
.pillar-modal {
  border: none;
  padding: 0;
  border-radius: var(--radius-lg);
  max-width: 880px;
  width: min(92vw, 880px);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--bg);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}
@media (min-width: 780px) {
  .pillar-modal[open] { display: grid; grid-template-columns: 0.85fr 1.15fr; max-height: 82vh; }
}
.pillar-modal::backdrop { background: rgba(15, 26, 20, 0.72); backdrop-filter: blur(4px); }
.pillar-modal-media { position: relative; min-height: 220px; }
@media (min-width: 780px) { .pillar-modal-media { min-height: 100%; } }
.pillar-modal-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pillar-modal-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(15, 26, 20, 0.6);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.pillar-modal-close:hover { background: var(--accent); }
.pillar-modal-close svg { width: 18px; height: 18px; }
.pillar-modal-body { padding: var(--space-lg) var(--space-md); }
.pillar-modal-eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: var(--space-xs);
}
.pillar-modal-body h3 { font-size: 1.7rem; color: var(--primary-dark); margin-bottom: var(--space-sm); }
.pillar-modal-block { margin-bottom: var(--space-sm); }
.pillar-modal-block h4 { font-family: var(--font-body); font-size: 0.85rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.35em; }
.pillar-modal-block p { font-size: 0.98rem; color: var(--ink-soft); }
.pillar-modal-body .btn { margin-top: var(--space-sm); }

/* ---------- Modal de cadastro ---------- */
.lead-modal {
  border: none;
  padding: 0;
  border-radius: var(--radius-lg);
  width: min(92vw, 460px);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.lead-modal::backdrop { background: rgba(15, 26, 20, 0.72); backdrop-filter: blur(4px); }
.lead-modal .pillar-modal-close { position: absolute; top: var(--space-sm); right: var(--space-sm); background: rgba(28, 38, 32, 0.08); color: var(--ink); }
.lead-modal .pillar-modal-close:hover { background: var(--accent); color: var(--white); }
.lead-modal-body { padding: var(--space-lg) var(--space-md) var(--space-md); }
.lead-modal-body h3 { font-size: 1.5rem; color: var(--primary-dark); margin-bottom: 0.5em; }
.lead-modal-intro { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: var(--space-md); }
.form-field { margin-bottom: var(--space-sm); text-align: left; }
.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.4em;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.75em 1em;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--white);
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.2s ease;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus { outline: none; border-color: var(--primary); }
.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) { border-color: var(--accent); }
.lead-modal-note { margin-top: var(--space-sm); font-size: 0.78rem; color: var(--ink-soft); text-align: center; }

/* ---------- Chat virtual ---------- */
@keyframes chatBubbleIn {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes chatPanelIn {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.chat-bubble {
  position: fixed;
  right: var(--space-md);
  bottom: 24px;
  z-index: 150;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  animation: chatBubbleIn 0.5s ease 2.2s forwards;
  transition: background 0.25s ease, transform 0.25s ease;
}
.chat-bubble:hover { background: var(--accent-dark); transform: scale(1.06); }
.chat-bubble svg { width: 25px; height: 25px; }
.chat-bubble-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 2px solid var(--bg);
}
@media (max-width: 899px) { .chat-bubble { bottom: 92px; } }

.chat-panel {
  position: fixed;
  right: var(--space-md);
  bottom: 92px;
  z-index: 150;
  width: min(92vw, 340px);
  max-height: min(72vh, 540px);
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow-y: auto;
  animation: chatPanelIn 0.25s ease;
}
.chat-panel[hidden] { display: none; }
@media (max-width: 899px) { .chat-panel { bottom: 160px; } }
.chat-panel-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  gap: 0.7em;
  padding: var(--space-sm) var(--space-md);
  background: var(--primary);
  color: var(--bg);
}
.chat-avatar { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; background: var(--bg); }
.chat-panel-heading { display: flex; flex-direction: column; flex: 1; line-height: 1.3; }
.chat-panel-heading strong { font-size: 0.95rem; }
.chat-panel-heading span { font-size: 0.75rem; color: rgba(251, 247, 240, 0.75); }
.chat-panel-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  flex-shrink: 0;
}
.chat-panel-close:hover { background: rgba(251, 247, 240, 0.15); }
.chat-panel-close svg { width: 16px; height: 16px; }
.chat-panel-body { padding: var(--space-md); }
.chat-greeting {
  background: var(--bg-alt);
  border-radius: var(--radius-md) var(--radius-md) var(--radius-md) 4px;
  padding: 0.8em 1em;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: var(--space-md);
}
.chat-thread[hidden] { display: none; }
.chat-thread .chat-greeting {
  margin-bottom: var(--space-sm);
  opacity: 0;
  animation: fadeUpIn 0.35s ease forwards;
}
.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6em;
  margin-bottom: var(--space-sm);
  opacity: 0;
  animation: fadeUpIn 0.35s ease forwards;
}
.btn-sm { padding: 0.6em 1.1em; font-size: 0.85rem; }

/* ---------- Para quem é ---------- */
.audience-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}
@media (min-width: 860px) { .audience-grid { grid-template-columns: 1fr 1fr; } }
.audience-card {
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}
.audience-card.yes { background: var(--primary); color: var(--bg); }
.audience-card.no { background: var(--white); border: 1px solid var(--line); }
.audience-card h3 { font-size: 1.3rem; margin-bottom: var(--space-sm); display: flex; align-items: center; gap: 0.5em; }
.audience-card ul { display: flex; flex-direction: column; gap: 0.85em; }
.audience-card li { display: flex; align-items: flex-start; gap: 0.7em; font-size: 0.98rem; }
.audience-card.yes li { color: rgba(251, 247, 240, 0.92); }
.audience-card.no li { color: var(--ink-soft); }
.audience-card svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 0.15em; }
.audience-card.yes svg { color: var(--accent-soft); }
.audience-card.no svg { color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: var(--space-xs); }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .faq-icon {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
  position: relative;
}
.faq-item .faq-icon::before, .faq-item .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--primary-dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-item .faq-icon::before { width: 10px; height: 1.5px; }
.faq-item .faq-icon::after { width: 1.5px; height: 10px; }
.faq-item[open] .faq-icon { background: var(--accent); border-color: var(--accent); }
.faq-item[open] .faq-icon::before, .faq-item[open] .faq-icon::after { background: var(--white); }
.faq-item[open] .faq-icon::after { transform: scaleY(0); opacity: 0; }
.faq-item .faq-body { padding: 0 var(--space-md) var(--space-md); color: var(--ink-soft); font-size: 0.98rem; max-width: 68ch; }

/* ---------- CTA final ---------- */
.cta-final {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}
.cta-final h2 { font-size: clamp(2rem, 1.7rem + 1.6vw, 3rem); margin-bottom: var(--space-sm); }
.cta-final p { color: #C9CFC7; font-size: 1.08rem; margin-bottom: var(--space-md); }
.cta-final .btn-row { justify-content: center; }

.countdown {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin: var(--space-lg) auto;
  flex-wrap: wrap;
}
.countdown-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3em;
  min-width: 74px;
  padding: 0.9em 0.6em;
  border-radius: var(--radius-md);
  background: rgba(251, 247, 240, 0.06);
  border: 1px solid rgba(251, 247, 240, 0.18);
}
.countdown-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.4rem + 1vw, 2.2rem);
  font-weight: 600;
  color: var(--accent-soft);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown-label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C9CFC7;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-deep);
  color: #9FB0A6;
  padding-block: var(--space-lg) var(--space-md);
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(159, 176, 166, 0.18);
}
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-brand .logo-mark {
  height: 48px;
  width: 48px;
  background: var(--bg);
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 0 0 1px rgba(251, 247, 240, 0.15);
}
.footer-brand .logo-title { color: var(--bg); font-size: 1.3rem; }
.footer-brand .logo-tagline { color: var(--accent-soft); }
.footer-brand p { margin-top: var(--space-sm); max-width: 40ch; color: #8FA097; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: #C9CFC7; margin-bottom: var(--space-sm); }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7em; }
.footer-col a { transition: color 0.2s ease; }
.footer-col a:hover { color: var(--accent-soft); }
.footer-social { display: flex; gap: 0.7em; }
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(159, 176, 166, 0.12);
  color: #C9CFC7;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer-social-link svg { width: 18px; height: 18px; }
.footer-social-link:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }
.footer-email { margin-top: var(--space-sm); font-size: 0.85rem; }
.footer-bottom {
  padding-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #728579;
}
.footer-bottom .legal-note { max-width: 60ch; }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(251, 247, 240, 0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.mobile-cta.is-visible { transform: translateY(0); }
.mobile-cta .btn { width: 100%; }
@media (min-width: 900px) { .mobile-cta { display: none; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Títulos, subtítulos e textos auxiliares das seções — animam toda vez que a seção entra na tela */
.head-reveal-group > p:first-child,
.head-reveal-group > h1,
.head-reveal-group > h2,
.head-reveal-group > p:not(:first-child) {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.head-reveal-group > h1, .head-reveal-group > h2 { transition-delay: 0.12s; }
.head-reveal-group > p:not(:first-child) { transition-delay: 0.24s; }
.head-reveal-group.is-visible > p:first-child,
.head-reveal-group.is-visible > h1,
.head-reveal-group.is-visible > h2,
.head-reveal-group.is-visible > p:not(:first-child) {
  opacity: 1;
  transform: translateY(0);
}

/* Cascata: itens de uma mesma grade revelam em sequência, não todos de uma vez */
.pain-columns > *:nth-child(1), .diff-grid > *:nth-child(1), .audience-grid > *:nth-child(1),
.faq-list > *:nth-child(1), .journey-scenes > *:nth-child(1), .module-rail > *:nth-child(1) { transition-delay: 0.02s; }
.pain-columns > *:nth-child(2), .diff-grid > *:nth-child(2), .audience-grid > *:nth-child(2),
.faq-list > *:nth-child(2), .journey-scenes > *:nth-child(2), .module-rail > *:nth-child(2) { transition-delay: 0.09s; }
.pain-columns > *:nth-child(3), .diff-grid > *:nth-child(3),
.faq-list > *:nth-child(3), .journey-scenes > *:nth-child(3), .module-rail > *:nth-child(3) { transition-delay: 0.16s; }
.pain-columns > *:nth-child(4), .diff-grid > *:nth-child(4),
.faq-list > *:nth-child(4), .journey-scenes > *:nth-child(4), .module-rail > *:nth-child(4) { transition-delay: 0.23s; }
.pain-columns > *:nth-child(5), .diff-grid > *:nth-child(5),
.faq-list > *:nth-child(5), .module-rail > *:nth-child(5) { transition-delay: 0.3s; }
.pain-columns > *:nth-child(6), .diff-grid > *:nth-child(6),
.faq-list > *:nth-child(6), .module-rail > *:nth-child(6) { transition-delay: 0.37s; }

/* ---------- Movimento estratégico ---------- */
@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes digitPop {
  0% { transform: scale(1); }
  35% { transform: scale(1.18); color: var(--accent-soft); }
  100% { transform: scale(1); }
}
/* Entrada do hero ao carregar a página (não depende de scroll) */
.hero-copy > .eyebrow, .hero-copy > .lede, .hero-copy > .btn-row, .hero-copy > .hero-trust, .hero-visual {
  opacity: 0;
  animation: fadeUpIn 0.85s ease forwards;
}
.hero-copy > .eyebrow { animation-delay: 0.05s; }
.hero-copy > .lede { animation-delay: 0.3s; }
.hero-copy > .btn-row { animation-delay: 0.44s; }
.hero-copy > .hero-trust { animation-delay: 0.58s; }
.hero-visual { animation-delay: 0.38s; }

/* Título do hero: só a entrada, sem flutuação contínua */
.hero-copy > h1 {
  opacity: 0;
  animation: fadeUpIn 0.85s ease 0.16s forwards;
}

/* Botão principal do hero flutua com o mesmo movimento do vídeo e do título */
.hero-copy .btn-row .btn-primary {
  animation: floatY 6s ease-in-out 1.3s infinite;
}
.hero-copy .btn-row .btn-primary:hover { animation-play-state: paused; }

/* Vídeo/placeholder do hero flutua suavemente, mesmo parado */
.hero-video-card { animation: floatY 6s ease-in-out infinite; }

/* Dígitos da contagem regressiva "pulsam" a cada troca */
.countdown-num.is-ticking { animation: digitPop 0.4s ease; }

/* Seta convidando a rolar pra próxima seção, some após um tempo de leitura */
@keyframes scrollHintIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollHintBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: var(--space-sm);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(35, 76, 58, 0.25);
  color: var(--primary);
  opacity: 0;
  animation: scrollHintIn 0.8s ease 3.5s forwards;
  z-index: 2;
}
.scroll-hint svg {
  width: 18px;
  height: 18px;
  animation: scrollHintBounce 1.8s ease-in-out 4.3s infinite;
}
.scroll-hint:hover { border-color: var(--primary); }

/* Cards ganham resposta ao toque/hover onde ainda não tinham */
.audience-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.audience-card:hover { transform: translateY(-4px); }
.audience-card.no:hover { box-shadow: var(--shadow-tight); }

/* Bordas do carrossel de módulos esmaecem pra sugerir que dá pra arrastar */
.module-rail {
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 28px, black calc(100% - 28px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 28px, black calc(100% - 28px), transparent 100%);
}

/* Barra de progresso de leitura no topo da página */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent);
  z-index: 200;
  transition: width 0.12s linear;
}

/* Item ativo na navegação, conforme a seção visível */
.nav-links a.is-active { color: var(--primary); }
.nav-links a { position: relative; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a.is-active::after { transform: scaleX(1); }

/* ---------- Utilidades ---------- */
.text-accent { color: var(--accent-dark); }
.mt-lg { margin-top: var(--space-lg); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Página legal (Política de Privacidade) ---------- */
.legal-page { padding-block: var(--space-lg) var(--space-xl); }
.legal-content { max-width: 68ch; margin-inline: auto; }
.legal-content h2 {
  font-size: 1.35rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
  color: var(--primary-dark);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--ink-soft); margin-bottom: var(--space-sm); }
.legal-content ul { margin: 0 0 var(--space-sm); padding-left: 1.3em; }
.legal-content li {
  list-style: disc;
  color: var(--ink-soft);
  margin-bottom: 0.5em;
  line-height: 1.6;
}
.legal-content a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Banner de cookies/privacidade ---------- */
.cookie-banner {
  position: fixed;
  left: var(--space-md);
  right: var(--space-md);
  bottom: var(--space-md);
  z-index: 250;
  max-width: 720px;
  margin-inline: auto;
  background: var(--primary-dark);
  color: var(--bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { flex: 1 1 260px; font-size: 0.88rem; color: #C9CFC7; margin: 0; }
.cookie-banner a { color: var(--bg); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner .btn { flex-shrink: 0; }
@media (max-width: 899px) { .cookie-banner { bottom: 84px; } }
