/* ============================================================
   ABC PARA KIDS — styles.css
   Mobile-first. Tokens → base → components → sections → utilities
   ============================================================ */

/* ── 0. LOCAL FONTS ─────────────────────────────────────────── */
@font-face {
  font-family: 'Fredoka One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/fredoka-one-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('assets/fonts/nunito-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('assets/fonts/nunito-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ── 1. TOKENS ─────────────────────────────────────────────── */
:root {
  --blue:        #1A73E8;
  --blue-soft:   #DCEBFB;
  --blue-dark:   #1A3A6B;
  --navy:        #14305A;
  --yellow:      #FBBC04;
  --green:       #34A853;
  --red:         #E5484D;
  --cta:         #FF6B00;
  --cta-2:       #FF8E2B;
  --cta-hover:   #F25E00;
  --ink:         #4A4A4A;
  --muted:       #6F7480;
  --bg:          #FFFFFF;
  --bg-alt:      #F2F8FF;
  --bg-warm:     #FFF9EC;
  --radius:      22px;
  --radius-sm:   14px;
  --shadow:      0 12px 32px rgba(26, 58, 107, .10);
  --shadow-hover:0 18px 44px rgba(26, 58, 107, .16);
  --shadow-btn:  0 8px 24px rgba(255, 107, 0, .35);
  --font-display: 'Fredoka One', 'Fredoka', system-ui, sans-serif;
  --font-body:    'Nunito', system-ui, sans-serif;
  --transition:  0.22s cubic-bezier(.4, 0, .2, 1);
}

/* ── 2. RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

ul { list-style: none; padding: 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  color: var(--blue-dark);
  text-wrap: balance;
}

h1 { font-size: clamp(2.2rem, 6.5vw, 3.6rem); letter-spacing: 0; }
h2 { font-size: clamp(1.7rem, 4.5vw, 2.6rem); letter-spacing: 0; }
h3 { font-size: clamp(1.1rem, 3vw, 1.35rem); font-weight: 600; }

p { max-width: 65ch; }

p,
li,
figcaption {
  text-wrap: pretty;
}

::selection { background: var(--yellow); color: var(--blue-dark); }

/* ── 3. LAYOUT ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.bg-default { background: var(--bg); }
.bg-alt     { background: var(--bg-alt); }
.bg-warm    { background: var(--bg-warm); }
.bg-kit-blue {
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, .16), transparent 30%),
    radial-gradient(circle at 90% 8%, rgba(251, 188, 4, .2), transparent 28%),
    linear-gradient(160deg, var(--blue) 0%, #2458BA 58%, var(--blue-dark) 100%);
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

/* Eyebrow — label above section titles */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #4D8BFF);
  border-radius: 50px;
  padding: 0.5rem 1.4rem;
  margin-bottom: 1.1rem;
  box-shadow: 0 8px 20px rgba(37, 99, 235, .3);
  transform: rotate(-1deg);
}

.eyebrow-red {
  background: linear-gradient(135deg, var(--red), #F0706F);
  box-shadow: 0 8px 20px rgba(229, 72, 77, .3);
}

.eyebrow-green {
  background: linear-gradient(135deg, var(--green), #3BC878);
  box-shadow: 0 8px 20px rgba(34, 169, 91, .3);
}

.eyebrow-yellow {
  color: var(--blue-dark);
  background: linear-gradient(135deg, var(--yellow), #FFB300);
  box-shadow: 0 8px 20px rgba(255, 179, 0, .35);
}

/* Scroll-reveal (JS adds .reveal; .in-view dispara a animação) */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 70ms; }
.reveal-delay-2 { transition-delay: 140ms; }
.reveal-delay-3 { transition-delay: 210ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── 4. BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.btn-cta {
  background: linear-gradient(135deg, var(--cta-2) 0%, var(--cta) 100%);
  color: #fff;
  box-shadow: var(--shadow-btn);
  position: relative;
}

.btn-cta:hover,
.btn-cta:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 32px rgba(255, 107, 0, .45);
  text-decoration: none;
  color: #fff;
}

.btn-cta:active {
  transform: translateY(0) scale(.99);
}

.btn-arrow {
  display: inline-block;
  flex: 0 0 auto;
  transition: transform var(--transition);
}

.btn-cta:hover .btn-arrow { transform: translateX(4px); }

.btn-sm  { padding: 0.5rem 1.1rem; font-size: 0.85rem; }
.btn-lg  { padding: 1.05rem 1.6rem; font-size: 1.02rem; width: 100%; max-width: 480px; letter-spacing: 0.01em; }
.btn-xl  { padding: 1.2rem 1.6rem; font-size: 1.05rem; width: 100%; max-width: 540px; letter-spacing: 0.01em; }
.btn-sticky { padding: 0.7rem 1.4rem; font-size: 0.9rem; flex: 1; min-height: 48px; }

.cta-label {
  display: inline-block;
}

.cta-label-mobile {
  display: none;
}

.cta-microcopy {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: -0.5rem;
}

.cta-microcopy s { opacity: .7; }
.cta-microcopy strong { color: var(--green); }

@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
  .btn-cta:hover { transform: none; }
  .btn-cta::after { display: none; }
  .cta-main, .cta-offer { animation: none; }
}

@media (max-width: 767px) and (prefers-reduced-motion: no-preference) {
  .btn-cta {
    animation: ctaGlowMobile 2.8s ease-in-out infinite;
  }

  .btn-cta::after {
    animation: ctaSheenMobile 4.4s ease-in-out infinite;
  }
}

@keyframes ctaGlowMobile {
  0%, 100% {
    box-shadow: 0 8px 22px rgba(255, 107, 0, .30);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 12px 30px rgba(255, 107, 0, .43);
    filter: brightness(1.03);
  }
}

@keyframes ctaSheenMobile {
  0%, 58% {
    transform: translateX(-86%) rotate(3deg);
  }
  82%, 100% {
    transform: translateX(86%) rotate(3deg);
  }
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── 5. HEADER ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20, 48, 107, .08);
  box-shadow: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
}

.header-inner > a:first-child {
  display: inline-flex;
  align-items: center;
}

.header-logo {
  width: auto;
  height: 36px;
}

.header-cta {
  display: none; /* show on larger screens, mobile uses sticky bar */
  color: var(--blue-dark);
  background: #fff;
  border: 1px solid rgba(20, 48, 107, .14);
  box-shadow: none;
  font-family: var(--font-body);
  font-weight: 800;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--blue-dark);
  background: var(--bg-alt);
  box-shadow: none;
  filter: none;
  transform: none;
}

/* ── 6. HERO ────────────────────────────────────────────────── */
.hero {
  background:
    radial-gradient(ellipse 70% 60% at 85% 10%, rgba(255, 201, 60, .22) 0%, transparent 55%),
    radial-gradient(ellipse 60% 70% at 5% 95%, rgba(37, 99, 235, .14) 0%, transparent 55%),
    linear-gradient(165deg, #EAF2FF 0%, #FFFFFF 70%);
  padding: 1.75rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}

/* Letras decorativas flutuantes */
.hero::before,
.hero::after {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 600;
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}

.hero::before {
  content: 'A';
  font-size: 11rem;
  color: rgba(37, 99, 235, .06);
  top: -2rem;
  right: 4%;
  transform: rotate(12deg);
}

.hero::after {
  content: 'b';
  font-size: 9rem;
  color: rgba(255, 165, 0, .09);
  bottom: -2.5rem;
  left: 2%;
  transform: rotate(-10deg);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

/* Page-load orquestrado: entrada escalonada do hero.
   Só roda quando o usuário não pede movimento reduzido — assim
   nunca há "flash" de conteúdo invisível para quem desativa animações. */
@media (prefers-reduced-motion: no-preference) {
  .hero-content > *,
  .hero-mockup {
    opacity: 0;
    animation: heroReveal 0.7s cubic-bezier(.2, .7, .2, 1) forwards;
  }

  .hero-content > .hero-badge { animation-delay: 0.05s; }
  .hero-content > h1          { animation-delay: 0.14s; }
  .hero-content > .method-badge { animation-delay: 0.24s; }
  .hero-content > .hero-sub   { animation-delay: 0.34s; }
  .hero-content > .hero-bullets { animation-delay: 0.44s; }
  .hero-content > .cta-main   { animation-delay: 0.54s; }
  .hero-content > .cta-microcopy { animation-delay: 0.62s; }
  .hero-content > .trust-line { animation-delay: 0.7s; }
  .hero-mockup                { animation-delay: 0.3s; }
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.3rem;
  align-self: flex-start;
  background: linear-gradient(135deg, #FFD43B 0%, #FFB800 100%);
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: 0 5px 14px rgba(251, 188, 4, .16);
  border-radius: 50px;
  padding: 0.28rem 0.68rem;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: left;
  color: var(--blue-dark);
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
}

.hero-content h1 {
  color: var(--blue-dark);
}

.hero-content h1 .hl {
  font-style: normal;
  color: var(--cta);
  position: relative;
  white-space: pre-wrap;
}

/* sublinhado "marca-texto" no destaque do título */
.hero-content h1 .hl::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.32em;
  background: rgba(255, 201, 60, .45);
  border-radius: 4px;
  z-index: -1;
}

/* Badge do mecanismo — diferencial acima da dobra */
.method-badge {
  display: inline-flex;
  flex-direction: column;
  align-self: flex-start;
  gap: 0.18rem;
  background: linear-gradient(135deg, var(--blue-dark) 0%, #2356B8 100%);
  color: #fff;
  border-radius: 17px;
  padding: 0.72rem 1.08rem;
  box-shadow: 0 12px 30px rgba(20, 48, 107, .18);
  position: relative;
  border: 1px solid rgba(255, 201, 60, .42);
  width: fit-content;
  max-width: 100%;
}

.method-badge-tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
}

.method-badge-main {
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 3.7vw, 1.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.method-badge-main .plus {
  color: var(--yellow);
  margin: 0 0.1rem;
}

.method-badge-sub {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .86);
}

.hero-sub {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--muted);
  max-width: 52ch;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.check {
  color: var(--green);
  font-weight: 700;
  font-size: 1.1em;
  flex-shrink: 0;
  margin-top: 0.05em;
}

.cta-main {
  margin-top: 0.5rem;
  text-align: center;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.75rem;
  font-size: 0.85rem;
  color: var(--blue-dark);
  font-weight: 700;
  max-width: 100%;
}

.trust-line span {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  background: #fff;
  border: 1px solid rgba(20, 48, 107, .12);
  border-radius: 50px;
  padding: 0.42rem 0.88rem;
  box-shadow: 0 6px 14px rgba(20, 48, 107, .06);
}

.trust-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 1rem;
  line-height: 1;
}

/* Hero mockup — no mobile aparece no topo (primeira coisa que o ad vê);
   no desktop vai para a coluna da direita (ver breakpoint 768px). */
.hero-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  order: -1;
  margin-bottom: 0.5rem;
}

.mockup-trust-line {
  display: none;
}

/* Hero fan — leque com as capas reais dos cadernos */
.hero-fan {
  --fan-card-top: 24px;
  --fan-card-width: 120px;
  --fan-mid-offset: 20px;
  --fan-mid-offset-neg: -20px;
  --fan-edge-offset: 58px;
  --fan-edge-offset-neg: -58px;
  --fan-hover-edge-offset: 66px;
  --fan-hover-edge-offset-neg: -66px;
  position: relative;
  width: 300px;
  height: 230px;
  margin: 0.5rem auto 0;
}

.hero-fan picture {
  display: contents;
}

.hero-fan .fan-card {
  position: absolute;
  top: var(--fan-card-top);
  left: 50%;
  width: var(--fan-card-width);
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
  transform-origin: bottom center;
  transition: transform 0.35s cubic-bezier(.2, .7, .2, 1);
}

.hero-fan .fan-1 { transform: translateX(-50%) rotate(-9deg) translateX(var(--fan-edge-offset-neg)); z-index: 1; }
.hero-fan .fan-2 { transform: translateX(-50%) rotate(-3deg) translateX(var(--fan-mid-offset-neg)); z-index: 2; }
.hero-fan .fan-3 { transform: translateX(-50%) rotate(3deg)  translateX(var(--fan-mid-offset));  z-index: 3; }
.hero-fan .fan-4 { transform: translateX(-50%) rotate(9deg)  translateX(var(--fan-edge-offset));  z-index: 4; }

.hero-fan:hover .fan-1 { transform: translateX(-50%) rotate(-11deg) translateX(var(--fan-hover-edge-offset-neg)) translateY(-4px); }
.hero-fan:hover .fan-4 { transform: translateX(-50%) rotate(11deg)  translateX(var(--fan-hover-edge-offset))  translateY(-4px); }

.fan-flag {
  position: absolute;
  top: -4px;
  right: 6px;
  z-index: 6;
  background: linear-gradient(135deg, var(--cta-2), var(--cta));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  border-radius: 50px;
  padding: 0.3rem 0.95rem;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(255, 107, 0, .4);
  transform: rotate(3deg);
}

.fan-count {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  background: var(--blue-dark);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  border-radius: 50px;
  padding: 0.32rem 0.9rem;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(20, 48, 107, .25);
}

@media (prefers-reduced-motion: reduce) {
  .hero-fan .fan-card { transition: none; }
}

/* Grid das 8 trilhas (Bloco 6 — Dentro do kit) */
.kit-grid-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  color: var(--blue-dark);
  text-align: center;
  margin: 1.5rem auto 1rem;
  max-width: 100%;
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 2rem;
}

.kit-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(20, 48, 107, .12);
  transition: transform var(--transition), box-shadow var(--transition);
}

.kit-grid-item {
  min-width: 0;
}

.kit-grid img:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(20, 48, 107, .2);
}

.contents h2 {
  color: #fff;
}

.contents .eyebrow {
  color: var(--blue-dark);
  background: linear-gradient(135deg, var(--yellow), #FFE070);
  box-shadow: 0 10px 24px rgba(251, 188, 4, .28);
}

.contents .kit-grid-title {
  color: rgba(255, 255, 255, .94);
}

.contents .kit-grid img {
  border: 2px solid rgba(255, 255, 255, .72);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .2);
}

.contents .kit-grid img:hover {
  box-shadow: 0 18px 36px rgba(0, 0, 0, .26);
}

/* Kit showcase — leque de capas + página de atividade impressa */
.kit-showcase {
  position: relative;
  width: 320px;
  height: 380px;
  margin: 0 auto;
}

.kit-flag {
  position: absolute;
  top: -8px;
  right: 4px;
  z-index: 6;
  background: linear-gradient(135deg, var(--cta-2), var(--cta));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  border-radius: 50px;
  padding: 0.35rem 1.1rem;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(255, 107, 0, .4);
  transform: rotate(3deg);
}

.kit-cover {
  position: absolute;
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(20, 48, 107, .22);
}

/* Capas de trás (leque) */
.kit-cover-back {
  top: 26px;
  left: 50%;
  width: 210px;
  height: 290px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 1rem;
}

.cover-spine-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: #fff;
  opacity: .9;
}

.kit-cover-c {
  background: linear-gradient(150deg, var(--green), #18814A);
  transform: translateX(-50%) rotate(-13deg) translateX(-46px);
}

.kit-cover-b {
  background: linear-gradient(150deg, var(--yellow), #F0A500);
  transform: translateX(-50%) rotate(-6deg) translateX(-18px);
}

.kit-cover-b .cover-spine-label { color: var(--blue-dark); }

/* Capa principal */
.kit-cover-main {
  top: 18px;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
  width: 222px;
  height: 300px;
  background: linear-gradient(160deg, #fff 0%, #EAF2FF 100%);
  border: 1px solid rgba(37, 99, 235, .1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem;
  z-index: 3;
  box-shadow: 0 22px 50px rgba(20, 48, 107, .25);
}

.cover-logo {
  max-height: 170px;
  width: auto;
}

.cover-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--blue-dark);
  text-align: center;
  line-height: 1.2;
}

/* Página de atividade na frente (preview do "que vou imprimir") */
.kit-page {
  position: absolute;
  bottom: 6px;
  right: -6px;
  z-index: 5;
  width: 158px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(20, 48, 107, .1);
  box-shadow: 0 16px 36px rgba(20, 48, 107, .26);
  padding: 0.85rem 0.9rem 1rem;
  transform: rotate(5deg);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.page-head {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cta);
}

.page-letter {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--blue-dark);
}

.page-syllables {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.page-syllables span {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--bg-alt);
  border-radius: 5px;
  padding: 0.12rem 0.32rem;
}

.page-trace {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.15rem;
}

.trace-line {
  height: 0;
  border-top: 2px dashed rgba(20, 48, 107, .25);
}

.kit-count {
  position: absolute;
  bottom: -10px;
  left: 0;
  z-index: 6;
  background: var(--blue-dark);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  border-radius: 50px;
  padding: 0.32rem 0.9rem;
  box-shadow: 0 8px 20px rgba(20, 48, 107, .25);
}

.kit-showcase:hover .kit-page {
  transform: rotate(5deg) translateY(-6px);
  transition: transform 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .kit-showcase:hover .kit-page { transform: rotate(5deg); }
}

/* ── 7. AGITATION ───────────────────────────────────────────── */
.agitation .section-intro,
.section-intro {
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.card-agitation {
  border-top: 5px solid var(--blue);
}

.card-agitation .card-tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--blue-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.card-mae .card-tag::before  { content: '👩'; font-size: 1.3rem; }
.card-prof .card-tag::before { content: '🏫'; font-size: 1.3rem; }

.card-agitation li {
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(20, 48, 107, .12);
  font-size: 0.97rem;
  color: var(--ink);
}

.card-agitation li:last-child { border-bottom: none; }

.highlight-box {
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-top: 2rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.highlight-relief {
  background: linear-gradient(135deg, rgba(37, 99, 235, .07), rgba(255, 201, 60, .1));
  border: 1.5px solid rgba(37, 99, 235, .15);
  color: var(--ink);
  font-size: 1.12rem;
  text-align: center;
}

.highlight-relief strong { color: var(--blue-dark); }

/* ── 8. VILLAIN — tabela comparativa ────────────────────────── */
.compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.compare-col {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1.5px solid rgba(20, 48, 107, .08);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.compare-bad { opacity: 0.96; }

.compare-win {
  border: 2px solid var(--green);
  box-shadow: 0 18px 44px rgba(34, 169, 91, .22);
  background: linear-gradient(170deg, #fff 0%, #F1FBF5 100%);
}

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

.compare-win:hover {
  box-shadow: 0 24px 54px rgba(34, 169, 91, .28);
}

.compare-flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green), #18814A);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 50px;
  padding: 0.35rem 1.1rem;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(34, 169, 91, .35);
}

.compare-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.15rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(20, 48, 107, .1);
}

.compare-icon {
  font-size: 1.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-alt);
  margin-bottom: 0.35rem;
}

.compare-bad .compare-icon { background: rgba(229, 72, 77, .1); }
.compare-win .compare-icon { background: rgba(34, 169, 91, .14); }

.compare-head strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--blue-dark);
}

.compare-win .compare-head strong { color: #157A40; }

.compare-sub {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

.compare-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.compare-col li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: var(--ink);
}

.compare-col .x,
.compare-col .v {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 0.15rem;
}

.compare-col .x { background: rgba(229, 72, 77, .13); color: var(--red); }
.compare-col .v { background: rgba(34, 169, 91, .15); color: #157A40; }

.compare-bad li { color: var(--muted); }
.compare-win li { font-weight: 600; }

.highlight-villain {
  background: rgba(229, 72, 77, .06);
  border: 1.5px solid rgba(229, 72, 77, .2);
  color: var(--ink);
  font-size: 1.05rem;
  text-align: center;
}

/* ── 9. MECHANISM ───────────────────────────────────────────── */
.mechanism h2 { margin-bottom: 0.5rem; }

.stepper {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 2.25rem 0;
  align-items: flex-start;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  width: 100%;
  border: 1.5px solid rgba(37, 99, 235, .14);
  box-shadow: 0 6px 18px rgba(20, 48, 107, .06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.step:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: 0 12px 28px rgba(20, 48, 107, .12);
}

.step-num {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--blue), #4D8BFF);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37, 99, 235, .3);
}

.step-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.step-body strong {
  font-family: var(--font-display);
  color: var(--blue-dark);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.step-body span {
  font-size: 0.92rem;
  color: var(--muted);
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--cta);
  font-weight: 700;
  padding: 0.2rem 0 0.2rem 1.25rem;
  transform: rotate(90deg);
  align-self: center;
}

.highlight-mechanism {
  background: linear-gradient(135deg, rgba(37, 99, 235, .06), rgba(34, 169, 91, .07));
  border: 1.5px solid rgba(34, 169, 91, .2);
  color: var(--ink);
  font-size: 1rem;
}

.highlight-mechanism > strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--blue-dark);
}

.highlight-mechanism p { max-width: 100%; margin-top: 0.5rem; }

.mechanism-note {
  font-size: 0.97rem;
  color: var(--muted);
  margin: 1.25rem 0 0;
  max-width: 70ch;
}

.mechanism-note-sm {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.75rem;
  max-width: 100%;
}

/* ── 10. QUALIFICATION ──────────────────────────────────────── */
.qualification-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.qualification-copy {
  max-width: 560px;
}

.desire-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.desire-card {
  position: relative;
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid rgba(26, 58, 107, .08);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 22px rgba(20, 48, 107, .07);
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.45;
  max-width: 100%;
  padding: 1.05rem 1.15rem 1.05rem 1.45rem;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.desire-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--blue), var(--green));
}

.desire-card:nth-child(3n)::before {
  background: linear-gradient(180deg, var(--yellow), var(--cta-2));
}

.desire-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(20, 48, 107, .11);
}

.desire-card strong {
  color: var(--blue-dark);
}

.desire-icon {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--blue);
  background: #EAF3FF;
  box-shadow: inset 0 0 0 1px rgba(26, 115, 232, .14), 0 8px 18px rgba(26, 115, 232, .08);
  line-height: 1;
}

.desire-icon svg {
  width: 1.7rem;
  height: 1.7rem;
  display: block;
}

.desire-card:nth-child(2) .desire-icon,
.desire-card:nth-child(5) .desire-icon,
.desire-card:nth-child(7) .desire-icon {
  color: var(--green);
  background: #EAF8EF;
  box-shadow: inset 0 0 0 1px rgba(52, 168, 83, .16), 0 8px 18px rgba(52, 168, 83, .08);
}

.desire-card:nth-child(3) .desire-icon,
.desire-card:nth-child(6) .desire-icon {
  color: #C47B00;
  background: #FFF2C8;
  box-shadow: inset 0 0 0 1px rgba(251, 188, 4, .24), 0 8px 18px rgba(251, 188, 4, .12);
}

.desire-card-wide {
  background:
    radial-gradient(circle at 92% 18%, rgba(251, 188, 4, .16), transparent 28%),
    linear-gradient(135deg, #fff 0%, #F7FBFF 100%);
}

/* ── 11. CONTENTS (what's inside) ───────────────────────────── */
.numbered-cards {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 2.25rem 0;
}

.numbered-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 201, 60, .35);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.numbered-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--yellow), var(--cta-2));
}

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

.card-thumb {
  position: relative;
  flex-shrink: 0;
}

.card-num {
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--yellow), #FFB300);
  color: var(--blue-dark);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(255, 179, 0, .4);
  border: 2px solid #fff;
}

/* Thumbnails de página interna (preview do conteúdo de cada módulo) */
.thumb-page {
  width: 92px;
  height: 110px;
  background: #fff;
  border: 1px solid rgba(20, 48, 107, .12);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(20, 48, 107, .14);
  padding: 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  overflow: hidden;
}

.thumb-fonetico {
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.tp-letter {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--blue-dark);
}

.tp-row {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--cta);
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.22rem;
  align-content: center;
}

.thumb-grid span {
  font-family: var(--font-display);
  font-size: 0.56rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--bg-alt);
  border-radius: 4px;
  padding: 0.16rem 0;
  text-align: center;
}

.thumb-complex {
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.tp-big {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.tp-small {
  font-size: 0.56rem;
  font-weight: 700;
  color: var(--muted);
}

.thumb-word {
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.tp-eq {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--muted);
}

.tp-eq b { color: var(--blue); }

.tp-result {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.04em;
}

.tp-blank {
  width: 60%;
  border-top: 2px dashed rgba(20, 48, 107, .25);
}

.thumb-read {
  justify-content: center;
  gap: 0.4rem;
}

.tp-text {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--blue-dark);
}

.tp-text b { color: var(--cta); }

.tp-bar {
  height: 5px;
  border-radius: 3px;
  background: rgba(20, 48, 107, .12);
}

.tp-bar.short { width: 65%; }

.card-body h3 { margin-bottom: 0.25rem; }
.card-body p  { font-size: 0.95rem; color: var(--muted); max-width: 100%; }

.banner-sequence {
  background: linear-gradient(135deg, var(--blue-dark), #1E4BAB);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.5rem;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1rem;
  text-align: center;
  margin: 1.5rem 0 2rem;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 28px rgba(20, 48, 107, .25);
}

.contents .banner-sequence {
  color: var(--blue-dark);
  background: linear-gradient(135deg, var(--yellow), #FFE070);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .16);
}

.cta-center {
  display: flex;
  justify-content: center;
}

/* ── 12. BONUSES ────────────────────────────────────────────── */
.bonus-cards {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 2.25rem 0;
}

.bonus-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
  background: linear-gradient(160deg, #fff 0%, var(--bg-warm) 100%);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow);
  border: 2px dashed rgba(255, 179, 0, .5);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.bonus-cover {
  width: 100%;
  max-width: 100px;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(20, 48, 107, .12);
  margin: 0 auto 0.35rem;
  display: block;
}

.bonus-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
  box-shadow: var(--shadow-hover);
}

.bonus-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 201, 60, .2);
}

.bonus-body h3 { margin-bottom: 0.25rem; }
.bonus-body p  { font-size: 0.95rem; color: var(--muted); max-width: 100%; margin-bottom: 0.6rem; }

.bonus-price {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--green);
  background: rgba(34, 169, 91, .1);
  border-radius: 50px;
  padding: 0.2rem 0.75rem;
}

.bonus-price s {
  color: var(--muted);
  font-weight: 400;
}

.bonus-seal {
  text-align: center;
  padding: 1.5rem 1rem 0;
}

.seal-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--yellow), #FFB300);
  color: var(--blue-dark);
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
  box-shadow: 0 8px 22px rgba(255, 179, 0, .35);
}

.bonus-seal p {
  max-width: 100%;
  color: var(--muted);
  font-size: 1rem;
  text-align: center;
  margin: 0 auto;
}

/* ── 13. HOW IT WORKS ───────────────────────────────────────── */
.steps-row {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 2.25rem 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  box-shadow: var(--shadow);
  flex: 1;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.step-item strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--blue-dark);
}

.step-item span {
  font-size: 0.92rem;
  color: var(--muted);
}

.step-icon {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--bg-alt);
  margin-bottom: 0.25rem;
}

.step-divider {
  font-size: 1.5rem;
  color: var(--cta);
  font-weight: 700;
  text-align: center;
  padding: 0.4rem 0;
  transform: rotate(90deg);
  align-self: center;
}

.how-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.how-footer span {
  background: #fff;
  border: 1px solid rgba(20, 48, 107, .1);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  box-shadow: 0 2px 8px rgba(20, 48, 107, .05);
}

/* ── 14. GUARANTEE ──────────────────────────────────────────── */
.guarantee-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.guarantee-text { max-width: 100%; }
.guarantee-text h2 { margin-bottom: 1rem; }
.guarantee-text p  { color: var(--muted); margin-bottom: 0.75rem; }

.guarantee-cta-text {
  color: var(--ink) !important;
  font-size: 1.02rem;
  background: rgba(34, 169, 91, .08);
  border: 1.5px solid rgba(34, 169, 91, .25);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}

.guarantee-badge {
  flex-shrink: 0;
}

.badge-inner {
  width: 165px;
  height: 165px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #2356B8, var(--navy));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  box-shadow: 0 16px 40px rgba(14, 36, 82, .35);
  text-align: center;
  padding: 0.5rem;
  border: 4px solid rgba(255, 201, 60, .9);
  position: relative;
}

.badge-inner::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, .35);
  pointer-events: none;
}

.badge-icon { font-size: 2rem; }

.badge-inner strong {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-days {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
}

.badge-subtitle {
  font-size: 0.7rem;
  color: rgba(255,255,255,.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── 15. OFFER ──────────────────────────────────────────────── */
.offer { position: relative; }

.offer .container { text-align: center; }
.offer h2 { text-align: center; }

.offer-box {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 3rem 1.5rem 2rem;
  box-shadow: 0 24px 60px rgba(20, 48, 107, .15);
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, var(--yellow), var(--cta), var(--blue));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  max-width: 620px;
  margin: 2rem auto 0;
  text-align: center;
  position: relative;
}

.offer-ribbon {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cta-2), var(--cta));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  padding: 0.45rem 1.4rem;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(255, 107, 0, .4);
  letter-spacing: 0.02em;
}

.offer-list {
  text-align: left;
  margin-bottom: 2rem;
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(20, 48, 107, .06);
  font-size: 0.97rem;
  font-weight: 700;
}

.offer-list li:last-child { border-bottom: none; }

.offer-list .divider-item {
  margin: 0.5rem 0;
  height: 1px;
  background: rgba(20, 48, 107, .12);
  display: block;
}

.bonus-item { color: var(--muted); font-weight: 600 !important; }
.bonus-item .gift { font-size: 1rem; }
.bonus-item s { color: #A6ADBE; margin-left: auto; white-space: nowrap; }

.price-anchor {
  margin: 1.5rem 0;
  padding: 1.75rem 1.5rem;
  background:
    radial-gradient(ellipse 80% 90% at 50% 0%, rgba(255, 201, 60, .14) 0%, transparent 60%),
    var(--bg-alt);
  border-radius: var(--radius-sm);
}

.price-de {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 100%;
}

.price-de s {
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
}

.price-por {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.price-main {
  font-family: var(--font-display);
  color: var(--green);
  line-height: 1;
  margin: 0.25rem 0;
  max-width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.15rem;
}

.price-currency {
  font-size: 1.7rem;
  font-weight: 600;
  margin-top: 0.7rem;
}

.price-big   { font-size: 5.5rem; font-weight: 600; line-height: 1; }
.price-cents { font-size: 2.2rem; font-weight: 600; margin-top: 0.55rem; }

.price-sub {
  font-size: 0.85rem;
  color: var(--blue-dark);
  font-weight: 700;
  max-width: 100%;
  text-align: center;
  margin: 0.5rem auto 0;
}

.price-anchor-note {
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  margin: 0.75rem auto 0;
  max-width: 100%;
  text-align: center;
}

.cta-offer {
  margin: 1rem auto;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 700;
  max-width: 100%;
  margin: 0.75rem auto 0;
}

/* ── 15b. PLANOS (3 cards) — seção de oferta ─────────────────── */
.plans-compare-note {
  font-size: 0.92rem;
  color: var(--muted);
  font-style: italic;
  max-width: 52ch;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.plans-ribbon {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cta-2), var(--cta));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 50px;
  padding: 0.45rem 1.3rem;
  margin: 0 auto 2rem;
  box-shadow: 0 8px 22px rgba(255, 107, 0, .35);
  letter-spacing: 0.02em;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  max-width: 440px;
  margin: 0 auto;
  text-align: left;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border-radius: var(--radius);
  border: 2px solid rgba(20, 48, 107, .1);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem 1.75rem;
}

.plan-card-featured {
  border-color: var(--blue);
  box-shadow: 0 20px 46px rgba(26, 115, 232, .22);
}

.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), #4D8BFF);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(26, 115, 232, .35);
  letter-spacing: 0.02em;
}

.plan-badge-subtle {
  position: static;
  display: inline-block;
  transform: none;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #E4E9F2, #CBD5E3);
  color: var(--blue-dark);
  box-shadow: none;
}

.plan-card-body { flex: 1 1 auto; }

.plan-name {
  font-size: 1.28rem;
  margin-bottom: 0.3rem;
}

.plan-tagline {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 700;
  max-width: 100%;
  margin-bottom: 1rem;
}

.plan-price-anchor {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 100%;
}

.plan-price-anchor s {
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
}

.plan-price {
  font-family: var(--font-display);
  color: var(--green);
  line-height: 1;
  margin: 0.2rem 0 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.12rem;
}

.plan-price-currency { font-size: 1.15rem; font-weight: 600; margin-top: 0.35rem; }
.plan-price-big       { font-size: 2.75rem; font-weight: 600; line-height: 1; }
.plan-price-cents     { font-size: 1.35rem; font-weight: 600; margin-top: 0.3rem; }

.plan-features {
  margin-bottom: 1.25rem;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(20, 48, 107, .06);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}

.plan-features li:last-child { border-bottom: none; }

.plan-close {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 100%;
  margin-bottom: 1.5rem;
}

.plan-cta {
  margin-top: auto;
  width: 100%;
  max-width: 100%;
}

.plans-footnote {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 54ch;
  margin: 2.25rem auto 0;
}

/* ── 16. SCARCITY — bloco de destaque ───────────────────────── */
.scarcity {
  padding: 2.5rem 0;
  background: var(--bg);
}

.scarcity-box {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(135deg, #FFF3D2, #FFE7A8);
  border: 2px solid rgba(255, 179, 0, .55);
  border-radius: var(--radius);
  padding: 1.3rem 1.6rem;
  box-shadow: 0 12px 30px rgba(255, 179, 0, .2);
}

.scarcity-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .75);
  box-shadow: 0 4px 12px rgba(255, 179, 0, .3);
}

.scarcity-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--blue-dark);
}

.scarcity-text p {
  font-size: 0.92rem;
  font-weight: 600;
  color: #6E5A1A;
  margin-top: 0.15rem;
  max-width: 100%;
}

/* Linha da professora na oferta */
.offer-teacher {
  max-width: 100%;
  margin: 1.25rem auto 0;
  padding: 0.85rem 1.1rem;
  background: var(--blue-soft);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-dark);
  text-align: center;
}

.offer-teacher a {
  color: var(--blue);
  text-decoration: underline;
  font-weight: 700;
}

/* ── 17. FAQ ────────────────────────────────────────────────── */
.faq .eyebrow,
.faq h2 {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.faq h2 { margin-bottom: 2rem; }

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border: 1.5px solid rgba(20, 48, 107, .11);
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(247, 251, 255, .72)),
    var(--bg);
  box-shadow: 0 8px 22px rgba(20, 48, 107, .06);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(20, 48, 107, .1);
}

.accordion-item:has(.accordion-trigger[aria-expanded="true"]) {
  border-color: rgba(37, 99, 235, .32);
  box-shadow: 0 16px 36px rgba(20, 48, 107, .12);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.03rem;
  font-weight: 800;
  color: var(--blue-dark);
  text-align: left;
  transition: background var(--transition);
}

.accordion-trigger:hover {
  background: rgba(220, 235, 251, .45);
}

.accordion-trigger[aria-expanded="true"] {
  background: rgba(220, 235, 251, .55);
}

.accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #EAF4FF;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition), color var(--transition);
  line-height: 1;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
  background: var(--blue);
  color: #fff;
}

/* Smooth open/close via grid-template-rows animation */
.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 300ms ease;
  padding: 0 1.35rem;
}

.accordion-trigger[aria-expanded="true"] + .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-panel p {
  overflow: hidden;
  min-height: 0;
  font-size: 0.97rem;
  color: var(--muted);
  max-width: 100%;
  line-height: 1.65;
  opacity: 0;
  padding: 0;
  transition: opacity 220ms ease, padding 300ms ease;
}

.accordion-trigger[aria-expanded="true"] + .accordion-panel p {
  opacity: 1;
  padding: 0.15rem 0 1.25rem;
}

/* ── 18. CLOSING ────────────────────────────────────────────── */
.closing {
  background:
    radial-gradient(ellipse 60% 50% at 90% 0%, rgba(255, 201, 60, .15) 0%, transparent 55%),
    var(--bg-alt);
}

.closing-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.closing-logo {
  width: 170px;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(20, 48, 107, .15));
}

.closing-text h2 { margin-bottom: 1rem; }
.closing-text p  { color: var(--muted); margin-bottom: 0.75rem; max-width: 60ch; }

.cta-closing {
  margin: 1.25rem auto 0;
}

.closing-risk {
  margin: 1rem 0;
  font-size: 1.1rem;
  color: var(--blue-dark);
  max-width: 100%;
}

.closing-trust {
  margin-top: 1rem;
  justify-content: center;
}

/* ── 19. FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 3.25rem 0 2.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}

.footer-brand-block,
.footer-info,
.footer-links {
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .045);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .08);
  padding: 1.2rem;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-logo {
  width: 138px;
  height: auto;
  margin-bottom: 0.45rem;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .18));
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  color: #fff;
  font-size: 1rem;
  max-width: 100%;
}

.footer-guarantee {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--yellow);
  max-width: 100%;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-kicker {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
}

.footer-info p {
  color: rgba(255, 255, 255, .74);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 100%;
}

.footer-info-note {
  color: rgba(255, 255, 255, .72) !important;
}

.footer-info a {
  color: var(--yellow);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
}

.footer-links a {
  color: rgba(255,255,255,.76);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact {
  font-size: 0.85rem;
  max-width: 100%;
}

.footer-contact a {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 1.1rem;
  text-align: center;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,.78);
  max-width: 100%;
}

/* ── 20. STICKY CTA BAR (mobile) ────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(255,255,255,.96);
  border-top: 1px solid rgba(20, 48, 107, .12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 -6px 24px rgba(14, 36, 82, .12);

  /* Hidden by default — JS shows/hides */
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.sticky-cta[inert] {
  pointer-events: none;
}

.cookie-consent {
  position: fixed;
  z-index: 1001;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  max-width: 760px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(26, 58, 107, .14);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(14, 36, 82, .16);
}

.cookie-consent p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.45;
}

.cookie-consent-actions {
  display: flex;
  flex-shrink: 0;
  gap: 0.55rem;
}

.cookie-consent-btn {
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  border: 0;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 900;
  cursor: pointer;
}

.cookie-consent-btn-primary {
  color: #fff;
  background: var(--blue);
}

.cookie-consent-btn-secondary {
  color: var(--blue-dark);
  background: var(--blue-soft);
}

.cookie-consent-btn:focus-visible {
  outline: 3px solid rgba(26, 115, 232, .35);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .cookie-consent {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-consent-actions {
    width: 100%;
  }

  .cookie-consent-btn {
    flex: 1;
  }
}

.sticky-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green);
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.sticky-price s {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
}

/* ── 20b. BLOCOS v1 PAIS (novos) ────────────────────────────── */

/* Sub-headline 2 do hero */
.hero-sub-2 {
  font-size: 1.02rem;
  font-weight: 600;
}

/* BLOCO 2 — Demonstrativo / Galeria */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.75rem 0;
}

.gallery-item {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 58, 107, .07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item picture {
  display: block;
  width: 100%;
}

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

.gallery-thumb {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  padding: 0.9rem;
}

.gallery-item figcaption {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}

.gallery-item figcaption strong { color: var(--blue-dark); }

.thumb-confuse {
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.gallery-print {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
  object-fit: contain;
  background: #ffffff;
  display: block;
}

.gallery-item figcaption strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--blue-dark);
  margin-bottom: 0.2rem;
}

.gallery-item figcaption {
  font-size: 0.875rem;
  color: #666666;
  line-height: 1.45;
}

.demo-close {
  text-align: center;
  max-width: 62ch;
  margin: 0.75rem auto 0;
  color: var(--ink);
  font-size: 1rem;
}

.demo-close strong { color: var(--blue-dark); }

/* Botão "ver mais trilhas" — só existe no mobile (ver breakpoint 767px) */
.gallery-toggle {
  display: none;
}

/* BLOCO 3 — Benefícios */
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1.2rem;
  box-shadow: 0 4px 14px rgba(26, 58, 107, .07);
  border-left: 4px solid var(--green);
  font-size: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-list li:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 22px rgba(26, 58, 107, .11);
}

.benefit-list .check { margin-top: 0.1rem; }
.benefit-list strong { color: var(--blue-dark); }

/* Depoimentos — carrossel de prova social */
.testimonials {
  margin-top: 2.5rem;
}

.testimonials-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--blue-dark);
  margin-bottom: 1.4rem;
}

.testimonials-carousel {
  position: relative;
  padding: 0;
}

.testimonials-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0.6rem 8% 1rem;
  /* Hide native scrollbar; navigation is via arrows/dots/swipe */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex: 0 0 84%;
  scroll-snap-align: center;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 58, 107, .08);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  opacity: .45;
  filter: blur(1.5px);
  transform: scale(.96);
  transition: opacity .35s ease, filter .35s ease, transform .35s ease;
}

.testimonial-card.is-current {
  opacity: 1;
  filter: none;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-card { transition: none; }
}

.testimonial-stars {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

.testimonial-quote {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink);
}

.testimonial-author {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-top: auto;
}

.testimonial-arrow {
  display: none;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.testimonial-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--blue-soft);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.testimonial-dot.is-active {
  background: var(--cta);
  transform: scale(1.2);
}

@media (min-width: 600px) {
  .testimonials-track { padding-left: 5%; padding-right: 5%; }
  .testimonial-card {
    flex-basis: calc(46% - 0.6rem);
    /* 2+ cards are fully visible at once here, so the mobile "peek" dim/blur
       (driven by a single is-current card) would be ambiguous — only the
       edge-clipped card should visually read as "more content". */
    opacity: 1;
    filter: none;
    transform: none;
  }
}

@media (min-width: 900px) {
  .testimonials-track { padding-left: 0; padding-right: 0; }
  .testimonial-card { flex-basis: calc(31% - 0.7rem); }

  .testimonials-carousel { padding: 0 2.75rem; }

  .testimonial-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--bg);
    color: var(--blue-dark);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: background var(--transition), box-shadow var(--transition), color var(--transition);
    z-index: 1;
  }

  .testimonial-arrow:hover {
    background: var(--blue);
    color: #fff;
    box-shadow: var(--shadow-hover);
  }

  .testimonial-arrow-prev { left: 0; }
  .testimonial-arrow-next { right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-track { scroll-behavior: auto; }
}

/* BLOCO 4 — Urgência */
.bg-dark {
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--navy) 100%);
}

.urgency-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.urgency h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.urgency p {
  color: rgba(255, 255, 255, .85);
  margin: 0 auto 1rem;
  line-height: 1.7;
}

.urgency-reinforce {
  color: #fff !important;
  font-size: 1.18rem;
  margin-top: 1.15rem !important;
}

.urgency-reinforce strong { color: var(--yellow); }

.cta-urgency { margin: 1.5rem auto 0.75rem; }

.trust-line-center { justify-content: center; }

.urgency .trust-line span {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .2);
  color: #fff;
  box-shadow: none;
}

/* BLOCO 6 — Kit list */
.kit-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 1.75rem 0;
}

.kit-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1.2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--blue);
  transition: transform var(--transition), box-shadow var(--transition);
}

.kit-list li:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-hover);
}

.kit-ico { font-size: 1.4rem; flex-shrink: 0; }
.kit-list strong { color: var(--blue-dark); }

.contents .kit-list li {
  background: rgba(255, 255, 255, .96);
  border-left-color: var(--yellow);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .14);
}

.contents .kit-list li:hover {
  box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
}

/* BLOCO 8 — extras da oferta */
.offer-recap {
  font-weight: 700;
  color: var(--blue-dark);
  margin: 0 auto 1rem;
  font-size: 1rem;
  max-width: 100%;
}

.offer-urgency {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  text-align: left;
  background: linear-gradient(135deg, #FFF3D2, #FFE7A8);
  border: 2px solid rgba(251, 188, 4, .6);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  margin: 1.25rem 0;
}

.offer-urgency-ico { font-size: 1.5rem; flex-shrink: 0; }

.offer-urgency p {
  font-size: 0.9rem;
  color: #6E5A1A;
  font-weight: 600;
  max-width: 100%;
  text-align: left;
}

.offer-urgency strong { color: var(--blue-dark); }

.guarantee-line {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  text-align: left;
  background: rgba(52, 168, 83, .08);
  border: 1.5px solid rgba(52, 168, 83, .28);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  margin-top: 1.25rem;
}

.guarantee-shield { font-size: 1.6rem; flex-shrink: 0; }

.guarantee-line p {
  font-size: 0.9rem;
  color: var(--ink);
  max-width: 100%;
  text-align: left;
}

.guarantee-line strong { color: #1F7A3D; }

.guarantee-line a {
  color: #1F7A3D;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.faq-cta { margin-top: 2.75rem; }

/* Mobile: compacta o hero para a dobra 1 caber em 390px
   (headline + selo do mecanismo + mockup + 1º CTA) */
@media (max-width: 767px) {
  .site-header {
    background: rgba(255, 255, 255, .97);
    border-bottom-color: rgba(20, 48, 107, .07);
  }

  .header-inner { height: 54px; }
  .header-logo { height: 32px; }

  .hero {
    padding: 1rem 0 2.2rem;
    background: linear-gradient(180deg, #F7FAFF 0%, #fff 78%);
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-inner { gap: 1rem; }
  .hero-content { gap: 0.72rem; }

  .hero-content h1 {
    font-size: 1.7rem;
    line-height: 1.12;
    max-width: 22ch;
    overflow-wrap: break-word;
  }

  .btn-lg,
  .btn-xl {
    padding: 0.95rem 1rem;
    font-size: 0.92rem;
  }

  .cta-label-desktop {
    display: none;
  }

  .cta-label-mobile {
    display: inline-block;
  }

  .btn-cta {
    overflow: hidden;
    isolation: isolate;
  }

  .btn-cta::after {
    content: '';
    position: absolute;
    inset: -48% -32%;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(
      105deg,
      transparent 34%,
      rgba(255, 255, 255, .12) 44%,
      rgba(255, 255, 255, .42) 50%,
      rgba(255, 255, 255, .12) 56%,
      transparent 66%
    );
    transform: translateX(-86%) rotate(3deg);
  }

  .btn-cta > * {
    position: relative;
    z-index: 1;
  }

  .hero-badge {
    align-self: flex-start;
    justify-content: flex-start;
    width: auto;
    max-width: 100%;
    white-space: nowrap;
    text-align: left;
    line-height: 1.2;
    font-size: 0.64rem;
    padding: 0.26rem 0.52rem;
    border-width: 1px;
    box-shadow: 0 5px 12px rgba(251, 188, 4, .12);
  }

  .method-badge {
    align-self: flex-start;
    width: fit-content;
    max-width: 100%;
    padding: 0.62rem 0.82rem;
    border-radius: 15px;
    box-shadow: 0 9px 20px rgba(20, 48, 107, .14);
  }

  .method-badge-main {
    font-family: var(--font-display);
    font-size: 0.96rem;
    line-height: 1.15;
    white-space: nowrap;
  }

  .method-badge-sub {
    display: block;
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .hero-sub {
    font-size: 1rem;
    line-height: 1.5;
    max-width: none;
    text-wrap: pretty;
  }

  .cta-main {
    margin-top: 0.2rem;
    min-height: 52px;
  }

  .cta-microcopy {
    margin-top: -0.28rem;
    font-size: 0.82rem;
    max-width: none;
  }

  .cta-microcopy-dot {
    display: none;
  }

  .cta-microcopy-line2 {
    display: block;
  }

  .hero .trust-line {
    gap: 0.5rem;
    font-size: 0.82rem;
  }

  .hero .trust-line span {
    padding: 0.36rem 0.68rem;
    box-shadow: 0 4px 12px rgba(20, 48, 107, .05);
  }

  .trust-emoji {
    font-size: 0.95rem;
  }

  .hero-sub-2,
  .hero-bullets {
    display: none;
  }

  .hero-mockup {
    order: 2;
    margin: 0.2rem 0 0;
  }

  .hero-fan {
    --fan-card-top: 18px;
    --fan-card-width: clamp(112px, 30vw, 116px);
    --fan-mid-offset: 19px;
    --fan-mid-offset-neg: -19px;
    --fan-edge-offset: 56px;
    --fan-edge-offset-neg: -56px;
    --fan-hover-edge-offset: 62px;
    --fan-hover-edge-offset-neg: -62px;
    width: min(300px, 92vw);
    height: 224px;
    margin-top: 0.35rem;
  }

  .hero-fan .fan-card { height: auto; }

  .kit-showcase {
    width: 230px;
    height: 252px;
    margin: 0 auto;
  }

  .kit-flag,
  .kit-cover-back,
  .kit-page,
  .kit-count {
    display: none;
  }

  .kit-cover-main {
    top: 0;
    width: 210px;
    height: 248px;
    border-radius: 18px;
    transform: translateX(-50%);
    box-shadow: 0 18px 38px rgba(20, 48, 107, .16);
  }

  .cover-logo { max-height: 132px; }
  .cover-title { font-size: 0.84rem; }

  .section-intro,
  .demo-close,
  .gallery-item figcaption,
  .benefit-list li span:last-child,
  .desire-card > span:last-child,
  .kit-list li span:last-child,
  .bonus-card p,
  .offer-recap,
  .price-anchor-note,
  .offer-urgency p,
  .guarantee-line p,
  .accordion-panel p,
  .footer-brand,
  .footer-info p,
  .plans-compare-note,
  .plan-tagline,
  .plan-close,
  .plans-footnote {
    text-wrap: pretty;
  }

  .section-intro {
    max-width: 31ch;
    margin-inline: auto;
    text-align: center;
  }

  #demo-title {
    text-align: center;
  }

  .gallery-item figcaption {
    text-wrap: balance;
  }

  .gallery-item {
    padding: 0.65rem;
  }

  /* Exibição parcial: só as 2 primeiras trilhas ficam visíveis por
     padrão. Gap do grid vira margin por item, porque o gap do grid
     continuaria reservando espaço entre linhas ocultas. */
  .gallery {
    gap: 0;
  }

  .gallery-item {
    margin-bottom: 1rem;
  }

  .gallery-item-extra {
    max-height: 0;
    margin-bottom: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, opacity 0.35s ease, margin-bottom 0.45s ease;
  }

  .gallery.is-expanded .gallery-item-extra {
    max-height: 640px;
    margin-bottom: 1rem;
    opacity: 1;
  }

  .gallery-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 100%;
    margin: 0 0 1.5rem;
    padding: 0.6rem 0.5rem;
    background: none;
    border: none;
    appearance: none;
    color: var(--blue);
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
  }

  .gallery-toggle:hover,
  .gallery-toggle:focus-visible {
    color: var(--blue-dark);
  }

  /* O card Kit ABC (1º na ordem crescente de preço) precisa caber
     inteiro na tela sem scroll interno — respiro vertical reduzido
     só no mobile, o desktop mantém seu próprio padding (2rem). */
  .plan-card {
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .plan-tagline {
    margin-bottom: 0.75rem;
  }

  .plan-price {
    margin: 0.15rem 0 1rem;
  }

  .plan-features {
    margin-bottom: 1rem;
  }

  .plan-features li {
    padding: 0.3rem 0;
  }

  .plan-close {
    margin-bottom: 1rem;
  }

  .urgency p {
    max-width: 33ch;
    margin-inline: auto;
    text-wrap: balance;
  }

  .benefit-list li span:last-child {
    text-wrap: balance;
  }

  .offer-recap {
    max-width: 28ch;
    text-wrap: balance;
  }

  .footer-brand {
    text-wrap: balance;
  }

  .benefit-list li,
  .kit-list li {
    gap: 0.65rem;
    padding-inline: 0.95rem;
  }

  .offer-box {
    padding-inline: 1.15rem;
  }

  .offer-list li {
    gap: 0.6rem;
  }

  .guarantee-line {
    align-items: flex-start;
    gap: 0.65rem;
    padding-inline: 0.95rem;
  }
}

/* ── 21. DESKTOP BREAKPOINTS ────────────────────────────────── */
@media (min-width: 480px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 600px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .two-cols { grid-template-columns: 1fr 1fr; }
  .bonus-cards { display: grid; grid-template-columns: repeat(3, 1fr); }
  .guarantee-inner { flex-direction: row; align-items: center; gap: 3rem; }
  .guarantee-text { flex: 1; }
}

@media (min-width: 900px) {
  .gallery {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .gallery-item {
    grid-column: span 2;
  }

  .gallery-item:nth-last-child(2) {
    grid-column: 2 / span 2;
  }

  .gallery-item:last-child {
    grid-column: 4 / span 2;
  }
}

@media (min-width: 768px) {
  .header-inner { height: 68px; }
  .header-logo { height: 46px; }
  .header-cta { display: inline-flex; padding-inline: 1rem; }

  .section { padding: 5rem 0; }

  .hero { padding: 4.5rem 0 5.5rem; }
  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .hero-content { flex: 0 0 min(48%, 520px); }
  .hero-content > .trust-line { display: none; }
  .hero-mockup  { display: flex; flex: 1 1 auto; min-height: 360px; justify-content: flex-start; align-items: center; order: 0; margin-bottom: 0; padding-top: 1rem; }
  .hero-fan {
    --fan-card-top: 30px;
    --fan-card-width: 158px;
    --fan-mid-offset: 27px;
    --fan-mid-offset-neg: -27px;
    --fan-edge-offset: 78px;
    --fan-edge-offset-neg: -78px;
    --fan-hover-edge-offset: 88px;
    --fan-hover-edge-offset-neg: -88px;
    width: 400px;
    height: 310px;
  }
  .mockup-trust-line {
    display: flex;
    justify-content: center;
    margin: -0.2rem auto 0;
    max-width: 520px;
  }
  .mockup-trust-line span {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
  }
  .hero-badge   { font-size: 0.95rem; padding: 0.55rem 1.3rem; }

  .compare {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.1rem;
    align-items: start;
  }

  .compare-win { transform: scale(1.04); }
  .compare-win:hover { transform: scale(1.04) translateY(-4px); }

  .qualification-layout {
    grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1.42fr);
    gap: 2.4rem;
    align-items: start;
  }

  .desire-mosaic {
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }

  .desire-card {
    grid-column: span 3;
    min-height: 110px;
    font-size: 0.98rem;
    padding: 1.2rem 1.25rem 1.2rem 1.45rem;
  }

  .desire-card-wide {
    grid-column: span 6;
    min-height: 108px;
    font-size: 1.08rem;
  }

  .offer-box { padding: 3.25rem 2.5rem 2.5rem; }

  /* Selo "🔥 Preço de lançamento" fica redundante com o eyebrow
     "Oferta de lançamento" no desktop — o mobile mantém os dois. */
  .plans-ribbon {
    display: none;
  }

  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
    align-items: stretch;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .plan-card {
    padding: 2rem;
  }

  /* Selo padronizado nos 3 cards: mesma caixa, sobreposta à borda
     superior (metade dentro, metade fora). Card 1 usa um ::before
     vazio só para reservar o mesmo espaço e manter o alinhamento. */
  .plan-badge,
  .plan-badge-subtle,
  .plan-card-kit::before {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 168px;
    height: 36px;
    padding: 0 1.1rem;
    margin: 0;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
    box-sizing: border-box;
  }

  .plan-card-kit::before {
    content: '';
    background: transparent;
    box-shadow: none;
    pointer-events: none;
  }

  .stepper {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
  }

  .step {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
  }

  .step-arrow {
    transform: none;
    padding: 0 0.5rem;
    align-self: center;
  }

  .steps-row {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }

  .step-divider {
    transform: none;
    font-size: 1.8rem;
    align-self: center;
    padding: 0 0.6rem;
  }

  .closing-inner {
    flex-direction: row;
    text-align: left;
    gap: 3.5rem;
  }

  .closing-text p,
  .closing-text h2 {
    text-align: left;
  }

  .cta-closing {
    margin-left: 0;
  }

  .closing-trust {
    justify-content: flex-start;
  }

  .footer-main {
    grid-template-columns: minmax(220px, 0.9fr) minmax(320px, 1.35fr) minmax(190px, 0.75fr);
    gap: 1.25rem;
  }

  .footer-brand-block,
  .footer-info,
  .footer-links {
    padding: 1.35rem 1.45rem;
  }

  .footer-brand-block {
    align-items: flex-start;
    text-align: left;
  }

  .footer-logo {
    width: 150px;
  }

  .footer-bottom {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .hero-inner {
    gap: clamp(1.5rem, 2.5vw, 3rem);
  }

  .hero-content {
    flex-basis: min(46%, 540px);
  }

  .hero-mockup {
    flex: 1 1 min(54vw, 840px);
    min-width: min(54vw, 840px);
    min-height: auto;
    margin-right: clamp(-8rem, calc((1080px - 100vw) / 2), 0px);
    padding-top: clamp(1.6rem, 3.2vw, 3.2rem);
  }

  .hero-fan {
    --fan-card-top: clamp(54px, 3.8vw, 76px);
    --fan-card-width: clamp(265px, 15.5vw, 330px);
    --fan-mid-offset: clamp(46px, 2.8vw, 60px);
    --fan-mid-offset-neg: clamp(-60px, -2.8vw, -46px);
    --fan-edge-offset: clamp(118px, 7vw, 150px);
    --fan-edge-offset-neg: clamp(-150px, -7vw, -118px);
    --fan-hover-edge-offset: clamp(132px, 7.8vw, 168px);
    --fan-hover-edge-offset-neg: clamp(-168px, -7.8vw, -132px);
    width: clamp(660px, 45vw, 840px);
    height: clamp(460px, 34vw, 600px);
    margin-top: 0;
  }

  .fan-flag {
    top: clamp(34px, 3vw, 54px);
    right: clamp(110px, 7.2vw, 148px);
    font-size: 0.9rem;
    padding: 0.35rem 1.05rem;
  }

  .fan-count {
    bottom: clamp(28px, 2.6vw, 48px);
    font-size: 0.84rem;
    padding: 0.38rem 1rem;
  }

  .numbered-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .numbered-cards .numbered-card:last-child {
    grid-column: 1 / -1;
  }
}

/* ── 21. LEGAL PAGES ───────────────────────────────────────── */
.legal-main {
  background: linear-gradient(180deg, #F3F8FF 0%, #FFFFFF 34%);
  padding: 3rem 0 4.5rem;
}

.legal-article {
  max-width: 880px;
  margin: 0 auto;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--blue-dark);
  font-weight: 800;
  margin-bottom: 1.4rem;
}

.legal-card {
  background: #fff;
  border: 1px solid rgba(26, 58, 107, .08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 4vw, 3rem);
}

.legal-kicker {
  display: inline-block;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.legal-card h1 {
  margin-bottom: 0.55rem;
}

.legal-updated {
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.legal-intro {
  color: var(--ink);
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
}

.legal-card h2 {
  font-family: var(--font-body);
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1.3;
  margin: 2rem 0 0.75rem;
}

.legal-card p,
.legal-card li {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-card p {
  max-width: 100%;
  margin-bottom: 0.85rem;
}

.legal-card ul {
  list-style: disc;
  padding-left: 1.35rem;
  margin: 0.5rem 0 1rem;
}

.legal-card li {
  margin-bottom: 0.45rem;
}

.legal-card a {
  color: var(--blue);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.legal-note {
  background: var(--bg-alt);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  margin: 1.4rem 0;
}

.legal-note p:last-child {
  margin-bottom: 0;
}

/* ── 22. UTILITIES ──────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Prevent layout shift when sticky bar is visible (adds bottom padding to body) */
body.has-sticky {
  padding-bottom: 72px;
}
