/* ============================================================
   DESIGN SYSTEM — Página de Formação (rebuild)
   ============================================================ */

:root {
  /* ---------- CORES ---------- */
  --teal-950: #102a2c;              /* fundo escuro principal */
  --teal-900: #1a3a3d;              /* topo dos gradientes escuros */
  --teal-800: #2b3f45;              /* slate teal, cards escuros */
  --gold: #b3a275;                  /* dourado champagne — destaque e CTA */
  --gold-soft: rgba(179, 162, 117, .35);
  --ivory: #f3f0e9;                 /* fundo claro principal */
  --ivory-light: #f7f4ee;
  --white: #ffffff;
  --ink: #102a2c;                   /* texto sobre fundo claro (nunca preto puro) */

  /* ---------- SOMBRAS (tingidas com teal, nunca preto puro) ---------- */
  --shadow-sm: 0 1px 2px rgba(16, 42, 44, .06), 0 4px 12px rgba(16, 42, 44, .08);
  --shadow-md: 0 2px 4px rgba(16, 42, 44, .08), 0 12px 32px rgba(16, 42, 44, .14);
  --shadow-lg: 0 4px 8px rgba(16, 42, 44, .10), 0 24px 64px rgba(16, 42, 44, .22);
  --shadow-gold: 0 8px 24px rgba(179, 162, 117, .35);

  /* ---------- TIPOGRAFIA ---------- */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Escala fluida */
  --fs-h1: clamp(2.2rem, 5vw, 3.8rem);
  --fs-h2: clamp(1.8rem, 4vw, 2.8rem);
  --fs-body: 1.0625rem;
  --lh-body: 1.7;

  /* ---------- FORMA E ESPAÇO ---------- */
  --radius-card: 16px;
  --radius-btn: 12px;
  --radius-pill: 999px;

  --section-pad: clamp(4rem, 8vw, 7.5rem);
  --container-max: 1180px;

  /* Easing padrão das interações */
  --ease-reveal: cubic-bezier(.2, .8, .2, 1);
}

/* ============================================================
   RESET / BASE
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ============================================================
   TIPOGRAFIA — HEADINGS / EYEBROW
   ============================================================ */

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: inherit;
}

h1 {
  font-size: var(--fs-h1);
  font-weight: 700;
}

h2 {
  font-size: var(--fs-h2);
}

p {
  margin: 0 0 1em;
}

/* Eyebrow / kicker acima dos h2 */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .8125rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}

/* ============================================================
   LAYOUT — CONTAINER / SECTIONS
   ============================================================ */

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

section {
  padding-block: var(--section-pad);
}

/* ---------- FUNDOS DE SEÇÃO (3 variantes alternadas) ---------- */

/* Escura: gradiente radial + textura de ruído sutil */
.section--dark {
  position: relative;
  color: var(--ivory);
  background-color: var(--teal-950);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E"),
    radial-gradient(ellipse at top, var(--teal-900) 0%, var(--teal-950) 60%);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

/* Marfim: gradiente vertical suave */
.section--ivory {
  background: linear-gradient(180deg, var(--ivory-light), var(--ivory));
  color: var(--ink);
}

/* Branca: chapada */
.section--white {
  background: var(--white);
  color: var(--ink);
}

/* ============================================================
   BOTÕES — .btn-cta
   ============================================================ */

.btn-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  overflow: hidden;
  border: 0;
  padding: 1.1rem 2.4rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1;
  color: var(--teal-950);
  background: var(--gold);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-gold);
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(179, 162, 117, .5);
}

/* Brilho que atravessa o botão no hover */
.btn-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, .35) 50%,
    transparent 60%
  );
  transform: translateX(-120%);
  transition: transform .6s ease;
  pointer-events: none;
}

.btn-cta:hover::after {
  transform: translateX(120%);
}

/* utilidade: destaque dourado em trecho de título */
.text-gold {
  color: var(--gold);
}

/* ============================================================
   BARRA DE DEADLINE (sticky, topo)
   ============================================================ */

.deadline-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 52px;
  display: flex;
  align-items: center;
  background: var(--teal-950);
  color: var(--ivory);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.deadline-bar__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.deadline-bar__label {
  font-size: .8125rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(243, 240, 233, .75);
}

.countdown {
  display: flex;
  align-items: baseline;
  gap: .5rem;
}

.countdown__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.countdown__num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

.countdown__unit {
  font-size: .5625rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(243, 240, 233, .5);
  margin-top: .2rem;
}

.countdown__sep {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: rgba(179, 162, 117, .5);
  align-self: flex-start;
}

/* ============================================================
   HERO
   ============================================================ */

/* Hero ocupa a primeira dobra (100vh) com a imagem de reunião ao fundo */
#hero.section--dark {
  min-height: calc(100svh - 52px);
  display: flex;
  align-items: center;
  background-color: var(--teal-950);
  /* fallback: navegadores sem image-set() carregam o PNG */
  background-image:
    linear-gradient(180deg, rgba(16, 42, 44, .78) 0%, rgba(16, 42, 44, .90) 100%),
    url("../imagens/020E08-1.png");
  /* desktop: webp 1600 (com PNG como fallback de tipo) */
  background-image:
    linear-gradient(180deg, rgba(16, 42, 44, .78) 0%, rgba(16, 42, 44, .90) 100%),
    image-set(
      url("../imagens/020E08-1-1600.webp") type("image/webp"),
      url("../imagens/020E08-1.png") type("image/png")
    );
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

/* mobile: webp 800 (mais leve) */
@media (max-width: 768px) {
  #hero.section--dark {
    background-image:
      linear-gradient(180deg, rgba(16, 42, 44, .78) 0%, rgba(16, 42, 44, .90) 100%),
      url("../imagens/020E08-1.png");
    background-image:
      linear-gradient(180deg, rgba(16, 42, 44, .78) 0%, rgba(16, 42, 44, .90) 100%),
      image-set(
        url("../imagens/020E08-1-800.webp") type("image/webp"),
        url("../imagens/020E08-1.png") type("image/png")
      );
  }
}

.hero {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__logo {
  width: auto;
  height: 52px;
  margin-bottom: 1.75rem;
}

/* Glow dourado desfocado atrás do texto */
.hero__glow {
  position: absolute;
  top: 10%;
  left: -4%;
  width: 400px;
  height: 400px;
  max-width: 80%;
  border-radius: 50%;
  background: var(--gold);
  opacity: .12;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.hero__text {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero__sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  color: rgba(255, 255, 255, .78);
  max-width: 34ch;
  margin-bottom: 2rem;
}

.hero__reassurance {
  margin-top: 1.1rem;
  margin-bottom: 0;
  font-size: .875rem;
  color: rgba(255, 255, 255, .55);
}

/* ---------- Vídeo (facade lazy-load) ---------- */

.hero__media {
  position: relative;
  z-index: 1;
}

.video-facade {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  background: var(--teal-800);
}

.video-facade__thumb,
.video-facade__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-facade__thumb {
  object-fit: cover;
  transition: transform .4s ease, opacity .3s ease;
}

.video-facade:hover .video-facade__thumb {
  transform: scale(1.03);
}

.video-facade__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  padding-left: 4px;
  border: 0;
  border-radius: var(--radius-pill);
  color: var(--teal-950);
  background: var(--gold);
  box-shadow: var(--shadow-gold);
  transition: transform .25s ease, box-shadow .25s ease;
}

.video-facade:hover .video-facade__play {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 12px 32px rgba(179, 162, 117, .55);
}

.video-facade.is-playing {
  cursor: default;
}

/* ============================================================
   SECTION HEAD (eyebrow + h2 centralizado) — reutilizável
   ============================================================ */

.section-head {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-head .eyebrow {
  margin-bottom: .75rem;
}

/* ============================================================
   QUALIFICAÇÃO
   ============================================================ */

/* frase-ponte de transição (hero → qualificação) */
.bridge-line {
  max-width: 780px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.75rem);
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.32;
  color: var(--ink);
}

.bridge-line em {
  font-style: italic;
  color: var(--gold);
}

.qual-grid {
  display: grid;
  /* 4 cards em uma linha no desktop; colapsa em 2 → 1 (regras em @media) */
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 1000px) {
  .qual-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .qual-grid { grid-template-columns: 1fr; }
}

.qual-card {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1),
              box-shadow .35s cubic-bezier(.2, .8, .2, 1),
              border-color .35s cubic-bezier(.2, .8, .2, 1);
}

.qual-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(179, 162, 117, .7);
}

.qual-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  color: var(--gold);
  background: rgba(179, 162, 117, .15);
  flex-shrink: 0;
}

.qual-card p {
  margin: 0;
  color: var(--ink);
}

.qual-closing {
  max-width: 640px;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--ink);
}

/* ============================================================
   DOR
   ============================================================ */

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

.dor__text .eyebrow {
  margin-bottom: 1rem;
}

.dor-list {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin: 1.5rem 0;
}

.dor-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--ink);
}

.dor-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

.dor__highlight {
  margin: 2rem 0 0;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ink);
}

.dor__media img {
  width: 100%;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   PILARES
   ============================================================ */

.pilares-grid {
  display: grid;
  /* 2x2 no desktop; colapsa para 1 coluna no mobile (regra em @media) */
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 1.75rem;
}

.pilar-card {
  position: relative;
  overflow: hidden;
  padding: 2.25rem;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-card);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1),
              background-color .35s cubic-bezier(.2, .8, .2, 1),
              border-color .35s cubic-bezier(.2, .8, .2, 1);
}

.pilar-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(179, 162, 117, .45);
}

/* Número-marca-d'água no canto superior direito */
.pilar-card__num {
  position: absolute;
  top: -.15em;
  right: .1em;
  z-index: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 110px;
  line-height: 1;
  color: var(--gold);
  opacity: .14;
  pointer-events: none;
}

.pilar-card__title {
  position: relative;
  z-index: 1;
  margin: 0 0 1.25rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 1.0625rem;
  color: var(--gold);
}

.pilar-card__list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.pilar-card__list li {
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.65;
  color: rgba(243, 240, 233, .82);
}

.pilar-card__list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: -.05em;
  font-size: 1.1em;
  color: var(--gold);
}

/* ============================================================
   ROADMAP — TIMELINE
   ============================================================ */

.timeline {
  position: relative;
  max-width: 960px;
  margin-inline: auto;
}

/* Linha vertical central (desktop) */
.timeline::before {
  content: "";
  position: absolute;
  top: .5rem;
  bottom: .5rem;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: var(--gold-soft);
}

.timeline__item {
  position: relative;
  width: 50%;
  margin-bottom: 2rem;
  box-sizing: border-box;
}

.timeline__item:last-child {
  margin-bottom: 0;
}

/* Ímpares à esquerda, pares à direita */
.timeline__item:nth-child(odd) {
  left: 0;
  padding-right: 2.75rem;
  text-align: right;
}

.timeline__item:nth-child(even) {
  left: 50%;
  padding-left: 2.75rem;
  text-align: left;
}

/* Nó: círculo com borda dourada e fundo ivory, sobre a linha central */
.timeline__node {
  position: absolute;
  top: .55rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ivory);
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

.timeline__item:nth-child(odd) .timeline__node {
  right: 0;
  transform: translateX(50%);
}

.timeline__item:nth-child(even) .timeline__node {
  left: 0;
  transform: translateX(-50%);
}

.timeline__card {
  display: inline-block;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2, .8, .2, 1),
              box-shadow .3s cubic-bezier(.2, .8, .2, 1);
}

.timeline__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.timeline__step {
  display: inline-block;
  margin-bottom: .4rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .6875rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

.timeline__card h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--ink);
}

.timeline__sub {
  margin: .35rem 0 0;
  font-size: .875rem;
  color: rgba(16, 42, 44, .6);
}

/* ============================================================
   JORNADA
   ============================================================ */

.jornada-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: stretch;
}

.jornada-card {
  padding: clamp(2rem, 3vw, 2.75rem);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1),
              box-shadow .35s cubic-bezier(.2, .8, .2, 1);
}

.jornada-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Fase 1 — clara */
.jornada-card--incubadora {
  background: var(--ivory-light);
  border: 1px solid var(--gold-soft);
  color: var(--ink);
}

/* Fase 2 — escura (comunica progressão) */
.jornada-card--aceleradora {
  background: var(--teal-950);
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--ivory);
}

.jornada-card__tag {
  display: inline-block;
  padding: .35rem .9rem;
  border-radius: var(--radius-pill);
  background: rgba(179, 162, 117, .18);
  color: var(--gold);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.jornada-card h3 {
  margin: 1rem 0 1.25rem;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
}

.jornada-card--aceleradora h3 {
  color: var(--white);
}

.jornada-card__goal {
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-btn) var(--radius-btn) 0;
  background: rgba(179, 162, 117, .1);
  font-size: 1rem;
}

.jornada-card__goal strong {
  color: var(--gold);
  letter-spacing: .04em;
}

.jornada-card__list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.jornada-card__list li {
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.6;
}

.jornada-card__list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: -.05em;
  font-size: 1.1em;
  color: var(--gold);
}

/* ============================================================
   ACOMPANHAMENTO (reaproveita .pilar-card / glassmorphism)
   ============================================================ */

.acomp-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.acomp-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-btn);
  color: var(--gold);
  background: rgba(179, 162, 117, .12);
  border: 1px solid rgba(179, 162, 117, .25);
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */

.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.depo-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1),
              box-shadow .35s cubic-bezier(.2, .8, .2, 1);
}

.depo-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

/* Capa de vídeo: reusa .video-facade mas com cantos só no topo */
.depo-card__media {
  border: 0;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  box-shadow: none;
}

.depo-card__quote {
  position: relative;
  margin: 0;
  padding: 2.5rem 1.75rem 2rem;
}

/* Aspas decorativas grandes */
.depo-card__quote::before {
  content: "\201C";
  position: absolute;
  top: .1em;
  left: .5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: .25;
  pointer-events: none;
}

.depo-card__quote p {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--ink);
}

/* ============================================================
   SOBRE
   ============================================================ */

.sobre {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

/* Frame editorial com moldura dupla */
.sobre__frame {
  position: relative;
  margin: 0;
  max-width: 420px;
}

.sobre__frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  /* foto é um recorte com fundo transparente — backing quente de estúdio */
  background: linear-gradient(165deg, var(--ivory-light) 0%, #e7e0d2 100%);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
}

/* Retângulo de borda dourada deslocado 12px atrás */
.sobre__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(12px, 12px);
  border: 1px solid var(--gold);
  border-radius: var(--radius-card);
  z-index: 0;
}

.sobre__text .eyebrow {
  margin-bottom: .75rem;
}

.sobre__creds {
  font-weight: 600;
  color: rgba(16, 42, 44, .7);
  margin-bottom: 1.5rem;
}

.sobre__mission {
  margin-top: 1.75rem;
  margin-bottom: 0;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.5;
}

.sobre__mission strong {
  color: var(--gold);
}

/* ============================================================
   OFERTA — clímax visual
   ============================================================ */

.oferta {
  position: relative;
  z-index: 1;
  /* clipa o vazamento do glow (inset -40) que causava ~4px de overflow no mobile */
  overflow: hidden;
  /* respiro generoso ao redor do card (antes o card ficava colado na base) */
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.oferta .section-head p:last-child {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .7);
}

.oferta-card {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2.25rem, 5vw, 3.5rem);
  text-align: center;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(179, 162, 117, .4);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

/* Glow dourado atrás do card */
.oferta-card__glow {
  position: absolute;
  inset: -40px;
  z-index: -1;
  border-radius: 50%;
  background: var(--gold);
  opacity: .15;
  filter: blur(100px);
  pointer-events: none;
}

.oferta-card__label {
  margin: 0 0 .5rem;
  font-weight: 600;
  font-size: .8125rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}

.oferta-card__note {
  margin: 0 auto 1.75rem;
  max-width: 42ch;
  font-size: .9375rem;
  color: rgba(255, 255, 255, .6);
}

.oferta-card__old {
  margin: 0;
  font-size: 1.0625rem;
  text-decoration: line-through;
  color: rgba(255, 255, 255, .45);
}

.oferta-card__price {
  margin: .25rem 0 .35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  line-height: 1;
  color: var(--gold);
}

.oferta-card__install {
  margin: 0 0 2.25rem;
  color: rgba(243, 240, 233, .7);
}

.oferta-card__features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 0 0 2.25rem;
  text-align: left;
}

.oferta-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.oferta-feature__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-btn);
  color: var(--gold);
  background: rgba(179, 162, 117, .14);
  border: 1px solid rgba(179, 162, 117, .3);
}

.oferta-feature__body {
  font-size: .9375rem;
  line-height: 1.55;
  color: rgba(243, 240, 233, .78);
}

.oferta-feature__body strong {
  display: block;
  margin-bottom: .25rem;
  font-size: .8125rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
}

.oferta-card__cta {
  width: 100%;
}

/* ============================================================
   BÔNUS
   ============================================================ */

.bonus {
  position: relative;
}

.bonus-list {
  max-width: 780px;
  margin-inline: auto;
  display: grid;
  gap: 1rem;
}

/* cada bônus é um card elegante */
.bonus-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.35rem;
  padding: 1.4rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .3s var(--ease-reveal),
              box-shadow .3s var(--ease-reveal),
              border-color .3s var(--ease-reveal);
}

/* fio dourado à esquerda */
.bonus-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(179, 162, 117, .6);
}

.bonus-card__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-pill);
  color: var(--gold);
  background: rgba(179, 162, 117, .14);
  border: 1px solid rgba(179, 162, 117, .3);
}

.bonus-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  align-items: flex-start;
}

.bonus-card__title {
  margin: 0;
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1.45;
  color: var(--ink);
}

.bonus-card__deadline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .85rem;
  border-radius: var(--radius-pill);
  background: var(--teal-950);
  color: var(--ivory);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .03em;
  white-space: nowrap;
}

.bonus-card__deadline::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* selo dourado "grátis" */
.bonus-card__free {
  flex-shrink: 0;
  align-self: flex-start;
  padding: .3rem .75rem;
  border-radius: var(--radius-pill);
  background: rgba(179, 162, 117, .15);
  border: 1px solid rgba(179, 162, 117, .35);
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .6875rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ============================================================
   URGÊNCIA
   ============================================================ */

.urgencia__intro {
  max-width: 760px;
  margin-bottom: 3rem;
}

.urgencia__intro h2 {
  margin-bottom: 1rem;
}

.urgencia__intro p {
  margin: 0;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .72);
}

.urgencia__kicker {
  margin-bottom: 1.5rem;
}

.urgencia-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 2.5rem;
}

.urgencia-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(243, 240, 233, .85);
}

.urgencia-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

/* ============================================================
   FAQ — accordion nativo (zero JS)
   ============================================================ */

/* habilita animação de altura auto onde suportado */
@media (prefers-reduced-motion: no-preference) {
  :root {
    interpolate-size: allow-keywords;
  }
}

.faq-list {
  max-width: 820px;
  margin-inline: auto;
  border-top: 1px solid rgba(16, 42, 44, .08);
}

.faq-item {
  border-bottom: 1px solid rgba(16, 42, 44, .08);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--ink);
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Ícone + que rotaciona para × ao abrir */
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--gold);
  transition: transform .3s cubic-bezier(.2, .8, .2, 1);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item__answer > p {
  margin: 0;
  padding-bottom: 1.25rem;
  color: rgba(16, 42, 44, .75);
  line-height: 1.65;
}

/* Animação suave via ::details-content (fallback: sem animação) */
.faq-item::details-content {
  block-size: 0;
  overflow: hidden;
  transition: block-size .35s ease, content-visibility .35s;
  transition-behavior: allow-discrete;
}

.faq-item[open]::details-content {
  block-size: auto;
}

/* ============================================================
   CTA FINAL
   ============================================================ */

.cta-final {
  position: relative;
  max-width: 820px;
  text-align: center;
}

.cta-final__glow {
  position: absolute;
  top: 0;
  left: 50%;
  width: 480px;
  height: 480px;
  max-width: 90%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--gold);
  opacity: .13;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}

.cta-final > *:not(.cta-final__glow) {
  position: relative;
  z-index: 1;
}

.cta-final__title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  margin-bottom: 1.25rem;
}

.cta-final__lead {
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, .75);
}

.cta-final__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .9rem;
  margin-bottom: 2.75rem;
}

.cta-final__pills li {
  padding: .7rem 1.35rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(179, 162, 117, .3);
  font-size: .9375rem;
  font-weight: 500;
  color: var(--ivory);
}

.cta-final__cta {
  font-size: 1.15rem;
  padding: 1.25rem 3rem;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--teal-950);
  padding-block: 3rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer__logo {
  width: auto;
  height: 56px;
}

.footer__copy {
  margin: 0;
  font-size: .8125rem;
  color: rgba(243, 240, 233, .5);
}

/* ============================================================
   DOBRA — PROVA SOCIAL (carrossel de placas)
   Portado de referencia-julho/styles.min.css (.marquee/.track/.placard/
   .proof*), com tokens adaptados: --gold, --ivory, --teal-950, Playfair/Inter.
   ============================================================ */

.proof {
  position: relative;
  overflow: hidden;
}

.proof__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 10%, rgba(179, 162, 117, .16) 0%, transparent 42%),
    radial-gradient(circle at 14% 95%, rgba(179, 162, 117, .12) 0%, transparent 45%);
}

.proof .container,
.proof .marquee {
  position: relative;
  z-index: 1;
}

.proof__sub {
  max-width: 640px;
  margin: 1rem auto 0;
  color: rgba(243, 240, 233, .7);
}

/* <em> dourado no H2 */
#prova-placas h2 em {
  color: var(--gold);
  font-style: italic;
}

/* linha de estatísticas (porta .proof__stats da referência) */
.proof__stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
  margin: 40px 0 56px;
  padding: 0;
}

.proof__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.proof__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

.proof__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(243, 240, 233, .6);
}

/* --- CARROSSEL full-bleed (regras portadas 1:1, só tokens adaptados) --- */
.marquee {
  overflow: hidden;
  width: 100%;
  margin-top: 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.track {
  list-style: none;
  display: flex;
  gap: 24px;
  width: max-content;
  margin: 0;
  padding: 0;
  animation: marquee-scroll 42s linear infinite;
}

.marquee:hover .track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}

.placard {
  position: relative;
  flex-shrink: 0;
  width: 300px;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 18px 40px rgba(16, 42, 44, .45);
}

.placard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.placard__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(16, 42, 44, .85) 0%, transparent 45%);
}

.placard__pill {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .12);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .18);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--ivory);
}

.placard__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(179, 162, 117, .8);
}

@media (max-width: 680px) {
  .placard { width: 230px; }
  .track { animation-duration: 32s; }
}

/* prefers-reduced-motion: sem animação, vira faixa rolável (porta da referência) */
@media (prefers-reduced-motion: reduce) {
  .track { animation: none; }
  .marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
            mask-image: none;
  }
}

/* ============================================================
   DOBRA — PRINTS DE WHATSAPP (galeria masonry)
   Portado de .testi__gallery/.testi__card; 3→2→1 colunas.
   ============================================================ */

.testi__sub {
  max-width: 600px;
  margin: 1rem auto 0;
  color: rgba(16, 42, 44, .7);
}

.testi__gallery {
  column-count: 1;
  column-gap: 24px;
}

@media (min-width: 620px) {
  .testi__gallery { column-count: 2; }
}

@media (min-width: 980px) {
  .testi__gallery { column-count: 3; }
}

.testi__card {
  break-inside: avoid;
  margin: 0 0 24px;
  padding: 8px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-reveal), box-shadow .3s var(--ease-reveal);
}

.testi__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testi__card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius-card) - 6px);
}

/* ============================================================
   JUNÇÕES DE FUNDO (contraste entre seções vizinhas)
   ============================================================ */

/* qualificacao(ivory) → dor: faixa de transição (~140px) ivory→white */
#dor.section--white {
  background: linear-gradient(180deg, var(--ivory) 0, var(--white) 140px);
}

/* prints: white levemente texturizado, para destacar dos vizinhos ivory */
#prints.section--white {
  background-color: var(--white);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='pn'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23pn)' opacity='0.045'/%3E%3C/svg%3E");
}

/* ============================================================
   CTAs INTERMEDIÁRIOS (inline)
   ============================================================ */

.cta-inline {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

/* microtexto adapta ao fundo da seção (claro/escuro) via currentColor */
.cta-inline__micro {
  margin: 0 0 1rem;
  font-size: .9375rem;
  color: currentColor;
  opacity: .62;
}

/* ============================================================
   CTA FLUTUANTE MOBILE
   ============================================================ */

.floating-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom, 0px));
  background: rgba(16, 42, 44, .92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(179, 162, 117, .3);
  transform: translateY(110%);
}

.floating-cta.is-visible {
  transform: translateY(0);
}

.floating-cta .btn-cta {
  width: 100%;
  min-height: 52px;
  padding: .9rem 1.5rem;
}

@media (prefers-reduced-motion: no-preference) {
  .floating-cta {
    transition: transform .35s var(--ease-reveal);
  }
}

@media (max-width: 860px) {
  .floating-cta {
    display: block;
  }

  /* compensa a barra fixa para não cobrir conteúdo/rodapé */
  body.has-floating-cta {
    padding-bottom: 78px;
  }
}

/* ============================================================
   POLIMENTO PREMIUM
   ============================================================ */

/* @property para a borda viva da oferta (fallback: sem suporte = arco estático) */
@property --angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

/* 4. Barra de progresso de leitura (logo abaixo da deadline-bar) */
.reading-progress {
  position: fixed;
  top: 52px;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 101;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

@media (max-width: 640px) {
  .reading-progress { top: 48px; }
}

/* 3. Sublinhado nos H2 de .section-head (estático por padrão; anima com JS) */
.section-head h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin: 1rem auto 0;
  border-radius: 2px;
  background: var(--gold);
}

/* 5. Lightbox dos prints */
.testi__zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  border-radius: calc(var(--radius-card) - 6px);
}

.lightbox {
  max-width: min(92vw, 900px);
  max-height: 90vh;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(16, 42, 44, .72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.lightbox__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
}

.lightbox__close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--teal-950);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

/* -------- efeitos gated (só com no-preference) -------- */
@media (prefers-reduced-motion: no-preference) {

  /* 1. Linha do roadmap que se desenha com o scroll */
  @supports (animation-timeline: view()) {
    .timeline::before {
      transform: translateX(-50%) scaleY(0);
      transform-origin: top;
      animation: timeline-draw linear both;
      animation-timeline: view();
      animation-range: entry 8% cover 52%;
    }
    @keyframes timeline-draw {
      to { transform: translateX(-50%) scaleY(1); }
    }
  }

  /* 1b. Nós acendem quando o card revela (JS adiciona .is-lit) */
  .js .timeline__node {
    border-color: rgba(179, 162, 117, .3);
    transition: border-color .5s var(--ease-reveal), box-shadow .5s var(--ease-reveal);
  }
  .js .timeline__item.is-lit .timeline__node {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(179, 162, 117, .55);
  }

  /* 2. Borda viva no card da oferta (conic girando ~8s) */
  .oferta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: 20px;
    padding: 1px;
    background: conic-gradient(from var(--angle),
      transparent 0deg, transparent 250deg,
      rgba(179, 162, 117, .85) 320deg, transparent 360deg);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    animation: oferta-border 8s linear infinite;
  }
  @keyframes oferta-border {
    to { --angle: 360deg; }
  }

  /* 3. Sublinhado dos H2 anima ao revelar */
  .js .section-head h2::after {
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .6s var(--ease-reveal) .15s;
  }
  .js .section-head.is-visible h2::after {
    transform: scaleX(1);
  }

  /* 5. Entrada do lightbox */
  .lightbox[open] {
    animation: lightbox-in .25s var(--ease-reveal);
  }
  @keyframes lightbox-in {
    from { opacity: 0; transform: scale(.96); }
    to { opacity: 1; transform: scale(1); }
  }
}

/* ============================================================
   INTERAÇÕES GLOBAIS
   ============================================================ */

/*
   REVEAL ON SCROLL
   - Motion usa a propriedade independente `translate` + `animation`,
     nunca `transform` — assim não conflita com hover dos cards nem parallax.
   - Estado inicial só existe quando há JS (.js) e sem reduced-motion,
     evitando conteúdo invisível se o JS falhar ou o usuário pedir menos movimento.
*/
@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal],
  .js [data-reveal-group] > * {
    opacity: 0;
  }

  .js [data-reveal].is-visible,
  .js [data-reveal-group].is-visible > * {
    animation: reveal-in .7s var(--ease-reveal) both;
  }

  /* Stagger entre irmãos: 80ms incremental, máx 5, depois zera */
  .js [data-reveal-group].is-visible > *:nth-child(1) { animation-delay: 0ms; }
  .js [data-reveal-group].is-visible > *:nth-child(2) { animation-delay: 80ms; }
  .js [data-reveal-group].is-visible > *:nth-child(3) { animation-delay: 160ms; }
  .js [data-reveal-group].is-visible > *:nth-child(4) { animation-delay: 240ms; }
  .js [data-reveal-group].is-visible > *:nth-child(5) { animation-delay: 320ms; }
  .js [data-reveal-group].is-visible > *:nth-child(n+6) { animation-delay: 0ms; }

  @keyframes reveal-in {
    from { opacity: 0; translate: 0 24px; }
    to   { opacity: 1; translate: 0 0; }
  }
}

/*
   PARALLAX (desktop ≥1024px, apenas glows e foto — nunca texto)
   - JS escreve --parallax-y; o transform é composto aqui para preservar
     centralizações existentes (ex.: translateX(-50%) no glow do CTA final).
*/
@media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
  .hero__glow,
  .oferta-card__glow,
  .sobre__frame {
    transform: translate3d(0, var(--parallax-y, 0), 0);
  }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */

@media (max-width: 860px) {
  .dor {
    grid-template-columns: 1fr;
  }

  .pilares-grid {
    grid-template-columns: 1fr;
  }

  .jornada-grid {
    grid-template-columns: 1fr;
  }

  .acomp-grid,
  .depo-grid {
    grid-template-columns: 1fr;
  }

  .sobre {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sobre__frame {
    margin-inline: auto;
  }

  .sobre__mission {
    text-align: left;
  }

  .bonus-card {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.25rem 1.35rem;
  }

  .bonus-card__body {
    flex-basis: 100%;
    order: 2;
  }

  .bonus-card__free {
    order: 1;
  }

  .urgencia-list {
    grid-template-columns: 1fr;
  }

  /* Timeline: linha à esquerda, cards à direita */
  .timeline::before {
    left: 10px;
  }

  .timeline__item,
  .timeline__item:nth-child(odd),
  .timeline__item:nth-child(even) {
    width: 100%;
    left: 0;
    padding-left: 2.75rem;
    padding-right: 0;
    text-align: left;
  }

  .timeline__item:nth-child(odd) .timeline__node,
  .timeline__item:nth-child(even) .timeline__node {
    left: 10px;
    right: auto;
    transform: translateX(-50%);
  }

  .dor__media {
    order: -1;
    max-width: 480px;
    margin-inline: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__sub {
    margin-inline: auto;
  }

  .hero__logo {
    margin-inline: auto;
  }

  /* vídeo empilha DEPOIS do CTA */
  .hero__media {
    order: 3;
  }

  .hero__glow {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .btn-cta {
    width: 100%;
    min-height: 56px;
  }

  .deadline-bar {
    min-height: 48px;
  }

  .deadline-bar__inner {
    gap: .6rem;
  }

  .deadline-bar__label {
    font-size: .6875rem;
    letter-spacing: .04em;
  }

  .countdown {
    gap: .35rem;
  }

  .countdown__num {
    font-size: 1.1rem;
  }
}

/* Reduz movimento para quem prefere */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn-cta,
  .btn-cta::after {
    transition: none;
  }
}
