/* ============================================================
   Biscoitos Caseiros — Bia Nocete
   Premium landing page design system
   ============================================================ */

:root {
  /* Surfaces */
  --bg:           #FAF8F6;
  --bg-warm:      #FBF1EC;
  --surface:      #FFFFFF;
  --surface-soft: #FCF5F1;

  /* Ink */
  --ink:        #2C2421;
  --ink-strong: #1F1916;
  --ink-soft:   #7B6C63;
  --ink-faint:  #A89A91;

  /* Warm accents */
  --coral:        #C56A4B;   /* highlighted words + icon stroke   */
  --coral-deep:   #B05B3D;
  --coral-light:  #E3A487;
  --peach:        #F4D2C0;
  --rose:         #EFC6C0;
  --champagne:    #F3E5D6;
  --pink-soft:    #FBE8E0;   /* badge + icon chip bg              */
  --pink-tint:    #FDF3EE;

  /* Gradients */
  --grad-cta:    linear-gradient(135deg, #E7A684 0%, #D2825E 55%, #C06C49 100%);
  --grad-soft:   linear-gradient(135deg, #FCEDE6 0%, #FBE3DA 100%);
  --grad-text:   linear-gradient(120deg, #D2825E 0%, #C0573A 100%);

  /* Lines */
  --hair: #EFE6DF;
  --hair-warm: #F1DED4;

  /* Shadows — soft, layered, warm-tinted */
  --sh-sm:  0 2px 8px rgba(120, 80, 60, 0.05);
  --sh-md:  0 10px 30px rgba(140, 90, 65, 0.08);
  --sh-lg:  0 24px 60px rgba(140, 90, 65, 0.12);
  --sh-glass: 0 20px 50px rgba(150, 95, 70, 0.14), inset 0 1px 0 rgba(255,255,255,0.6);

  /* Radii */
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Type */
  --font-global: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
  --serif:  var(--font-global);
  --sans:   var(--font-global);
  --script: var(--font-global);

  --maxw: 1180px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* ---------- Layout helpers ---------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
}
section { position: relative; }

/* ---------- Type ---------- */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink-strong);
  margin: 0;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(36px, 4.1vw, 50px); line-height: 1.2; }
h2 { font-size: clamp(30px, 3.6vw, 44px); line-height: 1.12; }
h3 { font-size: 21px; line-height: 1.25; }

p { margin: 0; text-wrap: pretty; }
.lede { color: var(--ink-soft); font-size: 17px; line-height: 1.7; }

.hl {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Eyebrow badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  background: var(--pink-soft);
  color: var(--coral);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(197,106,75,0.10);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r-pill);
  transition: transform .25s cubic-bezier(.2,.8,.3,1), box-shadow .25s ease;
}
.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  font-size: 14px;
  padding: 17px 28px;
  box-shadow: 0 14px 30px rgba(200,120,90,0.35), inset 0 1px 0 rgba(255,255,255,0.35);
  border: none;
  outline: none;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 44px rgba(200,120,90,0.42), inset 0 1px 0 rgba(255,255,255,0.35); }

/* Legenda de preço abaixo dos botões de CTA que não têm valor por perto */
.cta-price-note {
  margin: 10px 0 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-strong);
  text-align: center;
}
.cta-price-note strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
}
.cta-price-note span {
  font-weight: 500;
  color: var(--ink-soft);
}
/* Dentro de containers flex com gap, a margem própria duplicaria o espaçamento */
.proof-cta .cta-price-note,
.cta-right .cta-price-note {
  margin-top: 0;
}
.btn-primary .arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}
.btn-primary .arrow svg { width: 14px; height: 14px; }
.btn-full { width: 100%; }

/* trust line */
.trust {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--ink-soft); font-size: 13.5px; font-weight: 600;
}
.trust svg { width: 16px; height: 16px; color: var(--coral); }

/* ---------- Icon chip ---------- */
.chip {
  width: 52px; height: 52px; border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, #FDEFE9 0%, #FBE2D8 100%);
  box-shadow: var(--sh-sm), inset 0 1px 0 rgba(255,255,255,0.7);
  color: var(--coral);
  flex: none;
}
.chip svg { width: 23px; height: 23px; stroke-width: 1.6; }
.chip-sm { width: 44px; height: 44px; border-radius: 14px; }
.chip-sm svg { width: 18px; height: 18px; }

/* ---------- Generic card ---------- */
.card {
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  border: 1px solid rgba(255,255,255,0.7);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 0 0 80px;
  overflow: hidden;
}
/* warm glow background + hero photo */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(250,248,246,0.92) 0%, rgba(250,248,246,0.85) 48%, rgba(250,248,246,0.25) 72%, rgba(250,248,246,0) 100%),
    url('assets/foto-hero01.webp') center right / cover no-repeat;
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-countdown { display: none; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 52px;
  align-items: center;
}
/* Left column */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-badge {
  margin-bottom: 18px;
  background: transparent;
  box-shadow: none;
  text-transform: capitalize;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 12px;
}
.hero-h1     { margin: 0 0 30px; padding-bottom: 8px; }
.hero-lede   { max-width: 460px; margin: 0; }
.hero-cta    { margin-bottom: 6px; margin-top: -10px; }
.hero-cards-flags { height: 20px; width: auto; margin-bottom: 10px; opacity: 0.85; }
.hero-trust  { align-self: flex-start; }

.hero-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-bottom: 14px;
  width: fit-content;
}

.hero-price-from {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink);
}

.hero-price-from s {
  text-decoration-color: var(--ink);
}

.hero-price-label {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink);
}

.hero-price-value {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink-strong);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-price-install {
  font-family: var(--sans);
  font-size: clamp(11px, 1.45svh, 13px);
  color: var(--ink);
  width: 100%;
}
/* Right column */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.expert-card { align-self: flex-end; }

.mini-benes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 16px;
  margin: 30px 0 34px;
  max-width: 540px;
}
.mini-bene {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12px; font-weight: 700; color: var(--ink);
  line-height: 1.3;
}
.mini-bene svg { width: 17px; height: 17px; color: var(--coral); flex: none; }

.hero-cta {
  margin-bottom: 16px;
  margin-top: -10px;
  background: rgba(197, 106, 75, 0.45);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.hero-cta:hover { background: rgba(197, 106, 75, 0.6); }

/* Right column: video + expert */
.hero-media { display: grid; gap: 22px; }

.video-frame {
  --vr: 22px; /* raio do vídeo, usado também pelo halo abaixo */
  --vg: 10px; /* distância do halo em relação à borda do vídeo */
  position: relative;
  border-radius: var(--vr);
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}
.video-screen {
  position: relative;
  border-radius: inherit;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: transparent;
  box-shadow: 0 12px 30px rgba(120,75,55,0.25), inset 0 0 0 1px rgba(120,75,55,0.08);
}
/* Borda esfumaçada coral só no vídeo da hero: o raio do halo é calculado
   a partir do raio real do vídeo (--vr), então nunca fica desalinhado
   dele nem deixa "buraco" nos cantos em nenhum breakpoint */
.video-frame::before {
  content: "";
  position: absolute;
  inset: calc(var(--vg) * -1);
  border-radius: calc(var(--vr) + var(--vg));
  background: var(--coral);
  filter: blur(18px);
  opacity: 0.55;
}
.video-frame .video-screen {
  position: relative;
  border-radius: var(--vr);
  box-shadow:
    0 12px 30px rgba(120,75,55,0.25),
    inset 0 0 0 1px rgba(120,75,55,0.08),
    0 0 0 2px rgba(197,106,75,0.4);
}
.video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: inherit;
}
.video-screen image-slot { width: 100%; height: 100%; }

/* Facade: thumbnail clicável que carrega o vídeo */
.video-facade { cursor: pointer; }
.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.video-facade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,18,16,0) 40%, rgba(26,18,16,0.35) 100%);
  border-radius: inherit;
  transition: background .3s ease;
}
.video-facade:hover::after { background: linear-gradient(180deg, rgba(26,18,16,0.1) 0%, rgba(26,18,16,0.4) 100%); }
.video-facade.loaded::after { display: none; }
.video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 2;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.video-facade:hover .video-play { transform: scale(1.1); }
.video-play svg { color: var(--coral-deep); margin-left: 4px; }
.video-facade:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }

.play-btn {
  position: absolute; inset: 0; margin: auto;
  width: 78px; height: 78px; border-radius: 50%;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(6px);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
  transition: transform .25s ease;
}
.play-btn:hover { transform: scale(1.07); }
.play-btn svg { width: 26px; height: 26px; color: var(--coral-deep); margin-left: 3px; }
/* video controls bar */
.video-bar {
  position: absolute; left: 14px; right: 14px; bottom: 0;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  color: #fff; font-size: 12.5px; font-weight: 600;
  background: linear-gradient(0deg, rgba(40,25,18,0.55), rgba(40,25,18,0));
}
.video-bar .mini-play { display: flex; }
.video-bar svg { width: 16px; height: 16px; }
.v-track { flex: 1; height: 4px; border-radius: 4px; background: rgba(255,255,255,0.35); position: relative; }
.v-track::before { content:""; position:absolute; left:0; top:0; bottom:0; width:34%; background:#fff; border-radius:4px; }
.v-track::after { content:""; position:absolute; left:34%; top:50%; width:10px; height:10px; border-radius:50%; background:#fff; transform:translate(-50%,-50%); }
.v-right { display: flex; align-items: center; gap: 14px; }

/* Expert card under video */
.expert-card {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.72) 0%, rgba(251,224,216,0.6) 100%);
  backdrop-filter: blur(16px);
  box-shadow: var(--sh-glass);
  border: 1px solid rgba(255,255,255,0.7);
  max-width: 380px;
  margin-left: auto;
}
.expert-card image-slot { width: 60px; height: 60px; flex: none; }
.expert-card .ec-name { display: flex; align-items: center; gap: 7px; font-weight: 800; color: var(--ink-strong); font-size: 16px; }
.expert-card .ec-name svg { width: 16px; height: 16px; color: #4FA3DE; }
.expert-card .ec-sub { font-size: 12.5px; color: var(--ink-soft); line-height: 1.45; margin-top: 2px; }

/* ============================================================
   BENEFITS
   ============================================================ */
.section-pad { padding: 56px 0; }

/* Desktop: normal grid, hide duplicates */
/* Marquee de benefícios — faixa translúcida no final do hero */
.hero-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  grid-column: 1 / -1;
  order: -1;
  margin-top: 0;
  margin-bottom: 32px;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.benefits-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.hero-marquee:hover .benefits-track,
.hero-marquee:active .benefits-track {
  animation-play-state: paused;
}
.bene-dup { display: block; }
.bene-card {
  flex: 0 0 auto;
  max-width: 280px;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
.bene-card h3 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 4px;
  line-height: 1.25;
  color: var(--ink-strong);
  text-shadow: 0 1px 6px rgba(255,255,255,0.85);
}
.bene-card p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  text-shadow: 0 1px 6px rgba(255,255,255,0.85);
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .benefits-track { animation: none; }
}

/* ============================================================
   TRECHO DE AULA
   ============================================================ */
.lesson-preview {
  height: 100svh;
  padding: 32px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(244, 210, 192, 0.48), transparent 28%),
    radial-gradient(circle at 92% 82%, rgba(239, 198, 192, 0.36), transparent 26%),
    var(--surface-soft);
  border-top: 1px solid rgba(197, 106, 75, 0.08);
  border-bottom: 1px solid rgba(197, 106, 75, 0.08);
}
.lesson-preview > .wrap {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(480px, 1.18fr);
  grid-template-areas:
    "head video"
    "bottom video";
  align-items: center;
  gap: 28px 54px;
}
.lesson-preview::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: 120px;
  left: -190px;
  border: 1px solid rgba(197, 106, 75, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(197, 106, 75, 0.035);
  pointer-events: none;
}
.lesson-preview-head {
  grid-area: head;
  max-width: 500px;
  margin: 0;
  text-align: left;
}
.lesson-preview-head .badge { margin-bottom: 14px; }
.lesson-preview-head h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3vw, 42px);
}
.lesson-preview-head .lede {
  max-width: 500px;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}
.lesson-preview-card {
  grid-area: video;
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: 0;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 28px 70px rgba(123, 78, 58, 0.16);
}
.lesson-video-shell {
  padding: 6px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(197, 106, 75, 0.18), rgba(255, 255, 255, 0.7));
}
.lesson-video-shell .video-screen {
  border-radius: 20px;
  box-shadow: none;
}
.lesson-video-shell .video-poster,
.lesson-video-shell .video-iframe,
.lesson-video-shell .video-facade::after {
  border-radius: 20px;
}
.lesson-video-caption {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 13px 14px 5px;
  color: var(--ink-soft);
  font-size: 14px;
}
.lesson-video-caption strong {
  color: var(--ink-strong);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}
.lesson-caption-kicker {
  padding: 5px 10px;
  border-radius: var(--r-pill);
  background: var(--pink-soft);
  color: var(--coral-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lesson-preview-bottom {
  grid-area: bottom;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 18px;
  max-width: 500px;
  margin: 0;
}
.lesson-preview-copy {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}
.lesson-preview-copy strong {
  color: var(--coral-deep);
  font-weight: 800;
}
.lesson-preview-question {
  padding: 7px 0 3px;
  color: var(--ink-strong);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
}
.lesson-preview-cta {
  width: fit-content;
  white-space: nowrap;
  padding: 15px 24px;
}

/* ============================================================
   APRENDER
   ============================================================ */
.learn-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 44px;
  align-items: start;
}
.learn-copy h2 { margin: 20px 0 18px; }
.learn-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 15px; }
.learn-list li { display: flex; align-items: center; gap: 13px; font-size: 15px; font-weight: 600; color: var(--ink); }
.learn-list .tick {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  background: var(--grad-cta);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(200,120,90,0.3);
}
.learn-list .tick svg { width: 14px; height: 14px; color: #fff; stroke-width: 3; }

.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* Seção usa mais largura de tela: menos sobra nas laterais em telas grandes */
section[data-screen-label="O que vai aprender"] .wrap { max-width: 1600px; }

@media (min-width: 981px) {
  .cat-grid { grid-template-columns: repeat(7, 1fr); }
  .cat-card img { height: 120px; }
  .cat-card .cat-name {
    padding: 10px 8px;
    font-size: 12.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.cat-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--sh-md);
  border: 1px solid rgba(255,255,255,0.8);
  transition: transform .3s cubic-bezier(.2,.8,.3,1), box-shadow .3s ease;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.cat-card img { width: 100%; height: 152px; object-fit: cover; display: block; }
.cat-card .cat-name { text-align: center; font-family: var(--sans); font-size: 15px; font-weight: 600; color: var(--ink-strong); padding: 13px 8px 15px; }
.cat-more { text-align: center; color: var(--ink-soft); font-size: 14px; margin-top: 22px; font-style: italic; }
.cat-card-empty .cat-placeholder {
  width: 100%; height: 152px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-soft);
  color: var(--ink-faint);
  font-size: 13px; font-weight: 700; font-style: italic;
  letter-spacing: 0.05em;
}

/* ============================================================
   APOSTILA SCROLL STORYTELLING
   ============================================================ */
.apostila-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
}
.apostila-section::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 50% at 20% 30%, rgba(244,196,205,0.35) 0%, transparent 60%),
    radial-gradient(55% 55% at 80% 70%, rgba(243,213,196,0.30) 0%, transparent 55%);
  pointer-events: none;
}
.ap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

/* Left: sticky mockup */
.ap-left {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* 3D Book Mockup (CSS) */
.ap-book {
  position: relative;
  width: 280px;
  perspective: 900px;
}
.ap-book-inner {
  position: relative;
  transform: rotateY(-12deg) rotateX(3deg);
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.2,.8,.3,1);
  border-radius: 8px;
  box-shadow:
    12px 14px 40px rgba(140,90,65,0.25),
    -3px 0 12px rgba(140,90,65,0.08);
}
.ap-book-inner:hover { transform: rotateY(-6deg) rotateX(1deg) scale(1.03); }
.ap-book-cover {
  width: 100%;
  border-radius: 8px;
  display: block;
}
/* Book spine effect */
.ap-book-inner::before {
  content: "";
  position: absolute;
  left: -6px; top: 2%; bottom: 2%;
  width: 12px;
  background: linear-gradient(90deg, rgba(180,130,100,0.35), rgba(180,130,100,0.08));
  border-radius: 4px 0 0 4px;
  transform: translateZ(-4px);
}
/* Book page edges */
.ap-book-inner::after {
  content: "";
  position: absolute;
  right: -4px; top: 4px; bottom: 4px;
  width: 8px;
  background: repeating-linear-gradient(180deg, #faf6f2 0px, #efe8e0 1px, #faf6f2 2px);
  border-radius: 0 3px 3px 0;
}

/* Badges */
.ap-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.ap-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);
  box-shadow: var(--sh-sm), inset 0 1px 0 rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 800;
  color: var(--ink-strong);
}
.ap-badge svg { width: 16px; height: 16px; color: var(--coral); }

/* Right: chapters */
.ap-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 0;
}
.ap-chapter {
  padding: 28px 30px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--sh-sm);
  transition: all .4s cubic-bezier(.2,.8,.3,1);
  opacity: 0.35;
  transform: translateY(8px) scale(0.97);
}
.ap-chapter.ap-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  background: rgba(255,255,255,0.82);
  box-shadow: var(--sh-md), inset 0 1px 0 rgba(255,255,255,0.9);
  border-color: rgba(197,106,75,0.15);
}
.ap-chapter.ap-past {
  opacity: 0.45;
  transform: translateY(-4px) scale(0.98);
}
.ap-chapter.ap-future {
  opacity: 0.25;
  transform: translateY(12px) scale(0.96);
}
.ap-chapter-num {
  font-size: clamp(11px, 1.45svh, 13px);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 6px;
}
.ap-chapter-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink-strong);
  line-height: 1.25;
}
.ap-chapter-desc {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-top: 8px;
}

/* Lock state */
.ap-locked {
  /* During lock, prevent browser scroll */
}

/* Scroll hint */
.ap-scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-faint);
  font-size: 12px;
  font-weight: 600;
  animation: apBounce 2s ease-in-out infinite;
}
.ap-scroll-hint svg { width: 16px; height: 16px; }
@keyframes apBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---- Mobile ---- */
@media (max-width: 980px) {
  .apostila-section { min-height: auto; padding: 64px 0; }
  .ap-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .ap-left {
    position: relative;
    top: auto;
    transform: none;
  }
  .ap-book { width: 200px; margin: 0 auto; }
  .ap-scroll-hint { display: none; }

  /* Chapters → horizontal carousel */
  .ap-right {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 10px 0 10px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    scrollbar-width: none;
  }
  .ap-right::-webkit-scrollbar { display: none; }
  .ap-chapter {
    flex: 0 0 75%;
    scroll-snap-align: start;
    opacity: 1;
    transform: none;
    text-align: left;
  }
  .ap-chapter.ap-active,
  .ap-chapter.ap-past,
  .ap-chapter.ap-future {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   EXPERT
   ============================================================ */
.expert-section {
  padding: 60px 0;
  background-color: #FBF1EC;
}
.expert-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  grid-template-rows: auto auto 1fr;
  grid-template-areas:
    "photo badge"
    "photo title"
    "photo text";
  column-gap: 64px;
  align-items: center;
}
.expert-badge { grid-area: badge; align-self: end; justify-self: start; }
.expert-h2 { grid-area: title; margin: 16px 0 18px !important; }
.expert-photo-wrap { grid-area: photo; }
.expert-text { grid-area: text; align-self: start; }
.expert-photo-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.expert-glow { display: none; }
.expert-img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
}
.float-badge {
  position: absolute;
  right: -28px; top: 50%; transform: translateY(-50%);
  width: 138px; height: 138px; border-radius: 50%;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  box-shadow: var(--sh-glass);
  border: 1px solid rgba(255,255,255,0.8);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 14px;
  z-index: 2;
}
.float-badge .fb-num { font-family: var(--sans); font-size: 30px; font-weight: 700; color: var(--coral); line-height: 1; }
.float-badge .fb-unit { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-strong); margin-bottom: 6px; }
.float-badge .fb-txt { font-size: 10.5px; color: var(--ink-soft); line-height: 1.35; }

.expert-text h2 { margin: 20px 0 18px; }
.expert-quote {
  font-size: 18px;
  font-weight: 600;
  color: var(--coral-deep);
  line-height: 1.6;
  margin-top: 20px;
}
.expert-quote strong { font-weight: 700; }
.expert-highlights { display: flex; gap: 30px; flex-wrap: wrap; margin: 30px 0 26px; }
.eh { display: flex; align-items: flex-start; gap: 11px; max-width: 200px; }
.eh .chip-sm {
  background: linear-gradient(150deg,#FDEFE9,#FBE2D8);
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.eh-txt { font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.35; }
.signature { font-family: var(--script); font-size: 46px; color: var(--coral-deep); line-height: 1; }

/* ============================================================
   PROVAS SOCIAIS
   ============================================================ */
.proof-section {
  padding: 40px 0;
  background-color: #FFFFFF;
}
.proof-head { text-align: center; margin-bottom: 28px; }
.proof-head h2 { margin: 12px 0 10px; font-size: clamp(22px, 2vw, 26px); }
.proof-head .lede { max-width: 56ch; margin: 0 auto; font-size: 13.5px; }

/* Carrossel arrastável: mostra 3 por vez, arrasta para ver as 6 */
.proof-track {
  display: flex;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 4px;
  padding: 4px 4px 12px;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.proof-track:active { cursor: grabbing; }
.proof-track::-webkit-scrollbar { height: 4px; }
.proof-track::-webkit-scrollbar-thumb { background: rgba(214,130,94,0.3); border-radius: 999px; }
.proof-track::-webkit-scrollbar-track { background: transparent; }

.proof-card {
  flex: 0 0 calc((100% - 36px) / 3);
  scroll-snap-align: start;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  border: none;
  transition: transform 300ms ease-out;
}
.proof-card:hover {
  transform: translateY(-4px);
}
.proof-card picture,
.proof-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--coral);
  margin: 12px 0 0;
}
.proof-hint svg { width: 14px; height: 14px; }

.proof-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.proof-cta-text {
  font-family: var(--sans);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 600;
  color: var(--ink-strong);
  margin: 0;
  text-align: center;
}
.proof-cta-btn { padding: 14px 32px; }

/* ============================================================
   GARANTIA — Conversão + urgência premium
   ============================================================ */
.guarantee-section {
  padding: 56px 0;
  background: var(--grad-cta);
  position: relative;
  overflow: hidden;
}
.guarantee-container {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.guarantee-content { padding: 0; }

/* Badge: "Garantia" */
.guarantee-content .badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}

/* Título: "Risco Zero para Você!" */
.guarantee-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.8vw, 42px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2;
  text-wrap: balance;
}

/* Subtítulo: "Garantia incondicional!" em script */
.guarantee-subtitle {
  font-family: var(--script);
  font-size: 26px;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  margin: 0 0 20px;
  line-height: 1.2;
}

/* Texto descritivo */
.guarantee-text {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  margin: 0 0 32px;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}
.guarantee-text strong { font-weight: 700; color: rgba(255,255,255,0.98); }

/* Box de oferta: "OFERTA POR TEMPO LIMITADO" */
.guarantee-offer {
  margin: 32px 0;
  padding: 0;
}
.offer-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.74);
  margin: 0 0 8px;
  display: block;
}
.offer-price {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1;
}
.price-value {
  font-size: 32px;
  color: rgba(255,255,255,0.96);
  font-weight: 800;
}

/* Animação: Border glow girando */
@keyframes border-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(197,106,75,0.7), inset 0 0 10px rgba(197,106,75,0.3);
  }
  50% {
    box-shadow: 0 0 20px 2px rgba(197,106,75,0.5), inset 0 0 10px rgba(197,106,75,0.2);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(197,106,75,0), inset 0 0 10px rgba(197,106,75,0.3);
  }
}

/* Animação: Pulse glow do botão (fallback) */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(0,0,0,0.2), 0 0 0 0 rgba(197,106,75,0.5);
  }
  50% {
    box-shadow: 0 8px 24px rgba(0,0,0,0.2), 0 0 0 14px rgba(197,106,75,0);
  }
}

/* Botão: CTA branco com efeito WhatsApp-style */
.guarantee-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--coral);
  padding: 16px 30px;
  margin: 24px 0 0;
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all 200ms ease-out;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  animation: border-glow 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.guarantee-btn:hover {
  background: rgba(255,255,255,0.98);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25), 0 0 0 0 rgba(197,106,75,0.5);
  animation: none;
}
.guarantee-btn:active {
  transform: translateY(-1px);
  animation: none;
}
.guarantee-btn:focus {
  outline: none;
}

/* Seção de pagamento */
.guarantee-payment {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.payment-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.76);
  margin: 0 0 14px;
  display: block;
  letter-spacing: 0.03em;
}
.payment-cards {
  display: inline-block;
  max-width: 300px;
  width: 100%;
}
.payment-cards img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: 56px 0 64px; text-align: center; }
.faq-head { text-align: center; margin-bottom: 44px; }
.faq-head h2 { margin-top: 18px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; text-align: left; max-width: 980px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border-radius: 18px;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--hair);
  overflow: hidden;
  transition: box-shadow .25s ease;
}
.faq-item.open { box-shadow: var(--sh-md); }
.faq-q {
  width: 100%; text-align: left;
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 15px; font-weight: 700; color: var(--ink-strong);
  padding: 20px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-q .pm {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--pink-soft); color: var(--coral);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .3s ease, background .3s ease;
}
.faq-q .pm svg { width: 20px; height: 20px; }
.faq-item.open .pm { transform: rotate(135deg); background: var(--grad-cta); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 22px 22px; color: var(--ink-soft); font-size: 14px; line-height: 1.6; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { padding: 30px 0 80px; }
.cta-block {
  position: relative;
  border-radius: var(--r-xl);
  padding: 50px 56px;
  background:
    radial-gradient(80% 120% at 0% 0%, rgba(247,213,200,0.9) 0%, rgba(247,213,200,0) 60%),
    radial-gradient(90% 130% at 100% 100%, rgba(244,196,205,0.7) 0%, rgba(244,196,205,0) 55%),
    var(--surface-soft);
  box-shadow: var(--sh-lg);
  border: 1px solid rgba(255,255,255,0.8);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.cta-block h2 { font-size: clamp(26px, 3vw, 36px); }
.cta-block .lede { margin-top: 16px; max-width: 420px; }
.cta-right { display: flex; flex-direction: column; align-items: stretch; gap: 22px; }
.cta-trust { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   OFERTA
   ============================================================ */
.offer-section {
  background: var(--ink-strong);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.offer-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(197,106,75,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.offer-header {
  text-align: center;
  margin-bottom: 48px;
}

.offer-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 14px;
}

.offer-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: #FAF8F6;
  line-height: 1.2;
  margin: 0;
}

.offer-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 340px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral-light), var(--coral), var(--coral-deep));
}

/* Itens */
.offer-items {
  padding: 48px 48px 48px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.offer-check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 1px;
}

.offer-item-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.offer-item-text strong {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-strong);
  line-height: 1.3;
}

.offer-item-text span {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.offer-item--bonus .offer-item-text strong {
  color: var(--coral);
}

/* Bloco de preço */
.offer-price-block {
  background: #FAF8F6;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 8px;
  border-left: 1px solid rgba(31,25,22,0.08);
}

.offer-total-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 4px;
}

.offer-from {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
}

.offer-from s {
  color: var(--ink-faint);
}

.offer-by {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-top: 8px;
}

.offer-price {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  letter-spacing: -0.02em;
}

.offer-installments {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.offer-installments strong {
  color: var(--ink);
}

.offer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 20px;
  background: var(--coral);
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: background 150ms ease-out, transform 150ms ease-out;
  text-align: center;
  line-height: 1;
}

.offer-cta:hover {
  background: var(--coral-deep);
  transform: translateY(-1px);
}

.offer-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  width: 100%;
}

.offer-trust span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-soft);
}

.offer-trust svg {
  color: var(--coral);
  flex-shrink: 0;
}

/* Responsivo */
@media (max-width: 860px) {
  .offer-card {
    grid-template-columns: 1fr;
  }
  .offer-price-block {
    border-left: none;
    border-top: 1px solid rgba(31,25,22,0.08);
    padding: 40px 32px;
  }
  .offer-items {
    padding: 40px 32px;
  }
}

@media (max-width: 620px) {
  .offer-section {
    padding: 40px 0;
  }
  .offer-header {
    margin-bottom: 24px;
  }
  .offer-eyebrow {
    font-size: 10px;
  }
  .offer-heading {
    font-size: 22px;
  }
  .offer-card {
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  }
  .offer-items {
    padding: 20px 16px;
    gap: 12px;
  }
  .offer-item {
    gap: 10px;
  }
  .offer-check {
    width: 20px;
    height: 20px;
  }
  .offer-item-text strong {
    font-size: 13px;
  }
  .offer-item-text span {
    display: none;
  }
  .offer-price-block {
    padding: 20px 16px;
    gap: 4px;
  }
  .offer-total-label {
    font-size: 10px;
  }
  .offer-from {
    font-size: 13px;
  }
  .offer-by {
    font-size: 12px;
    margin-top: 4px;
  }
  .offer-price {
    font-size: 32px;
  }
  .offer-installments {
    font-size: 12px;
    margin-bottom: 14px;
  }
  .offer-cta {
    font-size: 13px;
    padding: 14px 12px;
    gap: 8px;
    white-space: nowrap;
  }
  .offer-trust {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
  }
  .offer-trust span {
    font-size: 11px;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 56px 0 40px; border-top: 1px solid var(--hair); background: var(--bg-warm); position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.brand-mark { display: flex; align-items: center; gap: 14px; }
.brand-monogram {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--coral-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 18px; color: var(--coral);
  flex: none;
}
.brand-name { font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--ink-strong); letter-spacing: 0.02em; }
.brand-sub { font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; margin-top: 2px; }
.footer-tag { color: var(--ink-soft); font-size: 14px; margin: 18px 0 22px; max-width: 240px; }
.socials { display: flex; gap: 12px; }
.social {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--pink-soft); color: var(--coral);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease, background .2s ease;
}
.social:hover { transform: translateY(-3px); background: var(--coral-light); color: #fff; }
.social svg { width: 18px; height: 18px; }
.foot-col h4 { font-family: var(--sans); font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-strong); margin: 6px 0 18px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.foot-col a { color: var(--ink-soft); text-decoration: none; font-size: 14px; transition: color .2s ease; }
.foot-col a:hover { color: var(--coral); }
.copyright { text-align: center; color: var(--ink-faint); font-size: 12.5px; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--hair); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---------- Desktop (>620px) ---------- */
@media (min-width: 621px) {
  .hero { margin-top: -48px; }
}

/* ---------- Tablet (≤980) ---------- */
@media (max-width: 980px) {
  .wrap { padding: 0 24px; }

  /* Hero: headline → video → sub → CTA → security → mini-benes → expert */
  .hero::before {
    background:
      radial-gradient(60% 55% at 82% 8%,  rgba(244,196,205,0.55) 0%, rgba(244,196,205,0) 60%),
      radial-gradient(50% 50% at 12% 0%,  rgba(247,224,210,0.55) 0%, rgba(247,224,210,0) 55%),
      radial-gradient(70% 60% at 95% 60%, rgba(243,213,196,0.40) 0%, rgba(243,213,196,0) 55%);
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    align-items: center;
  }
  .hero-left, .hero-right { display: contents; }
  .hero-badge  { display: none; }
  .hero-h1     { order: 1; font-size: clamp(32px, 7.5vw, 46px); line-height: 1.1; }
  .hero-lede   { order: 2; max-width: none; }
  .video-frame { order: 3; align-self: stretch; }
  .hero-price  { order: 4; width: 100%; }
  .hero-cta    { order: 5; width: 100%; }
  .hero-cards-flags { order: 5; align-self: center; }
  .hero-trust  {
    order: 6;
    margin-top: -16px;
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 600;
  }
  .hero-trust svg { width: 15px; height: 15px; color: var(--ink-soft); }
  .mini-benes  { order: 7; max-width: none; justify-content: center; display: none; }
  .expert-card { order: 8; max-width: none; align-self: stretch; justify-content: center; }
  .hero-marquee { order: -1; }

  .lesson-preview {
    padding: 24px 0;
  }
  .lesson-preview > .wrap {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "video"
      "bottom";
    justify-items: center;
    align-content: center;
    gap: 20px;
  }
  .lesson-preview-head {
    max-width: 700px;
    text-align: center;
  }
  .lesson-preview-head .lede {
    max-width: 660px;
    margin: 0 auto;
  }
  .lesson-preview-card {
    max-width: 600px;
  }
  .lesson-preview-bottom {
    grid-template-columns: 1fr;
    max-width: 700px;
    gap: 16px;
    text-align: center;
  }
  .lesson-preview-cta {
    width: fit-content;
    justify-self: center;
  }

  /* Center all section headings & text on mobile */
  .learn-grid { grid-template-columns: 1fr; gap: 40px; }
  .learn-copy { text-align: left; }
  .learn-copy .lede { margin: 0; font-size: 15px; }
  .learn-copy .badge { margin: 0; }
  .learn-list { justify-items: start; }
  .learn-list li { justify-content: flex-start; text-align: left; }
  .cat-more { text-align: center; }

  /* Coluna única: badge → título → foto → texto */
  .expert-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-template-areas: none;
    gap: 16px;
    text-align: center;
  }
  /* Reset das áreas para fluir na ordem do HTML */
  .expert-badge,
  .expert-h2,
  .expert-photo-wrap,
  .expert-text { grid-area: auto; }
  .expert-badge { justify-self: center; align-self: auto; }
  .expert-h2 { margin: 4px 0 6px !important; }
  .expert-photo-wrap { margin: 8px 0; }
  .expert-text { text-align: center; margin-top: 8px; }
  .expert-text .lede { margin: 0 auto; }
  .expert-highlights { justify-content: center; }
  .eh { text-align: left; }
  .signature { text-align: center; }

  .faq-head { text-align: center; }
  .cta-block { text-align: center; }
  .cta-block .lede { margin: 16px auto 0; }

  .float-badge { right: 20px; top: auto; bottom: -28px; transform: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .cta-block { grid-template-columns: 1fr; gap: 28px; padding: 40px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  /* Provas sociais: carrossel horizontal arrastável */
  .proof-section { padding: 44px 0; }
  .proof-head { margin-bottom: 28px; }
  .proof-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 0 20px;
    padding: 4px 20px 16px;
    margin: 0 -20px;
  }
  .proof-track::-webkit-scrollbar { display: none; }
  .proof-track { scrollbar-width: none; }
  .proof-card {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }
  .proof-cta { margin-top: 24px; gap: 14px; }
  .proof-cta-btn { width: 100%; }

  /* Mobile: Garantia */
  .guarantee-section { padding: 40px 0; }
  .guarantee-content .badge { margin-bottom: 12px; }
  .guarantee-title { font-size: clamp(28px, 6vw, 36px); margin-bottom: 8px; }
  .guarantee-subtitle { font-size: 22px; margin-bottom: 16px; }
  .guarantee-text { font-size: 14px; margin-bottom: 24px; }
  .guarantee-offer { padding: 18px 16px; margin: 24px 0; }
  .offer-price { font-size: 20px; }
  .price-value { font-size: 28px; }
  .guarantee-btn { width: 100%; padding: 12px 20px; font-size: 14px; gap: 8px; white-space: nowrap; letter-spacing: -0.3px; }
  .guarantee-payment { margin-top: 20px; padding-top: 20px; }
  .payment-cards { max-width: 260px; }
}

/* Reduced motion: remover animações em prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  @keyframes pulse-glow {
    0%, 100% {
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }
  }
  .guarantee-btn {
    animation: pulse-glow 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }
  .guarantee-btn:hover {
    transform: none;
  }
  .guarantee-btn:active {
    transform: none;
  }
}

/* ---------- Mobile (≤620) ---------- */
@media (max-width: 620px) {
  body { font-size: 16px; }

  /* Global mobile tokens */
  .wrap { padding: 0 20px; }
  /* Hero mantém tamanho fixo: mover elementos não encolhe a seção */
  .hero {
    padding: 16px 0 20px;
    display: flex;
    align-items: flex-start;
    min-height: 100svh;
  }
  .hero::before {
    display: none;
  }
  .hero::after {
    display: none;
  }
  .hero .wrap { width: 100%; }
  /* Título sobe; subtítulo e vídeo agrupados logo abaixo */
  .hero-grid { gap: 6px; }
  .hero-h1 { margin: 0 0 4px; padding-bottom: 0; }
  .hero-lede   { margin-top: -4px; margin-bottom: 8px; line-height: 1.24; }
  /* Vídeo um pouco menor (mantém a ordem original) para que tudo do
     cronômetro até "Compra 100% segura" caiba na tela sem rolar */
  .video-frame {
    margin-top: 4px; width: 92%; margin-left: auto; margin-right: auto;
    --vr: 16px; --vg: 8px;
    border-radius: var(--vr);
  }
  .video-frame .video-screen,
  .video-frame .video-iframe,
  .video-frame .video-poster,
  .video-frame .video-facade::after {
    border-radius: var(--vr);
  }
  .video-frame::before { filter: blur(14px); }
  .section-pad, .expert-section, .faq-section, .final-cta { padding: 48px 0; }

  .lesson-preview {
    height: auto;
    min-height: 100svh;
    padding: 24px 0;
    overflow: visible;
  }
  .lesson-preview > .wrap {
    min-height: calc(100svh - 48px);
    padding: 0 16px;
    align-content: center;
    gap: 12px;
  }
  .lesson-preview-head {
    margin: 0;
  }
  .lesson-preview-head .badge {
    margin-bottom: 9px;
    padding: 5px 12px;
    font-size: 10px;
  }
  .lesson-preview-head h2 {
    margin-bottom: 9px;
    font-size: clamp(25px, 7.4vw, 30px);
    line-height: 1.08;
  }
  .lesson-preview-head .lede {
    max-width: 350px;
    font-size: 15px;
    line-height: 1.45;
  }
  .lesson-preview-card {
    width: min(100%, 420px);
    margin: 0;
    padding: 6px;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(123, 78, 58, 0.14);
  }
  .lesson-video-shell {
    padding: 2px;
    border-radius: 14px;
  }
  .lesson-video-shell .video-screen,
  .lesson-video-shell .video-poster,
  .lesson-video-shell .video-iframe,
  .lesson-video-shell .video-facade::after {
    border-radius: 12px;
  }
  .lesson-video-shell .video-play {
    width: 48px;
    height: 48px;
  }
  .lesson-video-caption {
    grid-template-columns: auto 1fr;
    justify-items: start;
    gap: 3px 9px;
    padding: 9px 9px 5px;
    text-align: center;
    font-size: 11px;
  }
  .lesson-video-caption > span:last-child {
    grid-column: 2;
    text-align: left;
  }
  .lesson-video-caption strong {
    align-self: center;
    font-size: 14px;
    line-height: 1.2;
    text-align: left;
  }
  .lesson-caption-kicker {
    grid-row: 1 / span 2;
    align-self: center;
    margin: 0;
    padding: 4px 7px;
    font-size: 9px;
  }
  .lesson-preview-bottom {
    max-width: 420px;
    margin: 0;
    gap: 12px;
  }
  .lesson-preview-copy {
    gap: 6px;
    font-size: 14px;
    line-height: 1.42;
  }
  .lesson-preview-question {
    padding: 4px 0 0;
    font-size: 19px;
    line-height: 1.2;
  }
  .lesson-preview-cta {
    width: 100%;
    white-space: nowrap;
    min-height: 48px;
    padding: 12px 14px;
    font-size: 13px;
  }

  /* Buttons: 56px height, 20px radius */
  .btn-primary { padding: 12px 20px; font-size: 14px; min-height: 48px; border-radius: 16px; width: 100%; }

  /* Hero CTA menor e proporcional */
  .hero-cta {
    width: auto;
    align-self: center;
    margin-top: 0;
  }
  .hero-cta .arrow { width: 26px; height: 26px; }
  .hero-cta .arrow svg { width: 13px; height: 13px; }

  /* Preço hero centralizado em mobile */
  .hero-price {
    align-self: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    margin-bottom: 3px;
  }
  .hero-price-install {
    text-align: center;
  }
  .hero-cta { margin-bottom: 4px; }
  .hero-cards-flags { margin-bottom: 3px; }

  /* Marquee de benefícios escondido no mobile, substituído pelo cronômetro */
  .hero-marquee { display: none; }

  /* Cronômetro de oferta no topo da hero (mobile): estilo flip clock */
  .hero-countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    order: -1;
    gap: 5px;
    width: 100%;
    margin-bottom: 3px;
  }
  .hero-countdown-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--coral-deep);
  }
  .hero-countdown-icon { width: 13px; height: 13px; flex: none; color: var(--coral); }

  .flip-clock {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
  }
  .flip-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  .flip-unit-label {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral-deep);
  }
  .flip-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--grad-cta);
    border-radius: 9px;
    box-shadow:
      0 8px 18px rgba(193, 105, 73, 0.32),
      inset 0 1px 0 rgba(255, 255, 255, 0.35);
    overflow: hidden;
  }
  .flip-card-digit {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 1px 2px rgba(120, 60, 40, 0.25);
  }
  .flip-card--ms {
    width: 36px;
    height: 36px;
    background: var(--surface);
    border: 1.5px solid rgba(197, 106, 75, 0.35);
    box-shadow: 0 4px 10px rgba(120, 70, 50, 0.12);
  }
  .flip-card--ms .flip-card-digit { font-size: 15px; color: var(--coral-deep); text-shadow: none; }

  .flip-sep {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 54px;
    padding: 0 1px;
  }
  .flip-sep::before,
  .flip-sep::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--coral-deep);
  }

  /* Compra segura centralizado em mobile */
  .hero-trust {
    align-self: center;
    text-align: center;
    margin-top: 3px;
  }

  /* Final CTA button */
  .final-cta .btn-primary {
    padding: 10px 16px;
    font-size: 13px;
    min-height: 40px;
    white-space: nowrap;
    border-radius: 16px;
  }

  /* Cards & elements: 20px radius */
  .bene-card, .cat-card, .faq-item, .expert-card, .cta-block { border-radius: 20px; }
  .video-screen { border-radius: 16px; }

  /* Mini benefits: 2 cols */
  .mini-benes { grid-template-columns: 1fr 1fr; }

  /* ===== HERO MARQUEE — ajustes mobile ===== */
  .hero-marquee {
    margin-top: -24px;
    margin-bottom: 24px;
    padding: 16px 0;
    border-radius: 16px;
  }
  .benefits-track {
    gap: 28px;
    animation-duration: 28s;
  }
  .bene-card {
    max-width: 220px;
    padding: 0 4px;
  }

  /* ===== PRODUCT GALLERIES → ALWAYS 2 COLUMNS ===== */
  .cat-grid { grid-template-columns: 1fr 1fr !important; gap: 10px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .brand-mark + .footer-tag { grid-column: 1 / -1; }
}

/* ---------- Small phones (≤420) ---------- */
@media (max-width: 420px) {
  /* Mini-benes can stack */
  .mini-benes { grid-template-columns: 1fr 1fr; }

  /* Product gallery: ALWAYS 2 columns (never 1) */
  .cat-grid { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 620px) {
  section[data-screen-label="O que vai aprender"] { padding: 36px 0; }
  .learn-grid { gap: 26px; }
  .learn-copy h2 { margin: 12px 0 12px; }
  .learn-copy .lede { font-size: 13.5px; line-height: 1.55; }
  .learn-list { display: none; }
  .cat-card .cat-name { padding: 10px 8px 12px; }
  .cat-more { margin-top: 14px; }

  .expert-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px 10px; }
  .eh { max-width: none; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
  .eh-txt { white-space: normal; font-size: 13px; line-height: 1.3; }
  .eh .chip-sm { width: 40px; height: 40px; border-radius: 13px; }
  .eh .chip-sm svg { width: 19px; height: 19px; }
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(37,211,102,0.42), inset 0 1px 0 rgba(255,255,255,0.3);
  z-index: 950;
  transition: transform .25s cubic-bezier(.2,.8,.3,1), opacity .3s ease, visibility .3s ease;
  -webkit-tap-highlight-color: transparent;
  /* Oculto na hero; aparece a partir da seção de baixo */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px) scale(0.85);
}
.wa-float.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.wa-float.is-visible:hover { transform: scale(1.08); }
.wa-float svg { width: 33px; height: 33px; }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.45);
  animation: waPulse 2.6s ease-out infinite;
}
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}


@media (max-width: 620px) {
  .wa-float { width: 56px; height: 56px; }
  .wa-float svg { width: 30px; height: 30px; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float::after { animation: none; }
}

/* ---------- Popup de inatividade (mobile): modal centralizado ---------- */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}
.exit-popup[hidden] { display: none; }
.exit-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 25, 22, 0.55);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.exit-popup-card {
  position: relative;
  width: 100%;
  max-width: 290px;
  background: var(--surface);
  border-radius: var(--r-md);
  padding: 24px 20px 20px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  transform: scale(0.92);
  transition: transform 280ms cubic-bezier(.2,.8,.3,1);
}
.exit-popup-close {
  position: absolute;
  top: 10px; right: 10px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: none;
  background: rgba(31, 25, 22, 0.06);
  border-radius: 50%;
  color: var(--ink-soft);
  cursor: pointer;
}
.exit-popup-close svg { width: 16px; height: 16px; }
.exit-popup-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(197, 106, 75, 0.12);
  color: var(--coral-deep);
  margin: 0 auto 12px;
}
.exit-popup-icon svg { width: 21px; height: 21px; }
.exit-popup-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink-strong);
  margin: 0 0 6px;
}
.exit-popup-text {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.exit-popup-clock {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 800;
  color: var(--coral-deep);
  background: var(--bg);
  border: 1px solid rgba(197, 106, 75, 0.18);
  padding: 6px 16px;
  border-radius: var(--r-sm);
  font-variant-numeric: tabular-nums;
  margin-bottom: 16px;
}
.exit-popup-colon { padding: 0 2px; opacity: 0.55; }
.exit-popup-cta {
  width: 100%;
  font-size: 14px;
  min-height: 46px;
}

.exit-popup.is-open { opacity: 1; pointer-events: auto; }
.exit-popup.is-open .exit-popup-card { transform: scale(1); }

/* Pulsação sutil contínua enquanto o popup está aberto */
.exit-popup.is-open .exit-popup-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  animation: exitPopupPulse 2.6s ease-out infinite;
}
@keyframes exitPopupPulse {
  0%   { box-shadow: 0 0 0 0 rgba(197, 106, 75, 0.35); }
  70%  { box-shadow: 0 0 0 14px rgba(197, 106, 75, 0); }
  100% { box-shadow: 0 0 0 0 rgba(197, 106, 75, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .exit-popup.is-open .exit-popup-card::after { animation: none; }
}

@media (min-width: 621px) {
  .exit-popup { display: none !important; }
}

/* ============================================================
   APOSTILA — ÍNDICE EDITORIAL COM SCROLL STICKY
   Seção alta + container sticky 100vh. O scroll desliza a lista
   de 24 receitas dentro de uma janela; a esquerda fica fixa.
   ============================================================ */
.apz {
  position: relative;
  background: var(--bg);
  /* altura definida via JS no desktop; auto no mobile (abaixo) */
}
.apz-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.apz-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 75px;
  align-items: flex-start;
  width: 100%;
  padding-top: 20px;
}

/* ---------- Coluna esquerda (fixa) ---------- */
.apz-left { max-width: 420px; }
.apz-title {
  font-family: var(--serif);
  font-size: clamp(20px, 2.6vw, 29px);
  line-height: 1.3;
  color: var(--ink-strong);
  margin: 0 0 0 0;
  letter-spacing: -0.01em;
  text-wrap: nowrap;
}
.apz-title .hl {
  display: block;
  font-size: clamp(32px, 3.8vw, 46px);
  color: var(--coral);
  line-height: 1.1;
  margin: 4px 0 0 0;
}
.apz-divider {
  position: relative;
  margin: 10px auto 14px;
  height: 1px;
  background: var(--coral);
  opacity: 0.4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
}
.apz-divider::before {
  content: '♥';
  font-size: 14px;
  color: var(--coral);
  background: var(--bg);
  padding: 0 10px;
  position: relative;
  z-index: 1;
  opacity: 1;
}

.apz-lede {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  max-width: 70ch;
  margin-bottom: 36px;
}
.apz-lede strong { color: var(--coral); font-weight: 700; }

.apz-book {
  position: relative;
  perspective: 1400px;
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-left: -80px;
}
.apz-book-img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  transform: rotateY(-14deg) rotateX(3deg);
  filter: drop-shadow(28px 34px 48px rgba(120, 70, 50, 0.28));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.apz-book:hover .apz-book-img { transform: rotateY(-8deg) rotateX(2deg); }
.apz-book-note {
  font-family: var(--script);
  font-size: 22px;
  line-height: 1.3;
  color: var(--coral);
  text-align: center;
  max-width: 130px;
  flex: none;
  transform: rotate(-3deg);
  margin-top: 140px;
  margin-left: -120px;
}

/* ---------- Coluna direita (janela + lista) ---------- */
.apz-right { position: relative; }
.apz-viewport {
  position: relative;
  height: 650px;
  overflow: hidden;
  /* fade editorial nas bordas superior/inferior */
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 12%, #000 88%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0, #000 12%, #000 88%, transparent 100%);
}
.apz-list {
  list-style: none;
  margin: 0;
  padding: 0;
  will-change: transform;
}
.apz-row {
  padding: 20px 0;
  border-bottom: 1px solid rgba(31, 25, 22, 0.08);
}
.apz-row-name {
  font-family: var(--sans);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink-strong);
  letter-spacing: -0.01em;
}

/* CTA — largura total, abaixo do grid */
.apz-cta {
  text-align: center;
  margin-top: 32px;
}
.apz-cta p {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

/* ---------- Responsivo: tablet/mobile (sem trava) ---------- */
@media (max-width: 1024px) {
  .apz { height: auto !important; }
  .apz-sticky {
    position: static;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 72px 0;
  }
  .apz-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .apz-lede { margin-left: auto; margin-right: auto; }
  .apz-left { max-width: 560px; margin: 0 auto; text-align: center; }
  .apz-book { display: flex; justify-content: center; }
  .apz-viewport {
    height: auto;
    overflow: visible;
    -webkit-mask-image: none;
            mask-image: none;
  }
  .apz-list { transform: none !important; }
}

@media (max-width: 620px) {
  /* Hero CTA: sem transparência em mobile */
  .hero-cta {
    background: var(--coral);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border: none;
    color: #fff;
  }
  .hero-cta:hover { background: var(--coral-deep); }

  /* Apostila: coluna única — headline → imagem → lista → CTA */
  .apz-title { font-size: clamp(20px, 5vw, 26px); text-wrap: balance; }
  .apz-title .hl { font-size: clamp(24px, 6vw, 32px); }
  .apz-divider { margin: 8px auto 10px; }
  .apz-lede { font-size: 13px; margin: 0 auto; }

  .apz-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  /* Imagem abaixo da headline: livro centralizado, sem a notinha */
  .apz-left { max-width: none; margin: 0; text-align: center; }
  .apz-book {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-left: 0;
  }
  .apz-book-img {
    max-width: 170px;
    min-width: 0;
    width: 170px;
  }
  .apz-book-note { display: none; }

  /* Lista trava com scroll interno desde o início; CTA fica fora da janela */
  .apz-viewport {
    height: clamp(260px, calc(100svh - 360px), 400px);
    overflow-y: auto;
    -webkit-mask-image: none;
    mask-image: none;
    padding-right: 0;
  }
  .apz-list { transform: none !important; }

  /* CTA em coluna única no fim */
  .apz-cta { margin-top: 24px; }
  .apz-cta p { font-size: 14px; }
  .apz-cta .btn-primary { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .apz-book-img { transition: none; }
}

/* ============================================================
   VÍDEO AULAS — Video lessons section with tabs
   ============================================================ */
.vd {
  background-image: url("assets/planodefundoaulas.webp");
  background-size: 52%;
  background-position: right center;
  background-repeat: no-repeat;
  background-color: #FFFFFF;
  padding: 56px 0;
}

.vd-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: flex-start;
  overflow: hidden;
}

.vd-cta {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 8px;
}

.vd-cta-btn {
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
}

.vd-left {
  flex: 1;
  min-width: 0;
}

.vd-title {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 31px);
  font-weight: 700;
  color: var(--ink-strong);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

/* ─── Abas ─── */
.vd-tabs {
  position: relative;
}

.vd-tab-input {
  display: none;
}

.vd-tab-labels {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid rgba(31, 25, 22, 0.08);
  margin-bottom: 20px;
}

.vd-tab-label {
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: color 150ms ease-out, border-color 150ms ease-out, background-color 150ms ease-out;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.vd-tab-icon {
  width: 16px;
  height: 16px;
  flex: none;
}

.vd-tab-label:hover {
  color: var(--ink);
}

#vd-tab-1:checked ~ .vd-tab-labels label[for="vd-tab-1"],
#vd-tab-2:checked ~ .vd-tab-labels label[for="vd-tab-2"],
#vd-tab-3:checked ~ .vd-tab-labels label[for="vd-tab-3"],
#vd-tab-4:checked ~ .vd-tab-labels label[for="vd-tab-4"] {
  color: var(--coral);
  border-bottom-color: var(--coral);
  font-weight: 700;
}

.vd-tab-content {
  display: none;
  height: 360px;
  overflow-y: auto;
  padding-right: 12px;
}

#vd-tab-1:checked ~ .vd-tab-content:nth-child(6),
#vd-tab-2:checked ~ .vd-tab-content:nth-child(7),
#vd-tab-3:checked ~ .vd-tab-content:nth-child(8),
#vd-tab-4:checked ~ .vd-tab-content:nth-child(9) {
  display: block;
  animation: fadeIn 200ms ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.vd-block-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vd-row {
  padding: 11px 0;
  border-bottom: 1px solid rgba(31, 25, 22, 0.06);
}

.vd-row:last-child {
  border-bottom: none;
}

.vd-name {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.55;
}

.vd-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(197, 106, 75, 0.3) 50%, transparent 100%);
  margin: 24px 0;
}

.vd-subtitle {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--coral);
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 8px 0;
  border-left: 3px solid var(--coral);
  padding-left: 10px;
}

/* ─── Coluna Direita ─── */
.vd-right {
  flex: 1;
  height: 100%;
}
/* Picture tags: reset para se comportar como img */
picture { display: block; max-width: 100%; }
picture img { display: block; width: 100%; height: auto; }

.bonus-card-img picture { width: 100%; height: 100%; }
.bonus-card-img picture img { width: 100%; height: 100%; object-fit: cover; }
.apz-book-img { display: block; }
/* Foto da expert: respeita altura máxima, não estoura */
.expert-img { display: block; max-width: 100%; }
.expert-img img {
  width: auto;
  max-width: 100%;
  max-height: 520px;
  height: auto;
  object-fit: contain;
}

/* ─── Responsivo ─── */
@media (max-width: 1024px) {
  .vd {
    padding: 60px 0;
  }
  .vd-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .vd-title {
    font-size: clamp(22px, 3.2vw, 36px);
  }
}

@media (max-width: 620px) {
  .vd {
    padding: 32px 0;
    background-image:
      linear-gradient(180deg, rgba(250,248,246,0) 0%, rgba(250,248,246,1) 100%),
      url('assets/aulasmobile.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #FFFFFF;
  }
  .apostila-section {
    padding: 32px 0;
  }
  .vd-right {
    min-height: auto;
  }
  .vd-tab-labels {
    gap: 2px;
    margin-bottom: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .vd-tab-labels::-webkit-scrollbar {
    display: none;
  }
  .vd-tab-label {
    padding: 10px 10px;
    font-size: 12px;
    flex: 0 0 auto;
  }
  .vd-tab-icon {
    display: none;
  }
  /* Libera o scroll da página a partir de qualquer ponto da tela */
  .vd-wrap { overflow: visible; gap: 16px; }
  /* Coluna direita é decorativa (só fundo desktop) — esconde no mobile */
  .vd-right { display: none; }
  /* Scroll interno preenche o espaço disponível da tela */
  .vd-tab-content {
    height: clamp(280px, calc(100svh - 260px), 420px);
    overflow-y: auto;
    padding-right: 0;
  }
  .vd-row {
    padding: 12px 0;
  }
  .vd-name {
    font-size: 13px;
    line-height: 1.5;
  }
  /* CTA Button */
  .vd-cta {
    padding-top: 0;
    margin-top: 0;
  }
  .vd-cta-btn {
    padding: 12px 20px !important;
    font-size: 14px;
    min-height: 48px;
    width: 100%;
    box-sizing: border-box;
  }
}

/* ============================================================
   BÔNUS — layout editorial (imagem + conteúdo lado a lado)
   ============================================================ */
.bonus {
  position: relative;
  background-color: var(--bg);
  padding: 48px 0;
  overflow: hidden;
}
.bonus .wrap { max-width: 1600px; }
/* glow suave coral no topo da seção */
.bonus::before {
  content: "";
  position: absolute;
  top: -120px; left: 50%;
  width: 480px; height: 360px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(214,130,94,0.16) 0%, rgba(214,130,94,0) 70%);
  pointer-events: none;
}

.bonus-header {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.bonus-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(214,130,94,0.12);
  border: 1px solid rgba(214,130,94,0.22);
  color: var(--coral-deep);
  margin-bottom: 14px;
}
.bonus-icon svg { width: 22px; height: 22px; }

.bonus-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.bonus-eyebrow::before,
.bonus-eyebrow::after {
  content: "";
  width: 28px; height: 1px;
  background: rgba(197,106,75,0.45);
}

.bonus-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--ink-strong);
  line-height: 1.2;
  margin: 0;
  text-wrap: balance;
}
.bonus-script {
  display: block;
  font-family: var(--script);
  font-weight: 400;
  color: var(--coral);
  font-size: 1.35em;
  line-height: 1;
  margin-top: 4px;
}
.bonus-script::before { content: "♥ "; font-size: 0.5em; vertical-align: middle; opacity: 0.7; }
.bonus-script::after  { content: " ♥"; font-size: 0.5em; vertical-align: middle; opacity: 0.7; }

/* Cards — desktop: 3 colunas verticais em vidro fosco */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1500px;
  margin: 0 auto 32px;
}

.bonus-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  padding: 30px 20px 24px;
  box-shadow: 0 14px 36px rgba(120, 70, 50, 0.1);
  transition: transform 300ms ease-out, box-shadow 300ms ease-out;
}
.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(120, 70, 50, 0.16);
}

/* Badge circular sobreposto no canto */
.bonus-badge {
  position: absolute;
  top: -18px;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid rgba(214,130,94,0.4);
  box-shadow: 0 6px 14px rgba(120,70,50,0.14);
  line-height: 1;
}
.bonus-badge-label {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 2px;
}
.bonus-badge-num {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--coral-deep);
}

.bonus-card-img {
  width: 100%;
  height: 168px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bonus-card-img picture,
.bonus-card-img img {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 20px rgba(120,70,50,0.24));
}

.bonus-card-content {
  width: 100%;
}

.bonus-card-content h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-strong);
  margin: 0 0 8px;
  line-height: 1.25;
}

.bonus-description {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0 auto 16px;
  max-width: 26ch;
}

.bonus-price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--grad-cta);
  padding: 9px 24px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(200,120,90,0.28);
}
.bonus-price-old {
  font-weight: 500;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  text-decoration: line-through;
}

/* CTA Button */
.bonus-cta {
  max-width: 640px;
  margin: 0 auto;
}
.bonus-cta-highlight {
  text-align: center;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--coral-deep);
  margin: 0 0 16px;
}
.bonus-cta-highlight strong {
  font-weight: 800;
}
.bonus-button {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  line-height: 1;
  background: var(--grad-cta);
  color: #fff;
  border: none;
  border-radius: 18px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(200,120,90,0.32), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: transform 200ms ease-out, box-shadow 200ms ease-out;
}
.bonus-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(200,120,90,0.4), inset 0 1px 0 rgba(255,255,255,0.35);
}
.bonus-button-icon { display: inline-flex; }
.bonus-button-icon svg { width: 19px; height: 19px; }
.bonus-button-arrow {
  position: absolute;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
}
.bonus-button-arrow svg { width: 18px; height: 18px; }

/* Tablet/mobile: cards horizontais empilhados */
@media (max-width: 1024px) {
  .bonus-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 640px;
  }
}

@media (max-width: 768px) {
  .bonus-cards {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 560px;
  }
  .bonus-card {
    position: relative;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 24px;
    padding: 16px;
    border-radius: 20px;
  }
  /* Badge: pill sobre o topo da imagem */
  .bonus-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    flex-direction: row;
    gap: 5px;
    width: auto; height: auto;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid rgba(214,130,94,0.3);
    box-shadow: 0 4px 10px rgba(120,70,50,0.12);
    padding: 4px 11px;
    margin: 0;
  }
  .bonus-badge-label { font-size: 10px; margin-bottom: 0; letter-spacing: 0.06em; }
  .bonus-badge-num { font-size: 10px; font-weight: 800; color: var(--coral); }
  .bonus-card-img {
    flex: 0 0 92px;
    width: 92px;
    height: 120px;
    margin-bottom: 0;
  }
  .bonus-card-content h3 { font-size: 19px; margin-bottom: 6px; }
  .bonus-description { font-size: 13.5px; margin: 0 0 12px; max-width: none; }
  .bonus-price { font-size: 16px; padding: 8px 18px; }
}

@media (max-width: 620px) {
  .bonus {
    padding: 44px 0;
  }
  .bonus-header {
    margin-bottom: 28px;
  }
  .bonus-icon { width: 52px; height: 52px; margin-bottom: 14px; }
  .bonus-icon svg { width: 23px; height: 23px; }
  .bonus-eyebrow { font-size: 11px; letter-spacing: 0.16em; }
  .bonus-eyebrow::before, .bonus-eyebrow::after { width: 20px; }
  .bonus-title { font-size: clamp(24px, 6.5vw, 30px); }

  .bonus-cards { gap: 14px; margin-bottom: 28px; }
  .bonus-card { gap: 20px; padding: 14px; border-radius: 18px; }
  .bonus-card-img { flex: 0 0 84px; width: 84px; height: 110px; }
  .bonus-badge { top: 10px; left: 10px; padding: 3px 9px; }
  .bonus-badge-label, .bonus-badge-num { font-size: 9px; }
  .bonus-card-content h3 { font-size: 17px; margin-bottom: 5px; }
  .bonus-description { font-size: 13px; margin-bottom: 10px; }
  .bonus-price { font-size: 15px; padding: 6px 16px; }

  .bonus-button {
    padding: 12px 20px;
    font-size: 14px;
    gap: 8px;
    white-space: nowrap;
    border-radius: 20px;
  }
  .bonus-button-icon svg { width: 18px; height: 18px; }
  .bonus-button-arrow { right: 12px; width: 24px; height: 24px; }
  .bonus-button-arrow svg { width: 14px; height: 14px; }
}

/* ============================================================
   TESTE: VÍDEO AULAS EM CARDS
   Bloco isolado (classes .vdtest-*) só pra teste — apagar esse
   comentário até o fim do arquivo remove o teste inteiro sem
   afetar a seção .vd original.
   ============================================================ */
.vdtest {
  height: 100svh;
  padding: clamp(22px, 3.2svh, 38px) 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.vdtest .wrap {
  width: 100%;
  max-width: 1600px;
  height: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.vdtest-title {
  margin: 0 0 clamp(18px, 3svh, 28px);
  text-align: center;
  font-size: clamp(28px, 4.8svh, 42px);
  line-height: 1.12;
}

.vdtest-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  flex: 1 1 auto;
  gap: clamp(16px, 2vw, 28px);
  align-items: stretch;
  min-height: 0;
}

.vdtest-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: #fffdf8;
  border-radius: 14px;
  padding: clamp(34px, 4svh, 46px) clamp(18px, 2vw, 28px) clamp(22px, 3svh, 32px);
  box-shadow: 0 20px 44px rgba(44, 24, 16, 0.16);
}

.vdtest-tab {
  position: absolute;
  top: -14px;
  left: 20px;
  background: #8b4513;
  color: #fff;
  text-transform: uppercase;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 6px;
}

.vdtest-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}
.vdtest-list li {
  font-family: var(--sans);
  font-size: clamp(13px, 1.9svh, 16px);
  font-weight: 500;
  line-height: 1.34;
  color: var(--ink);
  padding: clamp(5px, 1svh, 10px) 0;
  border-bottom: 1px solid #e8dcc8;
}
.vdtest-list li:last-child { border-bottom: none; }
.vdtest-list li.vdtest-subtitle {
  border-bottom: none;
  margin-top: clamp(6px, 1svh, 10px);
  padding: clamp(6px, 1svh, 10px) 0 clamp(3px, 0.7svh, 6px);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(11px, 1.55svh, 13px);
  letter-spacing: 0.04em;
  color: var(--coral-deep);
}

/* Hint de arrastar: só aparece no carrossel mobile */
.vdtest-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 16px 0 0;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--coral);
}
.vdtest-hint svg {
  width: 15px;
  height: 15px;
  animation: vdtest-swipe 1.6s ease-in-out infinite;
}
@keyframes vdtest-swipe {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

@media (max-width: 900px) {
  /* Seção inteira ocupa 1 tela: título → cards → hint → CTA precisam caber */
  .vdtest {
    height: 100svh;
    padding: 16px 0 14px;
  }
  .vdtest .wrap { width: 100%; height: 100%; }
  .vdtest-title { margin: 0 0 30px; font-size: clamp(25px, 7.3vw, 34px); line-height: 1.08; }

  .vdtest-track {
    display: flex;
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding-top: 14px;
    padding-bottom: 10px;
    margin: -14px -20px 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .vdtest-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    border-radius: 4px 14px 14px 4px;
    padding: 28px 18px 16px;
  }
  /* Lista com altura travada e scroll interno: quem cresce é a lista, não a seção */
  .vdtest-list {
    flex: 1 1 auto;
    height: auto;
    padding-right: 6px;
  }
  .vdtest-tab { font-size: 12px; padding: 6px 14px; }
  .vdtest-list li { font-size: clamp(13px, 3.8vw, 16px); line-height: 1.28; padding: 6px 0; }
  .vdtest-list li.vdtest-subtitle { font-size: 11px; margin-top: 7px; padding: 8px 0 4px; }

  .vdtest-hint { display: flex; margin-top: 8px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .vdtest-hint svg { animation: none; }
}

/* ============================================================
   TESTE: APOSTILA (mesmo layout de cards do .vdtest)
   Reaproveita .vdtest-card / .vdtest-tab / .vdtest-list / .vdtest-cta —
   só o wrapper da seção é próprio (.apztest-*).
   ============================================================ */
.apztest { padding: 64px 0; text-align: center; }
.apztest-title { margin: 0 0 16px; }
.apztest-lede {
  max-width: 480px;
  margin: 0 auto 32px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}
.apztest-card {
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
}
.apztest-card .vdtest-list {
  columns: 2;
  column-gap: 32px;
}
.apztest-card .vdtest-list li {
  break-inside: avoid;
}
.apztest-more {
  margin: 20px 0 0;
  font-family: var(--sans);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 14px;
}

@media (max-width: 620px) {
  .apztest { padding: 48px 0; }
  .apztest-title { font-size: clamp(24px, 6.5vw, 30px); }
  .apztest-lede { font-size: 14px; margin-bottom: 24px; }
  .apztest-card .vdtest-list { columns: 1; }
}
