/* =====================================================================
   Baby Learning – Mente Bilíngue · Landing page (VSL)
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --blue-900: #12306B;   /* títulos escuros */
  --blue-700: #1E4FB0;   /* azul principal de títulos */
  --blue-500: #2F6FE0;   /* azul de destaque / links */
  --blue-200: #C9DBFB;
  --blue-100: #E8F1FF;   /* fundos */
  --blue-50:  #F4F8FF;
  --yellow:      #FFD23F;
  --yellow-600:  #F2BE1C;
  --yellow-100:  #FFF3C4;
  --coral:     #E85D4A;
  --coral-100: #FDE9E4;
  --cream:     #FBF6F0;
  --ink:       #1B2A4A;
  --ink-soft:  #42527A;
  --white:     #FFFFFF;

  --font-display: 'Nunito', system-ui, sans-serif;
  --font-body:    'Nunito', system-ui, sans-serif;
  --font-hand:    'Caveat', cursive;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --shadow-card: 0 10px 30px rgba(18, 48, 107, 0.08);
  --shadow-btn:  0 10px 24px rgba(242, 190, 28, 0.35);

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(56px, 8vw, 96px);
}

/* ---------- Reset básico ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--blue-50);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
svg { width: 100%; height: 100%; fill: currentColor; }
strong { font-weight: 800; }
:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 3px; }

.container {
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
  position: relative;
}
.section { padding-block: var(--section-y); }

/* ---------- Tipografia ---------- */
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.2;
  color: var(--blue-700);
  text-align: center;
  letter-spacing: -0.01em;
}
.section-title em { font-style: normal; color: var(--yellow-600); }
.section-sub {
  text-align: center;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.4vw, 19px);
  margin-top: 10px;
}

/* Frases manuscritas */
.hand {
  font-family: var(--font-hand);
  font-weight: 600;
  color: var(--blue-500);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.1;
  position: absolute;
  pointer-events: none;
  user-select: none;
  transform: rotate(-6deg);
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 34px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.2;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-primary {
  background: var(--yellow);
  color: var(--blue-900);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { background: #FFDA5C; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(242,190,28,.45); }
.btn-primary:active { transform: translateY(0); }
.btn .arrow { font-weight: 900; }
.btn-wide { width: 100%; max-width: 760px; padding-inline: 24px; font-size: clamp(15px, 1.15vw, 18px); white-space: nowrap; }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 248, 255, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 12px;
  min-height: 72px;
}
.brand img { width: clamp(180px, 20vw, 250px); height: auto; }

.site-nav { display: flex; gap: 28px; align-items: center; font-weight: 700; color: var(--blue-700); }
.site-nav a { padding: 6px 2px; border-bottom: 2px solid transparent; transition: border-color .15s; }
.site-nav a:hover { border-color: var(--yellow); }
.site-nav .nav-cta { background: var(--yellow); color: var(--blue-900); padding: 8px 18px; border-radius: var(--radius-pill); border: 0; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 0;
  flex-direction: column; justify-content: center; align-items: center; gap: 6px;
}
.menu-toggle span { display: block; width: 26px; height: 3px; border-radius: 3px; background: var(--blue-700); transition: transform .2s, opacity .2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Gating: itens do menu e CTA do hero ficam ocultos até liberar */
body.is-locked [data-gated] { display: none !important; }

/* =====================================================================
   1. HERO
   ===================================================================== */
.hero {
  position: relative;
  padding: clamp(20px, 3vw, 36px) 0 clamp(48px, 6vw, 72px);
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  background: var(--blue-100);
  z-index: 0;
  filter: blur(2px);
}
.blob-1 { width: 520px; height: 420px; left: -220px; bottom: -160px; }
.blob-2 { width: 520px; height: 420px; right: -220px; top: 120px; }

.hero-inner { z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 1.1;
  color: var(--blue-700);
  letter-spacing: -0.02em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 .3em;
}
.hero-title-mark { position: relative; display: inline-block; }
.mark {
  background: linear-gradient(transparent 12%, var(--yellow) 12%, var(--yellow) 88%, transparent 88%);
  padding-inline: .15em;
  border-radius: 6px;
}
/* raios laterais do destaque */
.hero-title-mark::before,
.hero-title-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  width: .55em; height: .55em;
  background:
    linear-gradient(var(--yellow), var(--yellow)) center/100% 3px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) center/3px 100% no-repeat;
  opacity: .9;
}
.hero-title-mark::before { left: -1.1em; transform: translateY(-50%) rotate(45deg); }
.hero-title-mark::after  { right: -1.1em; transform: translateY(-50%) rotate(45deg); }
.hero-title-mark::before, .hero-title-mark::after {
  -webkit-mask: radial-gradient(circle, transparent 35%, #000 36%);
  mask: radial-gradient(circle, transparent 35%, #000 36%);
}

.hero-sub {
  max-width: 760px;
  margin-top: 14px;
  color: var(--blue-700);
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.45;
}

.hand-hero-left  { left: 0;  top: 58%; text-align: left; }
.hand-hero-right { right: 0; top: 34%; text-align: right; transform: rotate(6deg); }
.hand-hero-mobile { display: none; }

/* ---------- Player ---------- */
.video-frame {
  position: relative;
  width: 100%;
  max-width: 920px;
  aspect-ratio: 16 / 9;
  margin-top: clamp(24px, 3vw, 36px);
  border-radius: 22px;
  overflow: hidden;
  background: var(--blue-900);
  box-shadow: 0 24px 48px rgba(18, 48, 107, .18);
}
.video-poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  padding: 0; border: 0; background: none;
}
.video-poster img { width: 100%; height: 100%; object-fit: cover; }
.play-btn {
  position: absolute;
  left: 50%; top: 53%;
  width: clamp(72px, 14.5%, 136px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(16, 44, 96, .82);
  border: 4px solid rgba(255,255,255,.9);
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
  transition: transform .18s ease, background .18s ease;
}
.play-btn::after {
  content: "";
  position: absolute;
  left: 55%; top: 50%;
  transform: translate(-50%, -50%);
  border-left: 30% solid #fff;
  border-top: 18% solid transparent;
  border-bottom: 18% solid transparent;
  width: 0; height: 0;
  border-left-width: clamp(22px, 30%, 40px);
  border-top-width: clamp(13px, 18%, 24px);
  border-bottom-width: clamp(13px, 18%, 24px);
}
.video-poster:hover .play-btn { transform: translate(-50%, -50%) scale(1.06); background: rgba(16, 44, 96, .95); }
.video-embed { position: absolute; inset: 0; display: none; }
.video-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-frame.is-playing .video-poster { display: none; }
.video-frame.is-playing .video-embed { display: block; }

.gate-hint {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-500);
  background: var(--white);
  border: 1px solid var(--blue-200);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
body:not(.is-locked) .gate-hint { display: none; }

/* ---------- Selos do hero ---------- */
.hero-badges {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin-top: clamp(28px, 3vw, 40px);
  text-align: left;
}
.hero-badges li {
  display: flex; align-items: center; gap: 14px;
  padding-inline: clamp(18px, 2.5vw, 36px);
  color: var(--blue-700);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.25;
}
.hero-badges li + li { border-left: 1px solid var(--blue-200); }
.badge-icon {
  flex: 0 0 auto;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  padding: 14px;
}
.badge-blue   { background: var(--blue-100);   color: var(--blue-700); }
.badge-yellow { background: var(--yellow-100); color: var(--blue-700); }
.badge-red    { background: var(--coral-100);  color: var(--coral); }

.hero-cta { margin-top: clamp(28px, 3vw, 40px); }

/* =====================================================================
   Conteúdo liberado (gated) + reveal
   ===================================================================== */
.gated[hidden] { display: none; }
.gated { animation: gatedIn .6s ease both; }
@keyframes gatedIn { from { opacity: 0; } to { opacity: 1; } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: none; }

/* =====================================================================
   2. POSICIONAMENTO + O QUE RECEBE
   ===================================================================== */
.statement {
  background: var(--white);
  padding-block: clamp(40px, 5vw, 64px);
  text-align: center;
}
.statement-title {
  font-weight: 800;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.2;
  color: var(--blue-700);
}
.statement-title span { display: block; font-weight: 700; font-size: .85em; color: var(--blue-500); margin-top: 6px; }
.statement-sub { max-width: 780px; margin: 16px auto 0; color: var(--ink-soft); font-size: clamp(15px, 1.3vw, 18px); }
.hand-heart-left { left: 0; top: 30%; color: var(--coral); font-size: 32px; transform: none; }
.hand-statement-right { right: 0; top: 4%; text-align: center; transform: rotate(5deg); }

.receive { background: var(--blue-50); }
.receive-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  margin-top: clamp(28px, 4vw, 48px);
}
.receive-figure { position: relative; }
.receive-figure img { border-radius: var(--radius-md); }
.hand-kit { left: -10px; bottom: -8px; text-align: left; }

.receive-list { display: grid; gap: 18px; }
.receive-list li { display: flex; align-items: center; gap: 16px; color: var(--blue-700); font-size: clamp(16px, 1.3vw, 19px); line-height: 1.3; }
.receive-list small { font-size: .78em; color: var(--ink-soft); font-weight: 600; }
.list-icon {
  flex: 0 0 auto;
  width: 48px; height: 48px; padding: 12px;
  border-radius: 50%;
  background: var(--blue-500);
  color: var(--white);
  display: grid; place-items: center;
}

/* =====================================================================
   3. PLATAFORMA
   ===================================================================== */
.platform { background: var(--white); }
.platform-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  margin-top: clamp(28px, 4vw, 48px);
}
.platform-figure { position: relative; }
.platform-figure img { border-radius: var(--radius-lg); }
.hand-platform { left: 10px; top: 14px; text-align: left; text-shadow: 0 1px 6px rgba(255,255,255,.95), 0 0 14px rgba(255,255,255,.9); }

.card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.card {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-md);
  padding: clamp(20px, 2vw, 28px);
  box-shadow: var(--shadow-card);
}
.card-icon {
  width: 56px; height: 56px; padding: 14px;
  border-radius: 50%;
  background: var(--yellow-100);
  color: var(--blue-700);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.card h3 { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.2; color: var(--blue-700); font-weight: 800; }
.card p { margin-top: 8px; color: var(--ink-soft); font-size: 15px; }

/* =====================================================================
   4. POR QUE COMEÇAR AGORA
   ===================================================================== */
.why {
  background: linear-gradient(180deg, #FCF7F2 0%, #F7EEE6 100%);
}
.why-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.5vw, 52px);
  box-shadow: 0 20px 50px rgba(120, 80, 40, .08);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(24px, 3.5vw, 48px);
  align-items: start;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 46px; height: 2px; background: var(--yellow); }
.why-title {
  margin-top: 16px;
  font-weight: 900;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.1;
  color: var(--blue-900);
  letter-spacing: -0.02em;
}
.why-title .coral { color: var(--coral); display: inline-block; position: relative; }
.why-title .coral::after {
  content: "";
  position: absolute; right: -.75em; top: .25em;
  width: .5em; height: .5em;
  background:
    linear-gradient(var(--yellow), var(--yellow)) 100% 0/45% 3px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) 100% 100%/3px 45% no-repeat;
  transform: rotate(-30deg);
}
.why-body { margin-top: 18px; color: var(--ink-soft); font-size: clamp(15px, 1.25vw, 18px); line-height: 1.6; }

.science-box {
  margin-top: 26px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  color: var(--blue-900);
}
.science-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.science-icon { width: 46px; height: 46px; padding: 10px; border-radius: 50%; background: var(--blue-100); color: var(--blue-500); display: grid; place-items: center; flex: 0 0 auto; }
.science-tag, .example-tag {
  font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 800;
  padding: 6px 12px; border-radius: var(--radius-pill);
}
.science-tag { background: var(--blue-100); color: var(--blue-700); }
.science-box p { font-size: clamp(15px, 1.2vw, 17px); line-height: 1.5; }
.big-number { margin-top: 6px; display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.big-number strong {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  color: var(--blue-700);
  background: var(--yellow-100);
  padding: 4px 14px;
  border-radius: 14px;
  font-weight: 900;
}
.source { margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--blue-100); font-size: 12.5px; color: var(--ink-soft); }

.why-media { display: grid; gap: 18px; }
.video-frame-real { margin-top: 0; max-width: none; aspect-ratio: 3 / 2; border-radius: var(--radius-md); }
.video-frame-real .play-btn { width: clamp(72px, 17%, 130px); }
/* botão alinhado com o play já presente na foto */
.play-btn-offset { left: 48%; top: 52.5%; }

.example-box {
  background: var(--cream);
  border: 1px solid #F1E3D6;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  color: var(--ink);
}
.example-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.example-icon { width: 46px; height: 46px; padding: 10px; border-radius: 50%; background: var(--coral-100); color: var(--coral); display: grid; place-items: center; flex: 0 0 auto; }
.example-tag { background: var(--coral-100); color: var(--coral); }
.example-box p { font-size: clamp(15px, 1.2vw, 17px); line-height: 1.55; color: var(--ink-soft); }

/* =====================================================================
   5. OFERTA
   ===================================================================== */
.offer { background: linear-gradient(180deg, var(--white) 0%, #FFF9EE 100%); padding-bottom: clamp(40px, 5vw, 64px); }
.offer-grid {
  display: grid;
  grid-template-columns: .9fr 1.3fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.offer-figure { position: relative; }
.offer-figure img { border-radius: var(--radius-lg); width: 100%; }
.hand-offer-left { left: 14px; top: 14px; text-align: left; color: var(--blue-900); text-shadow: 0 1px 6px rgba(255,255,255,.95), 0 0 14px rgba(255,255,255,.9); font-size: clamp(18px, 1.6vw, 24px); }

.offer-text { position: relative; padding-right: clamp(0px, 8vw, 120px); }
.hand-offer-right { right: 0; top: 0; text-align: center; color: var(--blue-900); transform: rotate(5deg); font-size: clamp(16px, 1.4vw, 22px); }
.offer-title {
  font-weight: 900;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--blue-900);
}
.offer-sub { margin-top: 12px; color: var(--ink-soft); font-size: clamp(15px, 1.25vw, 18px); }
.price { margin-top: 26px; display: flex; flex-direction: column; color: var(--blue-900); }
.price-installments { font-size: clamp(24px, 2.8vw, 40px); font-weight: 700; line-height: 1.1; white-space: nowrap; }
.price-installments strong { font-size: clamp(44px, 5vw, 76px); font-weight: 900; letter-spacing: -0.03em; }
.price-full { font-size: clamp(20px, 2vw, 30px); font-weight: 700; color: var(--blue-700); margin-top: 4px; }
.price-note { margin-top: 12px; color: var(--ink-soft); font-size: clamp(15px, 1.2vw, 17px); }
.offer-text .btn { margin-top: 24px; }
.hand-offer-note { position: static; display: block; margin-top: 18px; text-align: center; color: var(--ink-soft); font-size: clamp(18px, 1.5vw, 22px); transform: rotate(-2deg); }

.trust-cards {
  margin-top: clamp(32px, 4vw, 52px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-cards li {
  display: flex; align-items: center; gap: 14px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-card);
  color: var(--blue-900);
  font-size: 15px; line-height: 1.3;
}
.trust-cards li span:last-child { color: var(--ink-soft); }
.trust-cards strong { color: var(--blue-900); }
.trust-icon { flex: 0 0 auto; width: 48px; height: 48px; padding: 12px; border-radius: 50%; background: var(--blue-100); color: var(--blue-700); display: grid; place-items: center; }

/* =====================================================================
   6. CTA FINAL
   ===================================================================== */
.final { background: var(--blue-50); padding-bottom: clamp(48px, 6vw, 80px); }
.final-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.final-figure { position: relative; }
.final-figure img { border-radius: var(--radius-lg); width: 100%; }
.hand-final-left { left: 16px; top: 14px; bottom: auto; text-align: left; text-shadow: 0 1px 6px rgba(255,255,255,.95), 0 0 14px rgba(255,255,255,.9); }
.final-text { position: relative; padding-right: clamp(0px, 5vw, 90px); }
.hand-final-right { right: 0; top: 0; text-align: center; transform: rotate(5deg); }
.final-title { font-weight: 800; font-size: clamp(26px, 3vw, 40px); line-height: 1.15; color: var(--blue-900); letter-spacing: -0.01em; }
.final-title span { color: var(--blue-500); }
.final-sub { margin-top: 14px; text-transform: uppercase; font-weight: 800; font-size: clamp(12px, 1vw, 14px); letter-spacing: .02em; color: var(--blue-900); line-height: 1.5; }
.final-text .btn { margin-top: 24px; min-width: min(100%, 520px); }
.final-badges { margin-top: 26px; display: flex; flex-wrap: nowrap; gap: 0 18px; }
.final-badges li { display: flex; align-items: center; gap: 10px; font-size: 13px; white-space: nowrap; line-height: 1.25; color: var(--ink-soft); padding-block: 6px; }
.final-badges li + li { border-left: 1px solid var(--blue-200); padding-left: 18px; }
.final-badges strong { color: var(--blue-900); display: block; }
.mini-icon { flex: 0 0 auto; width: 34px; height: 34px; padding: 6px; color: var(--blue-700); }

/* =====================================================================
   RODAPÉ
   ===================================================================== */
.site-footer { background: var(--white); border-top: 1px solid var(--blue-100); padding-block: 36px; }
/* ---------- Faixa de credencial BNCC (rodapé) ---------- */
.bncc {
  width: min(100% - 2 * var(--gutter), 720px);
  margin: 0 auto clamp(28px, 3.5vw, 40px);
  padding: 18px 26px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: left;
}
.bncc img { width: clamp(104px, 12vw, 132px); height: auto; flex: 0 0 auto; }
.bncc p { font-size: 14px; line-height: 1.45; color: var(--ink-soft); max-width: 360px; }
.bncc strong { display: block; color: var(--blue-900); font-weight: 800; font-size: 15px; margin-bottom: 2px; }

@media (max-width: 720px) {
  .bncc { flex-direction: column; text-align: center; gap: 14px; }
  .bncc p { max-width: none; }
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.footer-copy { font-size: 13px; color: var(--ink-soft); }
.footer-logo { width: clamp(180px, 20vw, 230px); height: auto; margin-inline: auto; }
.footer-side { text-align: right; display: grid; gap: 8px; justify-items: end; }
.social { display: flex; gap: 14px; }
.social a { display: block; width: 30px; height: 30px; color: var(--blue-700); transition: color .15s; }
.social a:hover { color: var(--blue-500); }
.footer-tag { font-size: 14px; color: var(--blue-700); font-weight: 600; }
.footer-links { font-size: 13px; color: var(--ink-soft); display: flex; gap: 10px; }
.footer-links a:hover { color: var(--blue-500); }

/* =====================================================================
   RESPONSIVO
   ===================================================================== */
@media (max-width: 1280px) {
  .hand-statement-right, .hand-heart-left { display: none; }
}

@media (max-width: 1080px) {
  .hand-hero-left, .hand-hero-right { display: none; }
  .offer-text, .final-text { padding-right: 0; }
  .hand-offer-right, .hand-final-right { display: none; }
}

@media (max-width: 900px) {
  .receive-grid, .platform-grid, .why-panel, .offer-grid, .final-grid { grid-template-columns: 1fr; }
  .trust-cards { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-side { justify-items: center; text-align: center; }
  .footer-copy { order: 3; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .blob-1 { left: -160px; }
  .blob-2 { right: -160px; }

  /* menu mobile */
  .menu-toggle { display: flex; }
  .site-nav {
    position: absolute;
    left: 0; right: 0; top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--blue-100);
    box-shadow: 0 16px 30px rgba(18,48,107,.10);
    padding: 8px 0 12px;
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px var(--gutter); border: 0; }
  .site-nav .nav-cta { margin: 8px var(--gutter) 0; text-align: center; }

  /* hero como no mockup mobile */
  .hero-title { flex-direction: column; gap: 6px; font-size: clamp(28px, 8.4vw, 40px); }
  .hero-title-mark::before, .hero-title-mark::after { width: .5em; height: .5em; }
  .hero-title-mark::before { left: -.9em; }
  .hero-title-mark::after  { right: -.9em; }
  .hero-badges { flex-direction: column; align-items: stretch; width: 100%; margin-top: 24px; }
  .hero-badges li { padding: 16px 4px; }
  .hero-badges li + li { border-left: 0; border-top: 1px solid var(--blue-200); }
  .hero-cta { width: 100%; margin-top: 12px; }
  .hand-hero-mobile { display: block; position: static; margin-top: 22px; text-align: center; transform: rotate(-4deg); }

  .video-frame { border-radius: 16px; }
  .blob-1, .blob-2 { width: 320px; height: 260px; }

  .card-grid { grid-template-columns: 1fr; }
  .trust-cards { grid-template-columns: 1fr; }
  .final-badges { flex-direction: column; flex-wrap: wrap; gap: 4px; }
  .final-badges li { white-space: normal; }
  .final-badges li + li { border-left: 0; padding-left: 0; border-top: 1px solid var(--blue-200); }
  .final-text .btn, .offer-text .btn { width: 100%; }
  .hand-kit, .hand-platform, .hand-offer-left, .hand-final-left { display: none; }
  .btn-wide { font-size: 14px; padding: 16px 14px; white-space: normal; }
  .price-installments { white-space: normal; }
  .price-installments strong { font-size: clamp(40px, 12vw, 60px); }
}

/* ---------- Acessibilidade: movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .gated { animation: none; }
  .btn, .play-btn { transition: none; }
}

/* =====================================================================
   PÁGINAS LEGAIS (Termos de Uso / Política de Privacidade)
   ===================================================================== */
.back-link {
  font-weight: 700;
  color: var(--blue-700);
  font-size: 15px;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: border-color .15s;
}
.back-link:hover { border-color: var(--yellow); }

.legal { background: var(--blue-50); padding-block: clamp(36px, 5vw, 64px); }
.legal-container { max-width: 820px; }

.legal-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--blue-900);
  margin-top: 14px;
}
.legal-meta { margin-top: 8px; color: var(--ink-soft); font-size: 14px; }

.legal-box {
  margin-top: 26px;
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-left: 5px solid var(--blue-500);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
}
.legal-box p { color: var(--ink-soft); font-size: 16px; line-height: 1.6; }
.legal-box-highlight { border-left-color: var(--yellow-600); background: #FFFCF2; }

.legal-toc {
  margin-top: 26px;
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-md);
  padding: 22px 26px;
}
.toc-title {
  font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 800; color: var(--ink-soft); margin-bottom: 12px;
}
.legal-toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 32px; }
.legal-toc li { font-size: 15px; margin-bottom: 7px; color: var(--ink-soft); break-inside: avoid; }
.legal-toc a { color: var(--blue-700); font-weight: 600; }
.legal-toc a:hover { text-decoration: underline; }

.legal section { margin-top: clamp(32px, 4vw, 44px); scroll-margin-top: 90px; }
.legal h2 {
  font-size: clamp(21px, 2.2vw, 27px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--blue-700);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue-100);
}
.legal h3 {
  font-size: clamp(17px, 1.6vw, 19px);
  font-weight: 800;
  color: var(--blue-900);
  margin-top: 22px;
}
.legal p { margin-top: 14px; color: var(--ink-soft); font-size: 16px; line-height: 1.65; }
.legal a { color: var(--blue-500); font-weight: 700; }
.legal a:hover { text-decoration: underline; }
.legal strong { color: var(--ink); }

.legal-list { margin-top: 14px; display: grid; gap: 10px; }
.legal-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}
.legal-list li::before {
  content: "";
  position: absolute;
  left: 2px; top: .62em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

.legal-table-wrap { margin-top: 18px; overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--blue-100); }
.legal-table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 14.5px; min-width: 560px; }
.legal-table th, .legal-table td { padding: 12px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--blue-100); }
.legal-table th { background: var(--blue-100); color: var(--blue-900); font-weight: 800; font-size: 13px; letter-spacing: .02em; }
.legal-table td { color: var(--ink-soft); line-height: 1.5; }
.legal-table tr:last-child td { border-bottom: 0; }

.legal-note {
  margin-top: 16px;
  background: var(--yellow-100);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14.5px;
  color: #6B5200;
}

.legal-updated { margin-top: clamp(36px, 4vw, 48px); padding-top: 20px; border-top: 1px solid var(--blue-200); font-size: 14px; }
.legal-nav { margin-top: 8px; font-size: 16px; }

@media (max-width: 720px) {
  .legal-toc ol { columns: 1; }
  .back-link { font-size: 14px; }
}
