/* =============================================================================
   VibeCore — styles.css (redesign 2026, tema noturno)
   -----------------------------------------------------------------------------
   Céu estrelado em todo o site (coerente com o tema da app) + contentores
   glass, MAS com a disciplina do redesign: hierarquia forte, ritmo entre
   secções (faixas subtis + auras de cor), botões "chunky" com pressão,
   tipografia Fredoka, e decoração controlada (sem nuvens, sem ruído).

   Estrutura:
     1. Tokens
     2. Base / céu estrelado global
     3. Componentes (botões, cartões glass, glasspanel, eyebrow, marquee)
     4. Navbar
     5. Secções (hero → footer)
     6. Responsivo
     7. Acessibilidade / reduced motion
   ========================================================================== */

/* ============================== 1. TOKENS ============================== */
:root {
  /* Fundo (céu) */
  --bg:           #150C36;   /* noite profunda */
  --bg-deep:      #0F0827;   /* ainda mais funda (footer / interlúdios) */
  --bg-raise:     #1D1247;   /* faixas ligeiramente elevadas */

  /* Texto */
  --text:         #F1EDFF;   /* “luar” — texto principal */
  --text-soft:    #B7ABDF;   /* texto secundário */
  --text-faint:   #8B7FB8;

  /* Glass */
  --glass:        rgba(255, 255, 255, 0.055);
  --glass-strong: rgba(255, 255, 255, 0.09);
  --glass-line:   rgba(255, 255, 255, 0.14);
  --glass-line-2: rgba(255, 255, 255, 0.22);

  /* Marca */
  --purple:       #8B6FFF;   /* roxo mais luminoso p/ fundo escuro */
  --purple-deep:  #5B3FD6;
  --purple-glow:  rgba(139, 111, 255, 0.32);
  --orange:       #E65F2B;
  --orange-hi:    #F2854E;
  --orange-deep:  #B54818;
  --gold:         #F5B301;
  --green:        #7ED957;

  /* Tipografia */
  --font-display: "Fredoka", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body:    "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  /* Forma */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;

  --container: 1120px;
  --nav-h: 72px;
}

/* Compatibilidade: tokens usados por assets/legal.css (páginas legais/apoio),
   redefinidos para o tema noturno atual. */
:root {
  --white: #FFFFFF;
  --text-on-dark: #C6BFDA;   /* "branco sujo" acinzentado — corpo de texto legal */
  --text-gray: #9C92BA;
  --orange-soft: #F2854E;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --r-pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --sky-deepest: #150C36;
  --gutter: clamp(20px, 4vw, 32px);
  --shadow-lg: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
  --shadow-orange: 0 12px 34px -12px rgba(230, 95, 43, 0.5);
}

/* ============================== 2. BASE / CÉU ============================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(1100px 700px at 85% -6%, rgba(139, 111, 255, 0.14), transparent 60%),
    radial-gradient(900px 620px at -10% 22%, rgba(230, 95, 43, 0.08), transparent 55%),
    linear-gradient(180deg, #1A0F41 0%, var(--bg) 34%, var(--bg) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Céu estrelado global (duas camadas fixas, CSS puro) */
.sky, .sky::after {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  content: "";
}
.sky {
  background-image:
    radial-gradient(1.6px 1.6px at 8% 12%, rgba(255,255,255,0.85) 50%, transparent 51%),
    radial-gradient(1px 1px at 21% 34%, rgba(255,255,255,0.5) 50%, transparent 51%),
    radial-gradient(1.4px 1.4px at 33% 8%, rgba(255,255,255,0.7) 50%, transparent 51%),
    radial-gradient(1px 1px at 45% 26%, rgba(255,255,255,0.45) 50%, transparent 51%),
    radial-gradient(1.8px 1.8px at 58% 15%, rgba(255,255,255,0.8) 50%, transparent 51%),
    radial-gradient(1px 1px at 66% 41%, rgba(255,255,255,0.5) 50%, transparent 51%),
    radial-gradient(1.4px 1.4px at 78% 6%, rgba(255,255,255,0.75) 50%, transparent 51%),
    radial-gradient(1px 1px at 87% 30%, rgba(255,255,255,0.45) 50%, transparent 51%),
    radial-gradient(1.6px 1.6px at 94% 18%, rgba(255,255,255,0.65) 50%, transparent 51%),
    radial-gradient(1px 1px at 14% 58%, rgba(255,255,255,0.4) 50%, transparent 51%),
    radial-gradient(1.4px 1.4px at 40% 66%, rgba(255,255,255,0.55) 50%, transparent 51%),
    radial-gradient(1px 1px at 71% 62%, rgba(255,255,255,0.42) 50%, transparent 51%),
    radial-gradient(1.2px 1.2px at 5% 84%, rgba(255,214,186,0.6) 50%, transparent 51%),
    radial-gradient(1.4px 1.4px at 52% 88%, rgba(230,222,255,0.55) 50%, transparent 51%),
    radial-gradient(1.2px 1.2px at 90% 80%, rgba(255,255,255,0.5) 50%, transparent 51%);
  animation: twinkle 6s ease-in-out infinite alternate;
}
.sky::after {
  background-image:
    radial-gradient(1px 1px at 27% 20%, rgba(255,255,255,0.55) 50%, transparent 51%),
    radial-gradient(1.4px 1.4px at 62% 33%, rgba(255,255,255,0.6) 50%, transparent 51%),
    radial-gradient(1px 1px at 49% 48%, rgba(255,255,255,0.4) 50%, transparent 51%),
    radial-gradient(1.4px 1.4px at 83% 52%, rgba(255,255,255,0.55) 50%, transparent 51%),
    radial-gradient(1px 1px at 10% 40%, rgba(255,255,255,0.45) 50%, transparent 51%),
    radial-gradient(1px 1px at 35% 92%, rgba(255,255,255,0.4) 50%, transparent 51%),
    radial-gradient(1.4px 1.4px at 68% 78%, rgba(255,255,255,0.5) 50%, transparent 51%);
  animation: twinkle 8s ease-in-out infinite alternate-reverse;
}
@keyframes twinkle { from { opacity: 0.4; } to { opacity: 1; } }

/* Todo o conteúdo por cima do céu */
body > header, body > main, body > footer { position: relative; z-index: 1; }

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; }

.container {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--orange); color: #fff; padding: 10px 18px;
  border-radius: 0 0 var(--r-sm) 0; z-index: 200; text-decoration: none;
}
.skip-link:focus { left: 0; }

::selection { background: rgba(139, 111, 255, 0.45); color: #fff; }

a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--orange-hi);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ============================== 3. COMPONENTES ============================== */

/* --- Eyebrow --- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: #CBBDFF;
  background: rgba(139, 111, 255, 0.16);
  border: 1px solid rgba(139, 111, 255, 0.3);
  padding: 7px 14px; border-radius: 999px;
  margin: 0 0 18px;
}
.eyebrow--peach {
  color: var(--orange-hi);
  background: rgba(230, 95, 43, 0.14);
  border-color: rgba(242, 133, 78, 0.35);
}

.h-display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  letter-spacing: -0.01em;
  text-wrap: balance;
  color: var(--text);
}
.sub {
  color: var(--text-soft);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 56ch;
  margin: 14px 0 0;
  text-wrap: pretty;
}

.section { padding: clamp(72px, 9vw, 116px) 0; position: relative; }
/* faixa subtilmente elevada — cria o ritmo entre secções sem sair da noite */
.section--panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.028), rgba(255,255,255,0.014));
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
/* interlúdio mais profundo (alone + finalcta) */
.section--deep {
  background: linear-gradient(180deg, rgba(9,5,26,0.55), rgba(9,5,26,0.35));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.section__head { margin-bottom: clamp(36px, 5vw, 56px); }
.section__head--center { text-align: center; }
.section__head--center .sub { margin-inline: auto; }
.section__head--center .eyebrow { margin-inline: auto; }

/* --- Botões "chunky" --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 800; font-size: 1rem;
  padding: 14px 26px; border-radius: var(--r-md);
  border: 0; cursor: pointer; text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.15s ease;
  will-change: transform;
  min-height: 52px;
}
.btn:active { transform: translateY(4px); box-shadow: 0 0 0 transparent !important; }

.btn--primary {
  background: linear-gradient(180deg, var(--orange-hi), var(--orange));
  color: #fff;
  box-shadow: 0 4px 0 var(--orange-deep), 0 10px 34px -10px rgba(230, 95, 43, 0.55);
}
.btn--primary:hover { filter: brightness(1.08); }

.btn--purple {
  background: linear-gradient(180deg, #9A82FF, var(--purple));
  color: #fff;
  box-shadow: 0 4px 0 var(--purple-deep), 0 10px 34px -10px var(--purple-glow);
}
.btn--purple:hover { filter: brightness(1.07); }

.btn--ghost {
  background: var(--glass); color: var(--text);
  border: 2px solid var(--glass-line);
  box-shadow: 0 4px 0 rgba(0,0,0,0.35);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.btn--ghost:hover { border-color: var(--glass-line-2); background: var(--glass-strong); }

/* --- Botões das lojas --- */
.storebtn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--glass-strong); color: #fff; text-decoration: none;
  border: 1.5px solid var(--glass-line);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  padding: 10px 20px 10px 16px; border-radius: var(--r-md);
  box-shadow: 0 4px 0 rgba(0,0,0,0.4);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s, border-color 0.15s;
  min-height: 58px;
}
.storebtn:hover { background: rgba(255,255,255,0.14); border-color: var(--glass-line-2); }
.storebtn:active { transform: translateY(4px); box-shadow: 0 0 0 transparent; }
.storebtn svg { width: 26px; height: 26px; flex: none; }
.storebtn__txt { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.storebtn__small { font-size: 0.68rem; font-weight: 500; opacity: 0.8; }
.storebtn__big { font-size: 1.05rem; font-weight: 700; letter-spacing: 0.01em; }

.store-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* --- Cartões glass --- */
.card {
  background: var(--glass);
  border: 1.5px solid var(--glass-line);
  border-radius: var(--r-lg);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  box-shadow: 0 14px 40px -18px rgba(0, 0, 0, 0.5);
  padding: 26px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-line-2);
  background: var(--glass-strong);
}
.card h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.18rem; margin: 14px 0 8px; color: var(--text);
}
.card p { margin: 0; color: var(--text-soft); font-size: 0.97rem; }

.card__icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: grid; place-items: center;
  background: rgba(139, 111, 255, 0.18); color: #C4B4FF;
  border: 1px solid rgba(139, 111, 255, 0.3);
}
.card__icon svg { width: 26px; height: 26px; }
.card__icon--peach {
  background: rgba(230, 95, 43, 0.16); color: var(--orange-hi);
  border-color: rgba(242, 133, 78, 0.32);
}
.card__icon--gold {
  background: rgba(245, 179, 1, 0.14); color: var(--gold);
  border-color: rgba(245, 179, 1, 0.3);
}

/* --- Glasspanel (contentor dos mockups: quiz, exercício, chat) --- */
.glasspanel {
  width: 340px; max-width: 92vw;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04) 55%);
  border: 1.5px solid var(--glass-line);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  box-shadow:
    0 30px 70px -24px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  padding: 22px 20px 20px;
  margin-inline: auto;
  position: relative;
}
.glasspanel__body {
  min-height: 520px;
  display: flex; flex-direction: column;
  position: relative;
}
.glasspanel__head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.glasspanel__head img { width: 30px; height: auto; }
.glasspanel__title {
  font-family: var(--font-display); font-weight: 500; font-size: 0.95rem;
  color: var(--text);
}

/* --- Marquee --- */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee__track {
  display: flex; align-items: center; gap: 0;
  width: max-content;
  animation: marquee 42s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================== 4. NAVBAR ============================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(18, 10, 44, 0.72);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav.is-scrolled {
  border-bottom-color: rgba(255,255,255,0.09);
  background: rgba(15, 8, 39, 0.85);
}

.nav__inner {
  height: var(--nav-h);
  display: flex; align-items: center; gap: 28px;
}
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 34px; width: auto; }

.nav__links { display: flex; gap: 26px; margin-left: 8px; }
.nav__links a {
  text-decoration: none; font-weight: 700; font-size: 0.95rem;
  color: var(--text-soft); padding: 6px 2px; border-radius: 8px;
  transition: color 0.15s ease;
}
.nav__links a:hover { color: var(--text); }

.nav__actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav__cta { padding: 10px 20px; min-height: 44px; font-size: 0.92rem; }

/* Seletor de idioma */
.lang { position: relative; }
.lang__btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--glass); border: 1.5px solid var(--glass-line);
  border-radius: var(--r-sm);
  padding: 8px 12px; cursor: pointer; font-weight: 800; font-size: 0.85rem;
  color: var(--text); min-height: 44px;
  transition: border-color 0.15s ease, background 0.15s;
}
.lang__btn:hover { border-color: var(--glass-line-2); background: var(--glass-strong); }
.lang__btn svg { color: var(--text-soft); }
.lang__menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: rgba(26, 15, 60, 0.96);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border: 1.5px solid var(--glass-line); border-radius: var(--r-md);
  box-shadow: 0 20px 50px -14px rgba(0,0,0,0.7);
  list-style: none; margin: 0; padding: 6px; min-width: 170px; z-index: 50;
}
.lang__menu li {
  padding: 10px 14px; border-radius: 10px; cursor: pointer;
  font-weight: 600; font-size: 0.92rem; color: var(--text-soft);
  display: flex; justify-content: space-between;
}
.lang__menu li:hover, .lang__menu li:focus-visible { background: rgba(255,255,255,0.08); color: var(--text); }
.lang__menu li[aria-selected="true"] { color: #C4B4FF; font-weight: 800; }

/* Burger + menu mobile */
.burger {
  display: none; background: var(--glass); border: 1.5px solid var(--glass-line);
  border-radius: var(--r-sm); width: 44px; height: 44px;
  cursor: pointer; align-items: center; justify-content: center;
  color: var(--text);
}
.mobilemenu {
  display: none;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  background: rgba(15, 8, 39, 0.97);
}
.mobilemenu.is-open { display: block; }
.mobilemenu nav { display: flex; flex-direction: column; padding: 10px 24px 20px; gap: 4px; }
.mobilemenu a {
  text-decoration: none; font-weight: 700; padding: 12px 8px;
  border-radius: 10px; color: var(--text);
}
.mobilemenu a:hover { background: rgba(255,255,255,0.06); }
.mobilemenu .btn { margin-top: 10px; }

/* ============================== 5. SECÇÕES ============================== */

/* ------------------------------ HERO ------------------------------ */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 7vw, 88px);
  overflow: visible;
}
.hero__grid {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px); align-items: center;
}
.hero__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.5rem, 5.2vw, 4rem);
  line-height: 1.06; letter-spacing: -0.015em;
  color: var(--text);
}
.hero__title .accent { color: var(--orange-hi); }
.hero__sub {
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  color: var(--text-soft); max-width: 46ch; margin: 20px 0 28px;
}
.hero__trustline {
  margin: 18px 0 0; font-size: 0.88rem; font-weight: 600; color: var(--text-soft);
  display: flex; align-items: center; gap: 8px;
}
.hero__trustline svg { color: var(--green); flex: none; }

/* Raposa com lua/aurora atrás */
.hero__art { position: relative; display: grid; place-items: center; min-height: 380px; }
.hero__blob {
  position: absolute; width: min(440px, 92%); aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, rgba(139, 111, 255, 0.4), rgba(139, 111, 255, 0.1) 52%, transparent 70%),
    radial-gradient(circle at 62% 68%, rgba(230, 95, 43, 0.16), transparent 58%);
  filter: blur(6px);
  animation: glowpulse 9s ease-in-out infinite alternate;
}
@keyframes glowpulse {
  from { opacity: 0.75; transform: scale(0.97); }
  to   { opacity: 1;    transform: scale(1.03); }
}
.hero__fox {
  position: relative; z-index: 1;
  width: min(300px, 66%);
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.55));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
/* pills flutuantes (glass) */
.hero__pill {
  position: absolute; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(30, 18, 66, 0.75);
  border: 1.5px solid var(--glass-line);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-radius: 999px; padding: 9px 16px;
  font-weight: 800; font-size: 0.85rem; color: var(--text);
  box-shadow: 0 10px 28px -10px rgba(0,0,0,0.6);
  animation: float 7s ease-in-out infinite;
}
.hero__pill svg { width: 17px; height: 17px; color: var(--orange-hi); }
.hero__pill--1 { top: 6%; left: 2%; animation-delay: 0.6s; }
.hero__pill--2 { bottom: 14%; left: -2%; animation-delay: 1.4s; }
.hero__pill--3 { top: 18%; right: -1%; animation-delay: 2.2s; }

/* ------------------------------ TRUST BAR ------------------------------ */
.trustbar {
  background: linear-gradient(90deg, var(--purple-deep), var(--purple) 50%, var(--purple-deep));
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
}
.trustbar .marquee__track { animation-duration: 46s; }
.trust-item {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 700; font-size: 0.95rem;
  padding: 0 30px; white-space: nowrap;
}
.trust-item svg { width: 19px; height: 19px; opacity: 0.9; flex: none; }
.trust-sep { color: rgba(255,255,255,0.45); font-size: 0.8rem; }

/* ------------------------------ NÃO ESTÁS SOZINHO ------------------------------ */
.alone__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 6vw, 80px); align-items: center;
}
.alone__fox {
  width: min(300px, 74%); margin-inline: auto;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,0.6));
  animation: float 7s ease-in-out infinite;
}
.alone__foxwrap { position: relative; display: grid; place-items: center; }
.alone__moonglow {
  position: absolute; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 111, 255, 0.35), transparent 66%);
  filter: blur(4px);
}
.alone__points { margin: 30px 0 0; display: grid; gap: 20px; }
.alone__point { display: flex; gap: 16px; align-items: flex-start; }
.alone__point svg { flex: none; width: 24px; height: 24px; color: var(--orange-hi); margin-top: 3px; }
.alone__point h3 {
  font-family: var(--font-display); font-weight: 500; font-size: 1.08rem;
  margin: 0 0 4px; color: var(--text);
}
.alone__point p { margin: 0; font-size: 0.96rem; color: var(--text-soft); }
.alone__close {
  margin: 32px 0 0; font-family: var(--font-display); font-weight: 500;
  font-size: 1.2rem; color: var(--text);
  border-left: 4px solid var(--orange); padding-left: 16px;
}

/* ------------------------------ COMO FUNCIONA ------------------------------ */
.how__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; position: relative;
}
.how__grid::before {
  content: ""; position: absolute; top: 44px; left: 12%; right: 12%;
  border-top: 3px dashed rgba(255,255,255,0.18); z-index: 0;
}
.how-step { position: relative; z-index: 1; text-align: center; }
.how-step__num {
  width: 88px; height: 88px; margin: 0 auto 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.7rem;
  background: var(--bg-raise); color: #C4B4FF;
  border: 3px solid var(--purple);
  box-shadow: 0 5px 0 var(--purple-deep), 0 0 34px -6px var(--purple-glow);
}
.how-step:nth-child(2) .how-step__num {
  background: var(--purple); color: #fff;
}
.how-step:nth-child(3) .how-step__num {
  background: linear-gradient(180deg, var(--orange-hi), var(--orange));
  color: #fff; border-color: var(--orange-hi);
  box-shadow: 0 5px 0 var(--orange-deep), 0 0 34px -6px rgba(230,95,43,0.5);
}
.how-step h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; margin: 0 0 8px; color: var(--text); }
.how-step p { color: var(--text-soft); margin: 0 auto; max-width: 30ch; }

/* ------------------------------ PORQUE FUNCIONA ------------------------------ */
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why__honest {
  margin: 36px auto 0; max-width: 620px; text-align: center;
  font-weight: 600; color: var(--text-soft);
  background: var(--glass); border: 2px dashed rgba(255,255,255,0.2);
  border-radius: var(--r-lg); padding: 18px 26px;
}

/* ------------------------------ QUIZ ------------------------------ */
.quizsec__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px); align-items: center;
}
.quizsec__points { margin: 26px 0 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.quizsec__points li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--text); }
.quizsec__points svg { flex: none; width: 24px; height: 24px; color: #C4B4FF; }
.quizsec__foxwrap { position: relative; }
.quizsec__webnote {
  text-align: center; margin: 14px 0 0; font-size: 0.8rem;
  color: var(--text-faint); font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.quizsec__webnote::before {
  content: ""; width: 12px; height: 12px; flex: none;
  background: currentColor;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2.4"><rect x="4" y="11" width="16" height="10" rx="2"/><path d="M8 11V7a4 4 0 018 0v4"/></svg>') center/contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2.4"><rect x="4" y="11" width="16" height="10" rx="2"/><path d="M8 11V7a4 4 0 018 0v4"/></svg>') center/contain no-repeat;
}
.quizsec__fox {
  position: absolute; bottom: -16px; left: -128px;
  width: 200px; z-index: 2;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,0.5));
}

/* UI do quiz dentro do glasspanel */
.quiz-ui { display: flex; flex-direction: column; flex: 1; position: relative; z-index: 1; }
.quiz-ui__progress {
  height: 10px; border-radius: 999px; background: rgba(255,255,255,0.1);
  overflow: hidden; margin-bottom: 8px;
}
.quiz-ui__bar {
  height: 100%; width: 25%;
  background: linear-gradient(90deg, var(--orange), var(--orange-hi));
  border-radius: 999px; transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.quiz-ui__count { font-size: 0.78rem; color: var(--text-soft); margin-bottom: 16px; }
.quiz-ui__q {
  font-family: var(--font-display); font-weight: 500; font-size: 1.15rem;
  margin: 0 0 16px; color: var(--text); min-height: 3.2em;
}
.quiz-ui__opts { display: grid; gap: 10px; margin-bottom: 16px; }
.quiz-opt {
  text-align: left; padding: 13px 16px; border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.14);
  color: var(--text); font-weight: 600; font-size: 0.92rem;
  cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease, transform 0.12s ease;
  min-height: 48px;
}
.quiz-opt:hover { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.08); }
.quiz-opt.is-picked {
  border-color: var(--orange-hi); background: rgba(230,95,43,0.2);
  box-shadow: 0 3px 0 var(--orange-deep);
}
.quiz-opt:active { transform: translateY(2px); }
.quiz-ui__next { margin-top: auto; width: 100%; }
.quiz-ui__next[disabled] { opacity: 0.4; cursor: not-allowed; box-shadow: 0 4px 0 var(--orange-deep); transform: none; }

/* estado final do quiz */
.quiz-done { display: none; flex-direction: column; flex: 1; text-align: center; position: relative; z-index: 1; }
.quiz-ui.is-done { display: none; }
.quiz-done.is-shown { display: flex; }
.quiz-done__fox { width: 110px; margin: 4px auto 12px; }
.quiz-done h4 {
  font-family: var(--font-display); font-weight: 600; font-size: 1.3rem;
  color: var(--text); margin: 0 0 8px;
}
.quiz-done__body { font-size: 0.9rem; color: var(--text-soft); margin: 0 0 14px; }
.quiz-done__plan {
  background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: 16px; padding: 14px; text-align: left; margin-bottom: 14px;
}
.quiz-done__plan h5 {
  margin: 0 0 6px; font-size: 0.95rem; color: var(--text);
  font-family: var(--font-display); font-weight: 500;
}
.quiz-done__plan p { margin: 0; font-size: 0.82rem; color: var(--text-soft); line-height: 1.5; }
.quiz-done__restart {
  margin-top: auto; background: none; border: 0; color: var(--text-soft);
  font-weight: 700; font-size: 0.85rem; cursor: pointer; text-decoration: underline;
  padding: 10px;
}
.quiz-done__restart:hover { color: var(--text); }

/* ------------------------------ PARA QUEM É ------------------------------ */
.toggle {
  display: inline-flex;
  background: var(--glass);
  border: 1.5px solid var(--glass-line); border-radius: 999px;
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  padding: 5px; margin: 0 auto 36px;
  box-shadow: 0 4px 0 rgba(0,0,0,0.35);
}
.toggle button {
  border: 0; background: none; cursor: pointer;
  padding: 11px 30px; border-radius: 999px;
  font-weight: 800; font-size: 0.97rem; color: var(--text-soft);
  transition: background 0.18s ease, color 0.18s ease;
  min-height: 46px;
}
.toggle button.is-active {
  background: linear-gradient(180deg, #9A82FF, var(--purple));
  color: #fff; box-shadow: 0 3px 0 var(--purple-deep);
}
.forwho__togglewrap { display: flex; justify-content: center; }
.forwho__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.forwho__disclaimer {
  margin: 34px auto 0; text-align: center; font-size: 0.85rem;
  color: var(--text-faint); max-width: 60ch;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.forwho__disclaimer svg { flex: none; width: 18px; height: 18px; color: var(--text-soft); }

/* ------------------------------ FUNCIONALIDADES ------------------------------ */
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* ------------------------------ MÉTODO ------------------------------ */
.method__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px); align-items: center;
}
.method__points { display: grid; gap: 18px; margin-top: 28px; }
.method__point { display: flex; gap: 16px; }
.method__point svg { flex: none; width: 26px; height: 26px; color: var(--orange-hi); margin-top: 2px; }
.method__point h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.06rem; margin: 0 0 3px; color: var(--text); }
.method__point p { margin: 0; color: var(--text-soft); font-size: 0.95rem; }

/* ecrã de exercício — réplica do ecrã real da app */
.exo { flex: 1; display: flex; flex-direction: column; position: relative; z-index: 1; }

/* barra de progresso segmentada */
.exo__segments { display: flex; gap: 8px; margin: 2px 4px 26px; }
.exo__segments span {
  flex: 1; height: 5px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}
.exo__segments .is-on { background: #7FB7E8; }

/* círculo exterior estático + interior azul que contrai/solta */
.exo__circlewrap { display: grid; place-items: center; margin-bottom: 8px; }
.exo__outer {
  width: 172px; height: 172px; border-radius: 50%;
  background: #1E3A54;
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.exo__inner {
  width: 100%; height: 100%; border-radius: 50%;
  background: radial-gradient(circle at 46% 38%, #7CC3F2, #4B9FE1 62%, #3A8AD0);
  display: grid; place-items: center;
  box-shadow: 0 6px 26px -6px rgba(45, 120, 200, 0.55);
  animation: innerbreathe 5s ease-in-out infinite;
}
@keyframes innerbreathe {
  0%, 100% { transform: scale(0.62); }
  45%, 60% { transform: scale(0.95); }
}
.exo__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}

/* divisórias finas */
.exo__divider { height: 1px; background: rgba(255, 255, 255, 0.12); margin: 16px 2px; }

/* linha de fase: "Solta: 4" */
.exo__phaseline {
  margin: 0; text-align: center;
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.55rem; color: var(--text); line-height: 1.2;
}

/* grelha 2x2 de stats, números laranja */
.exo__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px 10px; text-align: center;
  padding: 2px 4px;
}
.exo__grid p { margin: 0; font-size: 0.88rem; color: var(--text-soft); font-weight: 600; }
.exo__grid b { color: var(--orange-hi); font-weight: 800; }
.exo__grid b i { font-style: normal; color: var(--text); font-weight: 700; }
.exo__lbl { color: var(--text); }

/* controlos inferiores decorativos */
.exo__controls {
  margin-top: auto; padding-top: 16px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.exo__check {
  position: absolute; left: 8px;
  width: 18px; height: 18px; border-radius: 5px;
  border: 2px solid rgba(255, 255, 255, 0.55);
}
.exo__pause { display: inline-flex; gap: 6px; }
.exo__pause i {
  width: 6px; height: 24px; border-radius: 3px;
  background: #fff; display: block;
}

/* ------------------------------ CHAT ------------------------------ */
.chatsec__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px); align-items: center;
}
.chatsec__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(230, 95, 43, 0.14);
  border: 1px solid rgba(242, 133, 78, 0.35);
  color: var(--orange-hi);
  font-weight: 800; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 999px; padding: 7px 14px; margin-bottom: 18px;
}
.chatsec__badge svg { width: 15px; height: 15px; }
.chatsec__points { display: grid; gap: 18px; margin-top: 28px; }

/* UI do chat */
.chat-ui { flex: 1; display: flex; flex-direction: column; position: relative; z-index: 1; }
.chat-ui__head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 12px; margin-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.chat-ui__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(139, 111, 255, 0.2);
  border: 1px solid rgba(139, 111, 255, 0.32);
  display: grid; place-items: center; overflow: hidden;
}
.chat-ui__avatar img { width: 28px; height: auto; }
.chat-ui__name { font-weight: 700; font-size: 0.92rem; color: var(--text); line-height: 1.2; }
.chat-ui__status { font-size: 0.74rem; color: var(--green); display: flex; align-items: center; gap: 5px; }
.chat-ui__status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.chat-ui__msgs { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.chat-msg {
  max-width: 86%; padding: 11px 14px; border-radius: 16px;
  font-size: 0.86rem; line-height: 1.5;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.chat-msg.is-shown { opacity: 1; transform: none; }
.chat-msg--user {
  align-self: flex-end;
  background: linear-gradient(180deg, var(--orange-hi), var(--orange));
  color: #fff;
  border-bottom-right-radius: 5px;
}
.chat-msg--bot {
  align-self: flex-start; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1); color: var(--text);
  border-bottom-left-radius: 5px;
}
.chat-ui__input {
  margin-top: 14px; display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.13);
  border-radius: 999px; padding: 11px 16px;
  color: var(--text-soft); font-size: 0.84rem;
}
.chat-ui__input svg { margin-left: auto; flex: none; width: 18px; height: 18px; color: var(--orange-hi); }

/* ------------------------------ PORQUÊ PREMIUM ------------------------------ */
.premium::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(700px 460px at 50% 0%, rgba(139, 111, 255, 0.14), transparent 65%);
}
.premium .container { position: relative; }
.premium__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.premium__levels {
  display: flex; justify-content: center; gap: 12px; margin: 38px 0 0; flex-wrap: wrap;
}
.level-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass); border: 1.5px solid var(--glass-line); border-radius: 999px;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  padding: 11px 22px; font-weight: 800; font-size: 0.92rem; color: var(--text);
  box-shadow: 0 4px 0 rgba(0,0,0,0.3);
}
.level-pill svg { width: 18px; height: 18px; }
.level-pill--easy svg { color: var(--green); }
.level-pill--keep { border-color: rgba(139, 111, 255, 0.5); box-shadow: 0 4px 0 var(--purple-deep); }
.level-pill--keep svg { color: #C4B4FF; }
.level-pill--hard svg { color: var(--orange-hi); }
.premium__close {
  margin: 34px auto 26px; text-align: center; max-width: 56ch;
  font-family: var(--font-display); font-weight: 500; font-size: 1.25rem;
  color: var(--text);
}
.premium__ctawrap { display: flex; justify-content: center; }

/* ------------------------------ PLANOS: COMPARAÇÃO ------------------------------ */
/* Estilo "cápsula Premium": sem caixa exterior; a coluna Premium vive dentro
   de uma cápsula quente contínua com selo laranja no topo. */
.compare {
  max-width: 680px; margin-inline: auto;
  position: relative;
  padding: 14px 0 16px;
}
.compare::before {
  content: ""; position: absolute;
  top: 0; bottom: 0; right: 0; width: 132px;
  background: linear-gradient(180deg, rgba(242, 133, 78, 0.18), rgba(230, 95, 43, 0.07) 60%);
  border: 1.5px solid rgba(242, 133, 78, 0.32);
  border-radius: 999px;
  box-shadow:
    0 22px 54px -20px rgba(230, 95, 43, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  pointer-events: none;
}
.compare__head {
  display: grid; grid-template-columns: 1fr 110px 132px;
  align-items: center;
  padding: 4px 0 14px;
  font-weight: 800; font-size: 0.92rem; color: var(--text-soft);
}
.compare__head span:nth-child(2), .compare__head span:nth-child(3) { text-align: center; }
.compare__head .is-premium {
  justify-self: center;
  background: linear-gradient(180deg, var(--orange-hi), var(--orange));
  color: #fff; font-size: 0.82rem;
  padding: 7px 20px; border-radius: 999px;
  box-shadow: 0 3px 0 var(--orange-deep);
}
.compare__row {
  display: grid; grid-template-columns: 1fr 110px 132px;
  align-items: center;
  padding: 13px 0;
  font-weight: 600; font-size: 0.97rem; color: var(--text);
}
.compare__row + .compare__row { border-top: 0; }
.compare__cell { display: flex; justify-content: center; }
.compare__cell svg { width: 21px; height: 21px; }
/* Free: check neutro claro · Premium (última coluna): check laranja */
.compare__cell .yes { color: var(--text); }
.compare__row .compare__cell:last-child .yes { color: var(--orange-hi); }
.compare__cell .no { color: rgba(255, 255, 255, 0.22); }

/* ------------------------------ PLANOS: PREÇOS ------------------------------ */
.prices__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; align-items: stretch; max-width: 980px; margin-inline: auto;
}
.price-card {
  position: relative;
  background: var(--glass);
  border: 1.5px solid var(--glass-line);
  border-radius: var(--r-lg);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  box-shadow: 0 18px 48px -22px rgba(0,0,0,0.55);
  padding: 30px 26px 26px; text-align: center;
  display: flex; flex-direction: column;
  transition: transform 0.18s ease, border-color 0.18s;
}
.price-card:hover { transform: translateY(-4px); border-color: var(--glass-line-2); }
.price-card--popular {
  border-color: rgba(242, 133, 78, 0.55);
  background: linear-gradient(180deg, rgba(230, 95, 43, 0.14), var(--glass) 52%);
  box-shadow: 0 18px 54px -18px rgba(230, 95, 43, 0.35);
}
.price-card__tag {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(180deg, var(--orange-hi), var(--orange));
  color: #fff;
  font-weight: 800; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 999px; padding: 6px 16px;
  box-shadow: 0 3px 0 var(--orange-deep);
  white-space: nowrap;
}
.price-card__label { font-weight: 800; color: var(--text-soft); font-size: 0.95rem; margin-bottom: 10px; }
.price-card__price {
  font-family: var(--font-display); font-weight: 600;
  font-size: 2.4rem; line-height: 1; color: var(--text);
}
.price-card__period { font-size: 0.9rem; color: var(--text-soft); font-weight: 600; margin: 6px 0 4px; }
.price-card__old {
  text-decoration: line-through; color: var(--text-faint);
  font-weight: 600; font-size: 0.95rem; margin-right: 8px;
}
.price-card__note {
  margin-top: 12px; font-size: 0.82rem; font-weight: 700; color: #C4B4FF;
  background: rgba(139, 111, 255, 0.15);
  border: 1px solid rgba(139, 111, 255, 0.28);
  border-radius: 999px; padding: 6px 12px;
  display: inline-block; margin-inline: auto;
}
.price-card--popular .price-card__note {
  color: var(--orange-hi); background: rgba(230, 95, 43, 0.14);
  border-color: rgba(242, 133, 78, 0.32);
}
.prices__includes {
  max-width: 980px; margin: 30px auto 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px;
}
.prices__includes li {
  list-style: none; display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.92rem; color: var(--text-soft);
}
.prices__includes svg { width: 18px; height: 18px; color: var(--green); flex: none; }
.prices__cta {
  margin: 38px auto 0; display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.prices__notes { text-align: center; font-size: 0.82rem; color: var(--text-faint); margin: 0; }
.prices__notes span { display: block; margin-top: 4px; }

/* ------------------------------ TESTEMUNHOS ------------------------------ */
.testimonials .marquee { padding: 8px 0 14px; }
.testimonials .marquee__track { animation-duration: 60s; gap: 22px; }
.t-card {
  width: 340px; flex: none;
  background: var(--glass);
  border: 1.5px solid var(--glass-line);
  border-radius: var(--r-lg);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px -20px rgba(0,0,0,0.55);
  padding: 24px;
  white-space: normal;
}
.t-card__stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 12px; }
.t-card__stars svg { width: 17px; height: 17px; }
.t-card__quote { margin: 0 0 18px; font-size: 0.95rem; color: var(--text); line-height: 1.55; }
.t-card__who { display: flex; align-items: center; gap: 12px; }
.t-card__av {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(139, 111, 255, 0.22);
  border: 1px solid rgba(139, 111, 255, 0.35);
  color: #D3C7FF;
  display: grid; place-items: center; font-weight: 800; font-size: 0.85rem;
}
.t-card__name { font-weight: 800; font-size: 0.9rem; line-height: 1.25; color: var(--text); }
.t-card__role { font-size: 0.78rem; color: var(--text-soft); font-weight: 600; }

/* ------------------------------ FAQ ------------------------------ */
.faq__wrap { max-width: 760px; margin-inline: auto; position: relative; }
.faq__fox {
  position: absolute; top: -116px; right: 34px; width: 118px; z-index: 0;
  pointer-events: none;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.5));
}
.accordion { position: relative; z-index: 1; display: grid; gap: 14px; }
.acc {
  background: var(--glass);
  border: 1.5px solid var(--glass-line);
  border-radius: var(--r-md);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  overflow: hidden; transition: border-color 0.18s ease, background 0.18s;
}
.acc.is-open { border-color: rgba(139, 111, 255, 0.55); background: var(--glass-strong); }
.acc__btn {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; text-align: left;
  font-weight: 800; font-size: 1rem; color: var(--text);
  min-height: 56px;
}
.acc__btn svg { flex: none; width: 22px; height: 22px; color: #C4B4FF; transition: transform 0.25s ease; }
.acc.is-open .acc__btn svg { transform: rotate(45deg); }
.acc__panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.acc__panel p { margin: 0; padding: 0 22px 20px; color: var(--text-soft); font-size: 0.96rem; }

/* ------------------------------ CTA FINAL ------------------------------ */
.finalcta { text-align: center; overflow: hidden; }
.finalcta::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(640px 420px at 50% 24%, rgba(139, 111, 255, 0.2), transparent 65%);
}
.finalcta__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.finalcta__fox { width: 168px; margin-bottom: 22px; filter: drop-shadow(0 16px 28px rgba(0,0,0,0.55)); animation: float 6s ease-in-out infinite; }
.finalcta h2 { max-width: 22ch; }
.finalcta h2 .accent { color: var(--orange-hi); }
.finalcta .sub { margin-inline: auto; }
.finalcta .store-row { margin-top: 32px; justify-content: center; }
.finalcta__note { margin: 22px 0 0; font-size: 0.85rem; font-weight: 600; color: var(--text-soft); }

/* ------------------------------ FOOTER ------------------------------ */
.footer {
  background: rgba(9, 5, 26, 0.6);
  color: var(--text-soft);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 56px 0 34px;
}
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
}
.footer__brand img { height: 32px; width: auto; margin-bottom: 16px; }
.footer__tagline { font-size: 0.92rem; max-width: 34ch; margin: 0 0 18px; }
.footer__social { display: inline-flex; align-items: center; gap: 8px; color: var(--text-soft); text-decoration: none; font-weight: 700; font-size: 0.9rem; }
.footer__social:hover { color: var(--text); }
.footer__social svg { width: 20px; height: 20px; }
.footer h4 {
  color: var(--text); font-family: var(--font-display); font-weight: 500;
  font-size: 1rem; margin: 0 0 16px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a:not(.footer__social) { color: var(--text-soft); text-decoration: none; font-size: 0.92rem; }
.footer a:not(.footer__social):hover { color: var(--text); text-decoration: underline; }
.footer__bottom {
  margin-top: 44px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--text-faint);
}

/* ------------------------------ REVEALS ------------------------------ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }

/* ============================== 6. RESPONSIVO ============================== */
@media (max-width: 1000px) {
  .nav__links { display: none; }
  .burger { display: inline-flex; }
  .nav__cta { display: none; }

  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { margin-inline: auto; }
  .hero .store-row { justify-content: center; }
  .hero__trustline { justify-content: center; }
  .hero__art { order: -1; min-height: 320px; }
  .hero__pill--1 { left: 4%; }
  .hero__pill--3 { right: 2%; }

  .how__grid { grid-template-columns: 1fr; gap: 34px; }
  .how__grid::before { display: none; }

  .why__grid, .features__grid, .forwho__grid { grid-template-columns: repeat(2, 1fr); }

  .alone__grid, .quizsec__grid, .method__grid, .chatsec__grid { grid-template-columns: 1fr; }
  .alone__foxwrap { order: -1; }
  .quizsec__webnote {
  text-align: center; margin: 14px 0 0; font-size: 0.8rem;
  color: var(--text-faint); font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.quizsec__webnote::before {
  content: ""; width: 12px; height: 12px; flex: none;
  background: currentColor;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2.4"><rect x="4" y="11" width="16" height="10" rx="2"/><path d="M8 11V7a4 4 0 018 0v4"/></svg>') center/contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2.4"><rect x="4" y="11" width="16" height="10" rx="2"/><path d="M8 11V7a4 4 0 018 0v4"/></svg>') center/contain no-repeat;
}
.quizsec__fox { display: none; }

  .premium__grid { grid-template-columns: 1fr; }
  .prices__grid { grid-template-columns: 1fr; max-width: 440px; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  /* --- Escala tipográfica mobile: micro-rótulos 10px, UI secundária 12px;
         tamanhos maiores reservados a títulos e texto corrido --- */
  .eyebrow, .chatsec__badge { font-size: 10px; padding: 6px 12px; }
  .hero__pill { font-size: 12px; padding: 8px 13px; }
  .hero__trustline { font-size: 12px; }
  .trust-item { font-size: 12px; padding: 0 18px; }
  .trust-sep { font-size: 10px; }
  .storebtn__small { font-size: 10px; }
  .storebtn__big { font-size: 15px; }
  .nav__links a, .mobilemenu a { font-size: 14px; }
  .lang__btn { font-size: 12px; }
  .lang__menu li { font-size: 12px; }

  .card h3 { font-size: 1.05rem; }
  .card p { font-size: 13px; }
  .how-step p, .method__point p, .alone__point p { font-size: 13px; }
  .quizsec__points li { font-size: 13px; }

  .quiz-ui__count { font-size: 10px; }
  .quiz-opt { font-size: 12px; }
  .quiz-done__body { font-size: 12px; }
  .quiz-done__plan p { font-size: 12px; }
  .quiz-done__restart { font-size: 12px; }
  .chat-msg { font-size: 12px; }
  .chat-ui__input { font-size: 12px; }
  .chat-ui__status { font-size: 10px; }

  .exo__grid p { font-size: 12px; }
  .exo__phaseline { font-size: 1.35rem; }

  .level-pill { font-size: 12px; padding: 9px 16px; }
  .price-card__label { font-size: 12px; }
  .price-card__period { font-size: 12px; }
  .price-card__note { font-size: 10px; }
  .prices__includes li { font-size: 12px; }
  .prices__notes { font-size: 10px; }
  .t-card__quote { font-size: 13px; }
  .t-card__role { font-size: 10px; }
  .t-card__name { font-size: 12px; }
  .finalcta__note { font-size: 12px; }
  .forwho__disclaimer { font-size: 10px; }
  .footer a:not(.footer__social), .footer__tagline { font-size: 13px; }
  .footer__bottom { font-size: 10px; }
  .acc__btn { font-size: 14px; }
  .acc__panel p { font-size: 13px; }

  .why__grid, .features__grid, .forwho__grid { grid-template-columns: 1fr; }
  .compare__head, .compare__row { grid-template-columns: 1fr 60px 92px; }
  .compare::before { width: 92px; }
  .compare__head { font-size: 12px; }
  .compare__head .is-premium { padding: 6px 12px; font-size: 0.74rem; }
  .compare__row { font-size: 13px; }
  .faq__fox { width: 92px; top: -82px; right: 12px; }
  .store-row { flex-direction: column; align-items: stretch; }
  .store-row .storebtn { justify-content: center; }
  .hero__pill--2 { display: none; }
  .footer__bottom { flex-direction: column; }
}

/* ============================== 7. ACESSIBILIDADE ============================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__fox, .hero__pill, .hero__blob, .finalcta__fox,
  .sky, .sky::after { animation: none !important; }
  .exo__inner { animation: none; transform: scale(0.8); }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .price-card, .storebtn { transition: none; }
  /* Marquees continuam em movimento por decisão de design (conteúdo decorativo
     e repetido), mas mais lentos. */
  .marquee__track { animation-duration: 90s; }
}
