/* ─────────────────────────────────────────────────────────────────────────────
   PICKY — Landing (editorial / scrapbook redesign)
   Dark / off-white alternating. Mobile-first.
───────────────────────────────────────────────────────────────────────────── */

@font-face {
  font-family: 'KidDOS';
  src: url('assets/fonts/KIdDOS-Regular.otf') format('opentype');
  font-display: swap;
}

/* ── RESET ──────────────────────────────────────────────────────────────────── */

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

:root {
  --coral:   #F35C4A;
  --lavanda: #DBD3EC;
  --amarelo: #FFE361;
  --verde:   #2B9F69;
  --vinho:   #742218;
  --offWhite:#FFFBEA;
  --black:   #1A1A1A;
  --white:   #FFFFFF;
  --gray:    #9A9A9A;
  --dark:    #111111;
  --border:  rgba(255,255,255,0.08);
}

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

body {
  background: var(--dark);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* Remove tap highlight flash on iOS */
a, button, input, .btn, .opt-card, .rcard {
  -webkit-tap-highlight-color: transparent;
}
em  { font-style: normal; }

.coral   { color: var(--coral); }
.amarelo { color: var(--amarelo); }
.verde   { color: var(--verde); }

/* ── WAVY UNDERLINE ──────────────────────────────────────────────────────────── */

.wavy-u {
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: currentColor;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

/* ── SPARKLES ────────────────────────────────────────────────────────────────── */

.spark {
  font-size: var(--s, 24px);
  color: var(--c, #FFE361);
  transform: rotate(var(--r, 0deg));
  display: inline-block;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  position: absolute;
}

.spark-inline {
  font-size: 0.7em;
  display: inline-block;
  color: var(--coral);
  margin: 0 2px;
}
.spark-inline.coral { color: var(--coral); }

/* ── POST-ITS ────────────────────────────────────────────────────────────────── */

.postit {
  position: absolute;
  display: inline-block;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  border-radius: 3px;
  pointer-events: none;
  z-index: 3;
  box-shadow: 2px 4px 14px rgba(0,0,0,0.2);
}


.postit-resultado {
  position: static;
  margin-top: 20px;
  background: var(--amarelo);
  color: var(--black);
  transform: rotate(-3deg);
  font-size: 13px;
  display: inline-block;
}

/* ── KidDOS TAGS ─────────────────────────────────────────────────────────────── */

.kiddo-tag {
  font-family: 'KidDOS', sans-serif;
  font-size: 14px;
  background: var(--amarelo);
  color: var(--black);
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
}

/* ── STAMP BADGE ─────────────────────────────────────────────────────────────── */

.stamp-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 3px solid var(--coral);
  color: var(--coral);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transform: rotate(-12deg);
  margin-bottom: 24px;
  opacity: 0.85;
  position: absolute;
  right: 28px;
  top: 100px;
}

/* ── ASIDE NOTE (handwritten feel) ──────────────────────────────────────────── */



/* ── BUTTONS ─────────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, opacity 0.15s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.96); }

.btn-coral   { background: var(--coral); color: var(--white); }
.btn-coral:hover { opacity: 0.88; }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: rgba(255,255,255,0.5); }
.btn-dark    { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #2a2a2a; }
.btn-sm      { padding: 10px 20px; font-size: 13px; }

/* ── NAV ─────────────────────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(env(safe-area-inset-top, 0px) + 16px) max(28px, env(safe-area-inset-right, 28px)) 16px max(28px, env(safe-area-inset-left, 28px));
  background: rgba(17,17,17,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.nav-logo { height: 26px; width: auto; }

.nav-links { display: none; gap: 28px; }
.nav-links a { font-size: 14px; color: var(--gray); transition: color 0.15s; }
.nav-links a:hover { color: var(--white); }

/* ── PHONE FRAME ─────────────────────────────────────────────────────────────── */

.phone {
  border-radius: 44px;
  padding: 10px;
  background: #1a1a1a;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.phone img {
  width: 100%;
  border-radius: 36px;
  display: block;
}

.tilted-r { transform: rotate(2.5deg); }
.tilted-l { transform: rotate(-2.5deg); }

/* ── GENERIC STICKER CLASS ───────────────────────────────────────────────────── */

.s {
  position: absolute;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(env(safe-area-inset-top, 0px) + 110px) 28px calc(env(safe-area-inset-bottom, 0px) + 80px);
  display: flex;
  flex-direction: column;
  gap: 56px;
  overflow: hidden;
  background: var(--dark);
}

/* Decorative circles — behind content */
.hero-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.c1 {
  width: 300px; height: 300px;
  background: #2a0f0a;
  top: -100px; right: -120px;
}
.c2 {
  width: 200px; height: 200px;
  background: #1e0b09;
  bottom: 40px; right: 20px;
}

/* Content above circles */
.hero-left, .hero-right { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--amarelo);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.hero-title {
  font-size: clamp(40px, 11vw, 88px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero phone sticker */

.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-phone {
  width: min(280px, 80vw);
}

/* Post-its — hidden on very small screens, show from sm */
.postit-hero-1,
.postit-hero-2 { display: none; }

/* ══════════════════════════════════════════════════════════════════════════════
   PROBLEMA
══════════════════════════════════════════════════════════════════════════════ */

.problema {
  background: var(--offWhite);
  color: var(--black);
  padding: 80px 28px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.prob-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}

.prob-lines span {
  font-size: clamp(36px, 10vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--black);
}

.prob-close {
  font-size: clamp(30px, 8vw, 62px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--black);
}

/* ── PROB-LINES: scroll narrative ─────────────────────────────────────────── */

@media (prefers-reduced-motion: no-preference) {
  .prob-line,
  .prob-close {
    opacity: 0.15;
    transition: opacity 0.45s ease, transform 0.45s ease;
  }
  .prob-line {
    transform: translateY(0);
  }
  .prob-line.active {
    opacity: 1;
    transform: translateY(-4px);
  }
  .prob-close {
    transform: scale(0.97);
  }
  .prob-close.active {
    opacity: 1;
    transform: scale(1);
  }
}

/* Chat */
.chat { display: flex; flex-direction: column; gap: 10px; }

.bubble { display: flex; align-items: flex-end; gap: 8px; }
.bubble.br { flex-direction: row-reverse; }

.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.av1 { background: #e0d8f4; }
.av2 { background: #ffd6cf; }

.btext {
  background: var(--white);
  border-radius: 18px 18px 18px 4px;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.bubble.br .btext {
  background: var(--coral);
  color: var(--white);
  border-radius: 18px 18px 4px 18px;
}

.btime {
  display: block;
  font-size: 10px;
  font-weight: 400;
  margin-top: 3px;
  opacity: 0.5;
}


/* ══════════════════════════════════════════════════════════════════════════════
   SOLUÇÃO
══════════════════════════════════════════════════════════════════════════════ */

.solucao {
  background: var(--coral);
  padding: 80px 28px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  overflow: hidden;
  position: relative;
}

.solucao-label-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.solucao-label {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
  margin-bottom: 24px;
}

.solucao-phone { width: min(260px, 75vw); }

.solucao-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.opt-card {
  background: var(--white);
  border-radius: 18px;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: transform 0.15s;
}
.opt-card:hover { transform: scale(1.01) rotate(-0.5deg); }
.opt-card:active { transform: scale(0.98); }

/* Middle card slightly offset for game-card feel */
.opt-card-2 { transform: translateX(8px); }
.opt-card-2:hover { transform: translateX(8px) scale(1.01); }

.opt-icon { font-size: 28px; flex-shrink: 0; }
.opt-body { flex: 1; }
.opt-title { font-size: 16px; font-weight: 800; color: var(--black); }
.opt-desc  { font-size: 12px; color: var(--gray); margin-top: 3px; }
.opt-arr   { font-size: 18px; color: var(--gray); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════════════════════
   QUIZ + RESULTADO
══════════════════════════════════════════════════════════════════════════════ */

.quiz-resultado {
  display: flex;
  flex-direction: column;
}

.qr-half {
  padding: 80px 28px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: relative;
  overflow: hidden;
}

.quiz-half     { background: var(--lavanda); color: var(--black); }
.resultado-half { background: #1c3328;       color: var(--white); }

.qr-copy h2 {
  font-size: clamp(30px, 8.5vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.qr-copy h2 strong { font-weight: 900; }

.qr-copy p {
  font-size: 16px;
  margin-top: 12px;
  opacity: 0.65;
}

.qr-phone { width: min(240px, 70vw); }

/* ══════════════════════════════════════════════════════════════════════════════
   RESTAURANTE — mural
══════════════════════════════════════════════════════════════════════════════ */

.restaurante {
  background: var(--offWhite);
  color: var(--black);
  padding: 80px 28px;
  overflow: hidden;
  position: relative;
}

.rest-headline {
  font-size: clamp(32px, 9vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
}

.rest-wall {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.review-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Rotated review cards */
.rcard {
  background: var(--white);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 2px 4px 16px rgba(0,0,0,0.08);
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.2s;
}
.rcard:hover { transform: rotate(0deg) scale(1.01); }

.rcard-dark {
  background: var(--black);
  color: var(--white);
}

.rq {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}
.rcard-dark .rq { color: var(--white); }

.rauthor { font-size: 12px; color: var(--gray); }

.s-rest {
  width: 100px;
  display: block;
  margin-top: 8px;
  transform: rotate(-5deg);
  opacity: 0.9;
}

/* Phones */
.rest-phones {
  position: relative;
  height: 420px;
}

.rp-back {
  width: 200px;
  position: absolute;
  left: 0; top: 30px;
  opacity: 0.65;
  transform: rotate(-4deg);
}

.rp-front {
  width: 200px;
  position: absolute;
  right: 0; top: 0;
  transform: rotate(3deg);
}

/* ══════════════════════════════════════════════════════════════════════════════
   MAPA
══════════════════════════════════════════════════════════════════════════════ */

.mapa {
  background: var(--dark);
  padding: 80px 28px;
  overflow: hidden;
  position: relative;
}

.mapa-header {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 24px;
  justify-content: space-between;
}

.mapa-header h2 {
  font-size: clamp(34px, 9.5vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.mapa-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-shrink: 0;
}

.mapa-num {
  font-size: clamp(56px, 14vw, 110px);
  font-weight: 900;
  line-height: 1;
  color: var(--amarelo);
  letter-spacing: -0.04em;
}

.mapa-label-txt {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.3;
}

.mapa-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.mapa-phone { width: min(300px, 85vw); }

/* ══════════════════════════════════════════════════════════════════════════════
   FUTURO
══════════════════════════════════════════════════════════════════════════════ */

.futuro {
  background: var(--offWhite);
  color: var(--black);
  padding: 80px 28px;
}

.futuro-text { margin-bottom: 40px; }

.futuro-text h2 {
  font-size: clamp(30px, 8vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.futuro-text h2 strong { font-weight: 900; }

.futuro-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.fi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.38;
}
.fi.fi-active { opacity: 1; }
.fi-icon { font-size: 30px; }
.fi-name { font-size: 12px; font-weight: 600; color: var(--black); }
.fi-active .fi-name { color: var(--coral); }
.fi-sep { font-size: 22px; color: #ccc; }

/* ══════════════════════════════════════════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════════════════════════════════════════ */

.cta-final {
  background: var(--coral);
  padding: 100px 28px calc(env(safe-area-inset-bottom, 0px) + 100px);
  position: relative;
  overflow: hidden;
}

/* Stickers */
.cta-s1 { width: 90px;  bottom: 24px; left: 12px;   transform: rotate(-8deg); opacity: 0.9; }
.cta-s2 { width: 100px; top: 20px;    right: 12px;   transform: rotate(10deg); opacity: 0.85; }
.cta-s3 { width: 80px;  bottom: 20px; right: 56px;   transform: rotate(-4deg); opacity: 0.8; }
.cta-s4 { width: 70px;  top: 16px;    left: 56px;    transform: rotate(14deg); opacity: 0.75; }

.cta-content { position: relative; z-index: 1; max-width: 540px; }

.cta-eyebrow {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.cta-title {
  font-size: clamp(42px, 12vw, 88px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 44px;
}

.wl-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.wl-input {
  background: rgba(255,255,255,0.95);
  border: none;
  border-radius: 14px;
  padding: 18px 22px;
  font-size: 16px;
  color: var(--black);
  font-family: inherit;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.wl-input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,0.4); }
.wl-input::placeholder { color: #aaa; }

.wl-form .btn-dark {
  padding: 18px;
  font-size: 16px;
  border-radius: 14px;
  width: 100%;
}

.wl-fine {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

.wl-success {
  background: rgba(0,0,0,0.2);
  border-radius: 14px;
  padding: 22px;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

/* ══════════════════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════════════════ */

.footer {
  background: #0a0a0a;
  border-top: 1px solid var(--border);
  padding: 36px 28px calc(env(safe-area-inset-bottom, 0px) + 36px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  height: 22px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}
.footer-copy  { font-size: 13px; color: var(--gray); }
.footer-links { display: flex; gap: 16px; }
.footer-links a { font-size: 13px; color: var(--gray); transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }

/* ══════════════════════════════════════════════════════════════════════════════
   DESKTOP  ≥ 640px — post-its aparecem
══════════════════════════════════════════════════════════════════════════════ */

@media (min-width: 640px) {
  .postit-hero-1,
  .postit-hero-2 { display: inline-block; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   DESKTOP  ≥ 768px
══════════════════════════════════════════════════════════════════════════════ */

@media (min-width: 768px) {

  .nav-links { display: flex; }

  /* Hero */
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: calc(env(safe-area-inset-top, 0px) + 120px) 64px calc(env(safe-area-inset-bottom, 0px) + 100px);
    gap: 60px;
  }
  .hero-left { max-width: 52%; }
  .hero-right { flex: 1; display: flex; justify-content: flex-end; position: relative; }
  .hero-phone { width: min(320px, 38vw); }

  /* Problema */
  .problema { flex-direction: row; align-items: flex-start; padding: 100px 64px; gap: 60px; }
  .problema-left { flex: 1; }
  .problema-right { flex: 1; padding-top: 16px; }

  /* Solução */
  .solucao { flex-direction: row; align-items: center; padding: 100px 64px; gap: 60px; }
  .solucao-left { flex: 0 0 auto; }
  .solucao-right { flex: 1; }

  /* Quiz + Resultado */
  .quiz-resultado { flex-direction: row; }
  .qr-half { flex: 1; padding: 100px 60px; min-height: 660px; justify-content: center; }

  /* Restaurante */
  .restaurante { padding: 100px 64px; }
  .stamp-badge { right: 64px; top: 90px; }
  .rest-wall { flex-direction: row; align-items: flex-start; gap: 40px; }
  .review-col { flex: 0 0 300px; }
  .rest-phones { flex: 1; height: 500px; }
  .rp-back  { width: 240px; }
  .rp-front { width: 240px; }

  /* Mapa */
  .mapa { padding: 100px 64px; }
  .mapa-phone { width: min(340px, 40vw); }

  /* Futuro */
  .futuro { padding: 100px 64px; }

  /* CTA */
  .cta-final { padding: 120px 64px calc(env(safe-area-inset-bottom, 0px) + 120px); }
  .wl-form { flex-direction: row; gap: 8px; }
  .wl-input { border-radius: 100px; flex: 1; }
  .wl-form .btn-dark { width: auto; flex-shrink: 0; border-radius: 100px; padding: 18px 32px; }

  /* Footer */
  .footer { flex-direction: row; align-items: center; justify-content: space-between; padding: 28px 64px calc(env(safe-area-inset-bottom, 0px) + 28px); }
}

/* ══════════════════════════════════════════════════════════════════════════════
   LARGE  ≥ 1100px
══════════════════════════════════════════════════════════════════════════════ */

@media (min-width: 1100px) {
  .hero        { padding: 130px 96px 110px; }
  .hero-phone  { width: min(360px, 32vw); }
  .c1 { width: 460px; height: 460px; top: -150px; right: -130px; }
  .c2 { width: 300px; height: 300px; bottom: 50px; right: 60px; }

  .problema    { padding: 120px 96px; }
  .solucao     { padding: 120px 96px; }
  .qr-half     { padding: 120px 80px; }

  .restaurante  { padding: 120px 96px; }
  .stamp-badge  { right: 96px; }
  .rest-phones  { height: 560px; }
  .rp-back, .rp-front { width: 280px; }
  .review-col   { flex: 0 0 340px; }

  .mapa        { padding: 120px 96px; }
  .mapa-phone  { width: min(380px, 35vw); }

  .futuro      { padding: 120px 96px; }
  .cta-final   { padding: 140px 96px; }
  .footer      { padding: 28px 96px; }
}

/* ── CTA Dialogue ────────────────────────────────────────────────────────────── */

.cta-dialogue {
  margin-bottom: 20px;
}

.cta-dia-label {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

.cta-dia-quotes {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-dia-quotes span {
  font-size: clamp(26px, 7vw, 54px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.32);
  font-style: italic;
}

/* ── Waitlist extras ─────────────────────────────────────────────────────────── */

.wl-social-proof {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.wl-social-proof span {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}

.wl-incentive {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}

.wl-dup-msg {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-top: 12px;
}

/* ── Footer meta group ───────────────────────────────────────────────────────── */

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-waitlist-count {
  font-size: 13px;
  color: var(--gray);
}

/* ─────────────────────────────────────────────────────────────────────────────
   PÁGINAS LEGAIS  (privacy, terms, support, account-deletion)
───────────────────────────────────────────────────────────────────────────── */

.legal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--dark);
  z-index: 10;
}

.legal-back {
  font-size: 14px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  min-width: 60px;
}
.legal-back:hover { color: var(--white); }

.legal-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.legal-badge {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.legal-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 40px;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--coral);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.legal-section h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 20px 0 8px;
  color: var(--white);
}

.legal-section p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin-bottom: 12px;
}

.legal-section ul,
.legal-section ol {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-section li {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin-bottom: 6px;
}

.legal-contact {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  margin-top: 40px;
  text-align: center;
}

.legal-contact p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin-bottom: 6px;
}

.legal-contact a {
  color: var(--coral);
  font-weight: 700;
}

.legal-footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
}

.legal-footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.legal-footer-links a {
  font-size: 13px;
  color: var(--gray);
  transition: color 0.2s;
}
.legal-footer-links a:hover { color: var(--white); }

.legal-footer p {
  font-size: 12px;
  color: var(--gray);
}

/* ── FAQ accordion ─────────────────────────────────────────────────────────── */

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: none;
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: inherit;
  transition: background 0.2s;
}
.faq-question:hover  { background: rgba(255,255,255,0.07); }
.faq-question.open   { color: var(--coral); }

.faq-answer {
  display: none;
  padding: 4px 20px 18px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.68);
}
.faq-answer.open { display: block; }

.faq-chevron { transition: transform 0.2s; flex-shrink: 0; }
.faq-question.open .faq-chevron { transform: rotate(180deg); }

/* ── Contact form ──────────────────────────────────────────────────────────── */

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  margin-top: 32px;
}

.contact-form h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.28);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--coral);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
  transition: opacity 0.2s;
}
.form-submit:hover { opacity: 0.85; }

/* ── Account deletion ──────────────────────────────────────────────────────── */

.deletion-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.deletion-steps li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.65;
}

.deletion-steps li::before {
  content: counter(step);
  min-width: 28px;
  height: 28px;
  background: var(--coral);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.warning-box {
  background: rgba(243,92,74,0.1);
  border: 1px solid rgba(243,92,74,0.3);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 20px 0;
}

.warning-box p {
  color: rgba(255,255,255,0.85) !important;
  margin: 0 !important;
  font-size: 14px !important;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}

.data-table th,
.data-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.data-table th {
  color: var(--gray);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.data-table td { color: rgba(255,255,255,0.72); }

.badge-removed { color: #F35C4A; font-weight: 700; }
.badge-kept    { color: var(--gray); }
}
