/* =========================================================
   WINNER EAGLES â€” style.css (LIMPO / SEM DUPLICAÃ‡ÃƒO) âœ… FINAL
   - 1 Ãºnico :root
   - removido :has() (incompatÃ­vel em alguns browsers)
   - removido color-mix() (incompatÃ­vel em alguns browsers)
   - dropdown sem â€œburacoâ€ e com ponte invisÃ­vel
   - REMOVIDO: <style>...</style> (isso NÃƒO pode existir dentro do CSS)
   - CORRIGIDO: chave "}" sobrando no Hero CTA
   - LIMPO: blocos duplicados do Graded Readers (1 versÃ£o Ãºnica, escopada)
   - EVITA CONFLITO: .home-grid (home) nÃ£o vira grid 4 colunas do readers
========================================================= */

/* =========================
   THEME / BASE
========================= */
:root{
  --bg:#0b0f14;
  --bg2:#0f1520;

  --card: rgba(255,255,255,.05);
  --stroke: rgba(255,255,255,.10);

  --text:#e5e7eb;
  --muted:#a8b0bb;
  --muted2:#8b95a3;

  --gold:#f7c40f;
  --gold2:#ffdf6a;

  --shadow: 0 18px 45px rgba(0,0,0,.45);
  --radius: 22px;

  /* ===== CORES PADRÃƒO (badge + highlight) ===== */
  --c-prep: #f7c40f;   /* preposition */
  --c-conj: #a855f7;   /* conjunction */
  --c-pron: #fb923c;   /* pronoun/subject */
  --c-obj:  #38bdf8;   /* object */
  --c-verb: #1d4ed8;   /* main verb */
  --c-be:   #22c55e;   /* be */
  --c-adv:  #34d399;   /* adverb */
  --c-art:  #94a3b8;   /* article */

  /* Ajuste Winner Eagles */
  --we-noun: #7dd3fc;  /* noun */
  --we-adj:  #f9a8d4;  /* adjective */

  /* ExpressÃ£o / chunk */
  --c-expression: #0ea5a4; /* teal */

  /* Collocation */
  --c-collocation: #f59e0b; /* Ã¢mbar */
}

*{ box-sizing:border-box; }
html, body{ height:100%; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(247,196,15,.14), transparent 55%),
    radial-gradient(900px 600px at 110% 10%, rgba(37,99,235,.16), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height:1.55;
}

img{ max-width:100%; display:block; }
a{ color: inherit; }

.container{
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.container.narrow{ max-width: 860px; }

h1,h2,h3{
  margin: 0 0 12px;
  line-height: 1.12;
  letter-spacing: -0.3px;
}
h1{ font-size: clamp(28px, 4.2vw, 46px); }
h2{ font-size: clamp(22px, 3.2vw, 34px); }
h3{ font-size: 18px; }

p{ margin: 0 0 12px; color: var(--muted); }

.muted{ color: var(--muted2); }
.gold{ color: var(--gold2); }

.tm{
  font-size: 0.6em;
  vertical-align: super;
  margin-left: 2px;
  letter-spacing: 0;
}

/* =========================
   HEADER (PADRÃƒO ÃšNICO)
========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.48));
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.header-inner{
  height: 74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

.logo{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  font-weight: 900;
  letter-spacing: .2px;
}
.logo img{
  height: 38px;
  width: auto;
}

/* NAV */
.main-nav{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
}

.main-nav a{
  text-decoration:none;
  color: var(--muted2);
  font-weight: 800;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a[aria-current="page"]{
  color: var(--gold);
  background: rgba(247,196,15,.10);
}

/* Dropdown Cursos */
.dropdown{ position: relative; }

.dropdown-toggle{
  font: inherit;
  cursor: pointer;
  display:inline-flex;
  align-items:center;
  gap:8px;

  padding: 8px 12px;
  border-radius: 999px;

  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--text);
  font-weight: 900;
}

.dropdown-toggle:hover{
  background: rgba(247,196,15,.10);
  border-color: rgba(247,196,15,.25);
}

.dropdown-menu{
  position:absolute;
  right:0;
  top: calc(100% + 6px); /* sem â€œburacoâ€ */
  min-width: 280px;

  background: linear-gradient(180deg, rgba(0,0,0,.92), rgba(0,0,0,.76));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;

  box-shadow: var(--shadow);

  padding: 12px;
  display:none;
  z-index: 2000;
}

/* â€œponteâ€ invisÃ­vel p/ mouse nÃ£o derrubar menu */
.dropdown-menu::before{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.dropdown[data-open="true"] .dropdown-menu{ display:block; }

/* Click/focus support (touch) and optional JS toggles */
.dropdown:focus-within .dropdown-menu{ display:block; }
.dropdown-menu.open{ display:block; }

/* hover no desktop */
@media (hover:hover){
  .dropdown:hover .dropdown-menu{ display:block; }
}

.dropdown[data-open="true"] .dropdown-toggle{
  background: rgba(247,196,15,.10);
  border-color: rgba(247,196,15,.25);
}

.dropdown-btn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  text-decoration:none;
  font-weight: 900;
  margin-bottom: 10px;
}
.dropdown-btn:hover{
  border-color: rgba(247,196,15,.35);
  background: rgba(247,196,15,.08);
}
.dropdown-btn:last-child{ margin-bottom:0; }

/* =========================
   BOTÃ•ES (base)
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration:none;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: var(--text);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

/* Primary padrÃ£o do site (ouro) */
.btn-primary{
  background: linear-gradient(135deg, rgba(247,196,15,.95), rgba(255,223,106,.95));
  color: #0b0b0b;
  border: 1px solid rgba(247,196,15,.35);
  box-shadow: 0 0 18px rgba(247,196,15,.18);
}

.btn-secondary{
  background: rgba(255,255,255,.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.14);
}
.btn-secondary:hover{ background: rgba(255,255,255,.10); }

.btn-large{
  padding: 13px 22px;
  font-size: 15px;
}

/* =========================
   HERO (HOME)
========================= */
.hero{ padding: 34px 0 26px; }

.hero-inner{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 22px;
  align-items: start;
}

.hero-copy{ padding-top: 6px; }

.hero .lead{
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.micro{
  margin-top: 10px;
  color: var(--muted2);
  font-size: 12px;
}

/* vÃ­deo */
.video-frame{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  box-shadow: var(--shadow);
}
.video-frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* bullets do hero */
.key-points{
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.key-points li{ margin: 7px 0; }

/* HERO FRAMES */
.hero-banner-frame{
  margin-top: 18px;
  padding: 22px 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.32);
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  max-width: 620px;
}

.hero-banner-frame .lead{
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}

.hero-banner-frame .key-points{
  margin: 0;
  padding-left: 18px;
}

.hero-banner-frame .key-points li{
  margin: 6px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.hero-copy-frame{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.28);
  box-shadow: var(--shadow);
  padding: 24px 26px;
}
.hero-copy-frame .lead{
  margin-bottom: 14px;
  max-width: 70ch;
}

/* ===============================
   HERO CTA â€” FIX DEFINITIVO âœ…
=============================== */
.hero-banner-cta{
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin: 14px 0 8px;
}

.hero-banner-cta .btn{
  border-radius: 12px;
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 600;
  min-width: 200px;
  max-width: none;
  height: auto;
}

/* Remove qualquer heranÃ§a circular */
.hero-banner-cta .btn,
.hero-banner-cta .btn-large{
  width: auto !important;
  height: auto !important;
  aspect-ratio: auto !important;
  border-radius: 12px !important;
}

.hero-mini-ritual{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-mini-ritual p{
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.7;
}
.hero-mini-ritual p strong{ color: var(--text); }

/* =========================
   SECTIONS + STEPS + CTA
========================= */
.section{ padding: 46px 0; }

.section.dark{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.section .narrow p{
  font-size: 15px;
  line-height: 1.8;
}

.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.step{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
}

.step .n{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 16px;
  min-width: 110px;

  font-weight: 900;
  font-size: 13px;
  white-space: nowrap;

  border-radius: 999px;
  color: #0b0b0b;

  background: linear-gradient(135deg, rgba(247,196,15,.95), rgba(255,223,106,.95));
  border:1px solid rgba(247,196,15,.35);
  box-shadow: 0 0 14px rgba(247,196,15,.20);

  margin-bottom: 12px;
}

.step p{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.cta{ padding: 54px 0 64px; }

.cta .narrow{
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.28);
  box-shadow: var(--shadow);
  text-align: center;
}
.cta p{
  margin: 10px auto 18px;
  max-width: 60ch;
}

/* =========================
   CARDS (BLOG/HOME)
========================= */
.card{
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: 0 14px 36px rgba(0,0,0,.22);
}
.card + .card{ margin-top: 14px; }

.card.highlight{
  border-color: rgba(247,196,15,.35);
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

.card-kicker{
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold2);
  margin-bottom: 6px;
}

/* grid padrÃ£o da home (2 colunas) */
.home-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items:start;
}
.home-col h2{ margin-bottom: 12px; }

/* FRAME DE CONTEÃšDO (home) */
.content-frame{
  padding: 28px 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.28);
  box-shadow: var(--shadow);

  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content-frame h2{ margin-bottom: 6px; }
.content-frame p{
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

/* Centralizar os steps em frames */
.content-frame .steps { justify-items: center; }
.content-frame .step { text-align: center; }
.content-frame .step .n { margin-left:auto; margin-right:auto; }

/* =========================
   PÃGINAS INTERNAS (Blog/Workout)
========================= */
.page-hero{
  min-height: 220px;
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-title{ margin: 0 0 8px; }
.page-subtitle{
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

/* Page hero em 2 colunas (esquerda/direita) */
.page-hero.page-hero-split{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
  align-items: start;
}

.page-hero-right{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  padding: 16px 18px;
}

.page-hero-title{
  margin: 0 0 10px;
  font-size: 18px;
}

.page-hero-list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.page-hero-list li{
  margin: 6px 0;
}

/* =========================
   WORKOUT (layout + arquivos + controles)
========================= */
.workout-controls{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items:center;
  margin: 16px 0 18px;
}

.we-tts-controls{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.we-tts-controls input[type="range"]{
  flex: 1 1 220px;
  min-width: 180px;
  height: 28px;
  accent-color: var(--gold2);
}

.workout-today .workout-controls{
  padding: 0 16px;
}

.search, .select{
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.92);
  padding: 0 14px;
  outline: none;
  font-weight: 700;
}

.search{ min-width: 260px; flex: 1 1 260px; }
.select{ min-width: 180px; flex: 0 0 190px; }

/* BotÃ£o do workout (AZUL) */
.workout-controls .btn.btn-primary{
  background: linear-gradient(135deg, rgba(37,99,235,.95), rgba(59,130,246,.95));
  border: 1px solid rgba(59,130,246,.35);
  box-shadow: 0 0 18px rgba(59,130,246,.20);
  color: #ffffff;
}
.workout-controls .btn.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

.workout-layout{
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 16px;
  align-items: start;
  padding-bottom: 40px;
}

.workout-meta{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 16px 0;
}

.workout-pill{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.82);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: none;
  white-space: nowrap;
}

.workout-note{
  margin: 0 16px 6px;
  color: var(--muted2);
  font-size: 13px;
}

/* Card do treino */
.workout-today{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.38);
  box-shadow: var(--shadow);
}

/* CabeÃ§alho do treino */
.workout-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.10);

  color: rgba(255,255,255,.70);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.workout-date{
  color: rgba(255,255,255,.75);
  font-size: 12px;
  font-weight: 800;
}

/* TÃ³pico */
.workout-topic{
  padding: 14px 16px 6px;
  margin: 0;
  font-size: 18px;
  color: rgba(255,255,255,.92);
}

/* Lista de drills */
.drill-list{ padding: 8px 16px 16px; }

.drill-item{
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  margin-bottom: 12px;
}
.drill-item:last-child{ margin-bottom: 0; }

.drill-item .en{
  margin: 0 0 8px;
  color: rgba(255,255,255,.92);
  font-size: 16px;
  font-weight: 900;
}
.drill-item .pt{
  margin: 0 0 10px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 600;
}

.drill-audio{
  width: 100%;
  margin-top: 6px;
  opacity: .98;
}

/* ===== ARQUIVOS (sidebar direita) ===== */
.workout-archive{
  position: sticky;
  top: 92px;
  max-height: calc(100vh - 120px);
  overflow: auto;

  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.38);
  box-shadow: var(--shadow);
  padding: 16px;
}

.archive-title{
  margin: 0 0 6px;
  font-size: 18px;
}
.archive-subtitle{
  margin: 0 0 14px;
  color: var(--muted2);
  font-size: 13px;
}

.archive-list{
  display:flex;
  flex-direction: column;
  gap: 12px;
}

.archive-item{
  width: 100%;
  text-align: left;
  cursor: pointer;

  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: 0 14px 32px rgba(0,0,0,.24);

  color: rgba(255,255,255,.90);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.archive-item:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
}

.archive-item.active{
  border-color: rgba(247,196,15,.40);
  box-shadow: 0 0 0 2px rgba(247,196,15,.10);
}

.archive-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.archive-date{
  color: rgba(255,255,255,.70);
  font-weight: 800;
  font-size: 12px;
}

.archive-topic{
  margin: 0;
  color: rgba(255,255,255,.88);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.35;
}

/* BADGES (treino + arquivo) */
.workout-tag,
.archive-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding: 8px 12px;
  border-radius: 999px;

  font-weight: 900;
  font-size: 12px;
  letter-spacing: .4px;
  text-transform: uppercase;

  color: #0b0b0b;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}

/* =========================
   BADGE COLORS (tag-*)
========================= */
.tag-preposition { background: var(--c-prep) !important; border-color: rgba(247,196,15,.45) !important; color:#0b0b0b !important; }
.tag-conjunction { background: var(--c-conj) !important; border-color: rgba(168,85,247,.45) !important; color:#0b0b0b !important; }
.tag-pronoun     { background: var(--c-pron) !important; border-color: rgba(251,146,60,.45) !important; color:#0b0b0b !important; }
.tag-verb        { background: var(--c-verb) !important; border-color: rgba(29,78,216,.45) !important; color:#ffffff !important; }
.tag-verb-be     { background: var(--c-be)   !important; border-color: rgba(34,197,94,.45) !important; color:#0b0b0b !important; }
.tag-adverb      { background: var(--c-adv)  !important; border-color: rgba(52,211,153,.45) !important; color:#0b0b0b !important; }
.tag-article     { background: var(--c-art)  !important; border-color: rgba(148,163,184,.45) !important; color:#0b0b0b !important; }

.tag-noun        { background: var(--we-noun) !important; border-color: rgba(125,211,252,.45) !important; color:#0b0b0b !important; }
.tag-adjective   { background: var(--we-adj)  !important; border-color: rgba(249,168,212,.45) !important; color:#0b0b0b !important; }

.tag-expression  { background: var(--c-expression) !important; border-color: rgba(14,165,164,.45) !important; color:#0b0b0b !important; }
.tag-collocation { background: var(--c-collocation) !important; border-color: rgba(245,158,11,.45) !important; color:#0b0b0b !important; }

/* =========================
   HIGHLIGHTS (hl-*)
========================= */
.hl{
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
}

/* Highlights por classe */
.hl-preposition { color: var(--c-prep) !important; text-decoration-color: var(--c-prep) !important; }
.hl-conjunction { color: var(--c-conj) !important; text-decoration-color: var(--c-conj) !important; }
.hl-pronoun,
.hl-subject     { color: var(--c-pron) !important; text-decoration-color: var(--c-pron) !important; }
.hl-object      { color: var(--c-obj)  !important; text-decoration-color: var(--c-obj)  !important; }

.hl-verb,
.hl-verb-main   { color: var(--c-verb) !important; text-decoration-color: var(--c-verb) !important; }
.hl-verb-be,
.hl-be          { color: var(--c-be)   !important; text-decoration-color: var(--c-be)   !important; }

.hl-adverb      { color: var(--c-adv)  !important; text-decoration-color: var(--c-adv)  !important; }
.hl-article     { color: var(--c-art)  !important; text-decoration-color: var(--c-art)  !important; }

.hl-noun        { color: var(--we-noun) !important; text-decoration-color: var(--we-noun) !important; }
.hl-adjective,
.hl-adj         { color: var(--we-adj)  !important; text-decoration-color: var(--we-adj)  !important; }

.hl-expression  { color: var(--c-expression) !important; text-decoration-color: var(--c-expression) !important; }
.hl-collocation { color: var(--c-collocation) !important; text-decoration-color: var(--c-collocation) !important; }

/* Aliases do parser (workout.js) */
.hl-prep{ color: var(--c-prep) !important; text-decoration-color: var(--c-prep) !important; }
.hl-conj{ color: var(--c-conj) !important; text-decoration-color: var(--c-conj) !important; }
.hl-subj{ color: var(--c-pron) !important; text-decoration-color: var(--c-pron) !important; }
.hl-obj { color: var(--c-obj)  !important; text-decoration-color: var(--c-obj)  !important; }
.hl-adv { color: var(--c-adv)  !important; text-decoration-color: var(--c-adv)  !important; }
.hl-art { color: var(--c-art)  !important; text-decoration-color: var(--c-art)  !important; }

.hl-aux,
.hl-will,
.hl-inf{
  color: var(--c-verb) !important;
  text-decoration-color: var(--c-verb) !important;
}

.hl-pronoun-subject{
  color: var(--c-pron) !important;
  text-decoration-color: var(--c-pron) !important;
}
.hl-pronoun-object{
  color: var(--c-obj) !important;
  text-decoration-color: var(--c-obj) !important;
}

/* =========================
   SOCIAL
========================= */
.social-links{
  padding: 54px 0 36px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.05));
}

.social-links h2{
  text-align: center;
  margin-bottom: 22px;
}

.social-buttons{
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-btn{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  transition: transform .15s ease, box-shadow .15s ease;
}

.social-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,0,0,.35);
}

.social-btn img{
  width: 22px;
  height: 22px;
  display: block;
}

.social-btn.youtube{ background:#ff0000; color:#fff; }
.social-btn.instagram{ background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); color:#fff; }
.social-btn.whatsapp{ background:#25d366; color:#0b0b0b; }

/* =========================
   FOOTER
========================= */
.site-footer{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 26px 0;
  color: var(--muted2);
  text-align:center;
}

/* =========================
   WAITLIST (pÃ¡ginas em desenvolvimento)
========================= */
.waitlist{ padding: 34px 0 60px; }

.wait-card{
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.28);
  box-shadow: var(--shadow);
  padding: 26px 26px;
}

.wait-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  padding: 10px 14px;
  border-radius: 999px;

  font-weight: 900;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: #0b0b0b;
  background: linear-gradient(135deg, rgba(247,196,15,.95), rgba(255,223,106,.95));
  border: 1px solid rgba(247,196,15,.35);
  box-shadow: 0 0 14px rgba(247,196,15,.18);

  margin-bottom: 14px;
}

.wait-title{ margin: 0 0 10px; }

.wait-lead{
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
  max-width: 75ch;
}

.wait-sub{
  margin: 0 0 16px;
  color: var(--muted2);
  line-height: 1.7;
  font-size: 14px;
  max-width: 78ch;
}

.wait-divider{
  height: 1px;
  background: rgba(255,255,255,.10);
  margin: 16px 0;
}

/* Form */
.wait-form{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.wait-form .field{
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.wait-form label{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}

.wait-form input,
.wait-form textarea,
.wait-form select{
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.92);
  padding: 0 14px;
  outline: none;
  font-weight: 700;
}

.wait-form textarea{
  height: auto;
  min-height: 110px;
  padding: 12px 14px;
  resize: vertical;
}

.wait-form input::placeholder,
.wait-form textarea::placeholder{
  color: rgba(255,255,255,.45);
  font-weight: 600;
}

.wait-form input:focus,
.wait-form textarea:focus,
.wait-form select:focus{
  border-color: rgba(247,196,15,.45);
  box-shadow: 0 0 0 3px rgba(247,196,15,.12);
}

.wait-form .full{ grid-column: 1 / -1; }

.wait-actions{
  grid-column: 1 / -1;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.wait-note{
  grid-column: 1 / -1;
  margin: 6px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.65;
}

.wait-success,
.wait-error{
  grid-column: 1 / -1;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.86);
  font-weight: 700;
}

.wait-success{
  border-color: rgba(34,197,94,.35);
  box-shadow: 0 0 0 2px rgba(34,197,94,.10);
}

.wait-error{
  border-color: rgba(239,68,68,.35);
  box-shadow: 0 0 0 2px rgba(239,68,68,.10);
}

/* Mini perks */
.wait-perks{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.wait-perk{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: 14px 14px;
}

.wait-perk b{
  display:block;
  margin-bottom: 6px;
  color: rgba(255,255,255,.92);
}

.wait-perk p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* =========================
   PÃGINA â€” MENTORIA INDIVIDUAL (VIP)
========================= */
.vip-hero{ padding: 34px 0 18px; }

.vip-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  align-items: start;
  padding-bottom: 40px;
}

.vip-card{
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
}

.vip-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.85);
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.vip-lead{
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 14px;
  max-width: 75ch;
}

.vip-cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.vip-list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}
.vip-list li{ margin: 8px 0; }

.vip-steps{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}

.vip-step{
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: 0 14px 36px rgba(0,0,0,.22);
}

.vip-step .n{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0b0b0b;
  background: linear-gradient(135deg, rgba(247,196,15,.95), rgba(255,223,106,.95));
  border: 1px solid rgba(247,196,15,.35);
  box-shadow: 0 0 14px rgba(247,196,15,.20);
  margin-bottom: 10px;
  white-space: nowrap;
}

.vip-step h3{ margin: 0 0 8px; font-size: 16px; }

.vip-step p{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.vip-aside .mini{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 10px;
}
.vip-aside .mini b{ color: var(--text); }

.vip-note{
  margin-top: 10px;
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.65;
}

.vip-faq{
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.vip-faq details{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.28);
  border-radius: 18px;
  padding: 14px;
}

.vip-faq summary{
  cursor: pointer;
  font-weight: 900;
  letter-spacing: .2px;
}

.vip-faq p{
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

/* =========================
   GAP WORKOUT (quiz)
========================= */
.gw-options{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.gw-opt{
  width: 100%;
  justify-content: center;
  text-align: center;
}

.gw-opt.is-selected{
  border-color: rgba(247,196,15,.55) !important;
  background: rgba(247,196,15,.10) !important;
}

.gw-opt.is-correct{
  border-color: rgba(34,197,94,.55) !important;
  background: rgba(34,197,94,.12) !important;
  color: rgba(255,255,255,.92) !important;
}

.gw-opt.is-wrong{
  border-color: rgba(239,68,68,.55) !important;
  background: rgba(239,68,68,.10) !important;
  color: rgba(255,255,255,.92) !important;
}

/* bloco de review (se vocÃª usar drill-item no review) */
#gw-review .drill-item{
  background: rgba(255,255,255,.04);
}

/* =========================
   WINNER EAGLES CAROUSEL (escopado)
========================= */
.we-carousel{
  max-width: 560px;
  margin: 14px auto 0;
}

.we-carousel-viewport{
  overflow: hidden;
  border-radius: var(--radius);
}

.we-carousel-track{
  display: flex;
  transition: transform .45s ease-in-out;
  will-change: transform;
}

.we-slide{
  min-width: 100%;
  padding: 18px 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
  text-align: left;
}

.we-slide .n{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0b0b0b;
  background: linear-gradient(135deg, rgba(247,196,15,.95), rgba(255,223,106,.95));
  border: 1px solid rgba(247,196,15,.35);
  box-shadow: 0 0 14px rgba(247,196,15,.20);
  margin-bottom: 10px;
}

.we-carousel-controls{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
}

.we-nav{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.we-nav:hover{
  transform: translateY(-1px);
  background: rgba(247,196,15,.10);
  border-color: rgba(247,196,15,.25);
}

.we-dots{
  display: flex;
  gap: 8px;
  align-items: center;
}

.we-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: transform .12s ease, background .12s ease;
}

.we-dot.is-active{
  background: rgba(247,196,15,.95);
  transform: scale(1.25);
}

/* =========================
   GRADED READERS â€” GRID + CARD (ÃšNICO BLOCO) âœ…
   (sem matar o .card global, sem duplicaÃ§Ã£o)
========================= */

/* Grid do Readers (somente #readersGrid) */
#readersGrid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}

/* Responsivo do Readers */
@media (max-width: 1200px){
  #readersGrid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px){
  #readersGrid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  #readersGrid{ grid-template-columns: 1fr; }
}

/* Card do livro (apenas no readers) */
#readersGrid .reader-card{
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  display: flex;
  justify-content: center;
}

/* Moldura real (link) */
#readersGrid .reader-link{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  padding: 14px 14px 16px;
  border-radius: 22px;

  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  box-shadow: 0 22px 60px rgba(0,0,0,.45);

  text-decoration: none;
  color: inherit;

  transition: transform .15s ease, box-shadow .15s ease;
}

#readersGrid .reader-link:hover{
  transform: translateY(-3px);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
}

/* Capa */
#readersGrid .reader-cover{
  width: 100%;
  max-width: 180px;
  height: auto;
  margin: 0 auto 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 14px 40px rgba(0,0,0,.45);
  display: block;
  transition: transform .12s ease, box-shadow .12s ease;
}

#readersGrid .reader-link:hover .reader-cover{
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(0,0,0,.45);
}

/* Textos com a mesma largura da capa */
#readersGrid .card-kicker,
#readersGrid .reader-title,
#readersGrid .reader-topic{
  width: 100%;
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
}

#readersGrid .card-kicker{
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: .10em;
}

#readersGrid .reader-title{
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.2;
}

#readersGrid .reader-topic{
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* =========================
   PREMIUM SHOWCASE
========================= */
.premium-showcase{
  padding:40px;
  border-radius:20px;
  background:linear-gradient(180deg,#0b0f14,#05070a);
}

.premium-sub{
  opacity:.85;
  margin-bottom:24px;
}

.premium-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:18px;
  margin-bottom:26px;
}

.premium-card{
  background:#000;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.1);
  transition: transform .2s ease, box-shadow .2s ease;
}

.premium-card img{
  width:100%;
  display:block;
}

.premium-info{
  padding:14px;
}

.premium-info h3{
  margin:0 0 6px;
  font-size:16px;
}

.premium-info p{
  font-size:13px;
  opacity:.8;
}

.lock{
  display:inline-block;
  margin-top:8px;
  font-size:12px;
}

.premium-cta{
  margin-top:20px;
  padding:20px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
}

.premium-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
}

.premium-link{
  text-decoration:none;
  color:inherit;
  display:block;
}

/* =========================
   ASVAB / OPTIONS STATE
========================= */
.av-opt.is-correct { border-color: rgba(34,197,94,.7) !important; }
.av-opt.is-wrong { border-color: rgba(239,68,68,.7) !important; }
.btn.is-correct { border-color: rgba(34,197,94,.7) !important; }
.btn.is-wrong { border-color: rgba(239,68,68,.7) !important; }

/* Active level links (A1..C2) */
.btn[aria-current="page"]{
  color: var(--gold);
  background: rgba(247,196,15,.10);
  border-color: rgba(247,196,15,.25);
}

/* Q/A option selection (before submit) */
.qa-option.is-selected{
  background: rgba(247,196,15,.08);
  border-color: rgba(247,196,15,.35);
  box-shadow: 0 0 0 1px rgba(247,196,15,.18) inset;
}

/* Q/A list (10/day) */
.qa-qbtn{
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.qa-qbtn:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
}
.qa-qbtn.active{
  border-color: rgba(247,196,15,.40);
  box-shadow: 0 0 0 2px rgba(247,196,15,.10);
}
.qa-qrow{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}
.qa-qnum{
  font-weight: 900;
  letter-spacing: .08em;
}
.qa-qright.ok{ color:#86efac; }
.qa-qright.bad{ color:#fca5a5; }
.qa-qright.muted{ color: var(--muted2); }

/* Q/A reveal (yellow highlight) */
.qa-reveal{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(247,196,15,.35);
  background: rgba(247,196,15,.08);
  color: rgba(255,255,255,.92);
}
.qa-reveal-title{ margin: 0 0 10px; }
.qa-reveal-q{ margin: 0 0 6px; color: rgba(255,255,255,.90); }
.qa-reveal-a{
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 900;
  color: var(--gold2);
}
.qa-reveal-c{ margin: 0; color: rgba(255,255,255,.90); }

.qa-translation{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.28);
  color: rgba(255,255,255,.88);
}

/* =========================
   PLAYER (karaoke)
========================= */
.we-player{
  position: sticky;
  top: 10px;
  z-index: 50;

  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;

  padding:10px 12px;
  margin: 0 0 14px;

  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
}

.we-player input[type="range"]{
  flex: 1 1 220px;
  min-width: 180px;
}

.we-player:not(.hidden){
  opacity: 1;
}

.we-player .is-playing{
  box-shadow: 0 0 0 1px rgba(247,196,15,.22) inset;
}

/* =========================
   READER GRID (EN | PT)
========================= */
.reader-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items:start;
}

.reader-row{ display: contents; }

.cell{
  padding: 10px 12px;
  border-radius: 14px;
}

.cell.en{ color: rgba(255,255,255,.90); }
.cell.pt{ color: rgba(255,255,255,.82); }

.row-line .cell{
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
}

.row-head .cell{
  padding-top: 18px;
  padding-bottom: 8px;
  background: transparent;
  border: none;
}

.row-head h2{
  margin: 0;
  font-size: 20px;
}

.row-active .cell{
  background: rgba(247,196,15,.07);
  border-color: rgba(247,196,15,.12);
  box-shadow: 0 0 0 1px rgba(247,196,15,.10) inset;
}

@media (max-width: 900px){
  .reader-grid{ grid-template-columns: 1fr; }
  .cell.pt{ opacity: .95; }
}

/* =========================
   BLOCO (box de conteÃºdo)
========================= */
.bloco{
  display: inline-block;
  border: 1px solid var(--stroke);
  color: var(--text);
  padding: 14px;
  margin: 16px 0;
  background: var(--card);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.bloco h3{
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.35;
}

/* =========================
   AUTH MODAL â€” Winner Eagles
========================= */
.we-modal{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.we-modal[hidden]{ display: none !important; }

.we-modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.68);
  backdrop-filter: blur(3px);
}

.we-modal-card{
  position: relative;
  width: min(520px, 100%);
  border-radius: 18px;
  padding: 18px;
  background: rgba(10,12,18,.92);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
}

.we-modal-x{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: #fff;
  cursor: pointer;
}

.we-modal-card h3{ margin: 0 0 12px; }

.we-field{
  display:block;
  margin: 10px 0;
}

.we-field span{
  display:block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}

.we-field input{
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color: #fff;
  outline: none;
}

.we-field input:focus{
  border-color: rgba(255,255,255,.28);
}

.we-row{
  display:flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.we-row .btn{ flex: 1 1 180px; }

.we-hint{
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  min-height: 18px;
}

/* barra do login no menu */
.auth-bar{ display:flex; gap:10px; align-items:center; margin-left: 12px; }
.auth-user{ display:flex; gap:10px; align-items:center; }

.badge{
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  color: var(--text);
  background: rgba(255,255,255,.06);
}
.badge.warn{
  color: var(--gold);
  border-color: rgba(247,196,15,.35);
  background: rgba(247,196,15,.12);
}

/* Mostrar senha no modal (SEM <style>) âœ… */
.we-pass-row{
  position: relative;
  display: flex;
  align-items: center;
}
.we-pass-row input{
  width: 100%;
  padding-right: 46px;
}
.we-pass-toggle{
  position: absolute;
  right: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  opacity: .8;
  padding: 6px;
  line-height: 1;
  color: rgba(255,255,255,.9);
}
.we-pass-toggle:hover{ opacity: 1; }

/* =========================
   ATIVIDADES â€” DIA + SIDEBAR
========================= */
.activity-layout{
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 16px;
  align-items: start;
}

@media (max-width: 980px){
  .activity-layout{ grid-template-columns: 1fr; }
}

.activity-card{ padding: 18px 20px; }

.activity-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom: 12px;
}

.activity-meta{ display:flex; gap:10px; align-items:center; }

.daily-list{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* cada frase */
.sentence-card{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding: 14px;
}

.sentence-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.sentence-title{
  margin: 0;
  font-size: 1rem;
}

.sentence-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* slots/banco por frase */
.answer-slots{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.20);
  margin-top: 8px;
}

.slot{
  min-width: 74px;
  min-height: 44px;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px dashed rgba(255,255,255,.18);
  background: rgba(255,255,255,.03);
  display:flex;
  align-items:center;
  justify-content:center;
}

.slot.over{
  border-color: rgba(247,196,15,.38);
  box-shadow: 0 0 0 3px rgba(247,196,15,.10);
}

.wordbank{
  display:flex;
  flex-wrap: wrap;
  gap:10px;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  margin-top: 10px;
}

.tile{
  user-select:none;
  cursor:grab;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.30);
  color: var(--text);
  font-weight: 900;
  letter-spacing: .2px;
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
  touch-action: none;
}

.tile.dragging{ opacity:.55; transform: scale(.98); }
.tile:active{ cursor:grabbing; }

.sentence-feedback{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  color: var(--muted);
}
.sentence-feedback.ok{
  border-color: rgba(34,197,94,.35);
  background: rgba(34,197,94,.08);
  color: var(--text);
}
.sentence-feedback.bad{
  border-color: rgba(239,68,68,.35);
  background: rgba(239,68,68,.08);
  color: var(--text);
}

/* sidebar */
.activity-side{
  padding: 16px;
  position: sticky;
  top: 14px;
}
.side-title{ margin: 0 0 6px; }
.side-sub{ margin: 0 0 12px; }

.history-list{
  display:flex;
  flex-direction: column;
  gap: 10px;
}

/* ==============================
   PAINEL DIREITO â€” BADGES (ZEBRA)
============================== */
.history-item,
.workout-badge,
.badge-item{
  width: 100%;
  text-align: left;
  border-radius: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: var(--text);
  cursor: pointer;
  transition: transform .08s ease, border-color .15s ease, background .15s ease;
  position: relative;
  overflow: hidden;
}

/* Zebra */
.history-item:nth-child(odd),
.workout-badge:nth-child(odd),
.badge-item:nth-child(odd){
  background: rgba(255,255,255,.045);
  border-color: rgba(255,255,255,.12);
}
.history-item:nth-child(even),
.workout-badge:nth-child(even),
.badge-item:nth-child(even){
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
}

/* Hover */
.history-item:hover,
.workout-badge:hover,
.badge-item:hover{
  transform: translateY(-1px);
  border-color: rgba(247,196,15,.55);
  background: rgba(247,196,15,.08);
}

/* Active */
.history-item.active,
.workout-badge.active,
.badge-item.active{
  border-color: rgba(247,196,15,.85);
  background: rgba(247,196,15,.12);
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
}

/* Stripe */
.history-item::before,
.workout-badge::before,
.badge-item::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  background: rgba(255,255,255,.16);
}

.history-item:nth-child(odd)::before,
.workout-badge:nth-child(odd)::before,
.badge-item:nth-child(odd)::before{
  background: rgba(255,255,255,.18);
}
.history-item:nth-child(even)::before,
.workout-badge:nth-child(even)::before,
.badge-item:nth-child(even)::before{
  background: rgba(255,255,255,.26);
}
.history-item.active::before,
.workout-badge.active::before,
.badge-item.active::before{
  background: rgba(247,196,15,.95);
}

/* =========================
   ATIVIDADES â€” DRAG & DROP (bÃ¡sico)
========================= */
.dropzone{
  min-height: 62px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px dashed rgba(255,255,255,.18);
  background: rgba(0,0,0,.22);
  margin-top: 10px;
}

.word-tile{
  user-select: none;
  cursor: grab;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.30);
  color: var(--text);
  font-weight: 900;
  letter-spacing: .2px;
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
  touch-action: none;
}
.word-tile:active{ cursor: grabbing; }
.word-tile.dragging{ opacity: .55; transform: scale(.98); }

.dropzone.over{
  border-color: rgba(247,196,15,.35);
  box-shadow: 0 0 0 3px rgba(247,196,15,.08);
}

.activity-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.activity-feedback{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
  color: var(--muted);
}

.activity-feedback.ok{
  border-color: rgba(34,197,94,.35);
  background: rgba(34,197,94,.08);
  color: var(--text);
}

.activity-feedback.bad{
  border-color: rgba(239,68,68,.35);
  background: rgba(239,68,68,.08);
  color: var(--text);
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }

  .header-inner{
    height: auto;
    padding: 12px 0;
    flex-wrap: wrap;
    gap: 10px;
  }

  .logo{ flex: 1 1 auto; }

  .main-nav{
    width: 100%;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-bottom: 6px;
  }

  .steps{ grid-template-columns: 1fr; }
  .home-grid{ grid-template-columns: 1fr; }

  .workout-layout{ grid-template-columns: 1fr; }

.workout-archive{
    position: static;
    max-height: none;
    overflow: visible;
  }

  .vip-grid{ grid-template-columns: 1fr; }
  .vip-card{ padding: 20px; }

  .wait-card{ padding: 22px 20px; }
  .wait-perks{ grid-template-columns: 1fr; }

  .page-hero.page-hero-split{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px){
  .wait-form{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .content-frame{ padding: 22px 20px; }
  .gw-options{ grid-template-columns: 1fr; }
}
.blank-slot{
  display:inline-flex;
  min-width:140px;
  padding:8px 12px;
  border:2px dashed rgba(255,255,255,.25);
  border-radius:12px;
  vertical-align:middle;
}
/* GAP: keep the blank inline (inside the sentence flow) */
.sentence-card .en{
  display: block;
  white-space: normal;
}
.site-header {
  min-height: 96px;          /* antes devia estar ~64px */
  padding-top: 10px;
  padding-bottom: 10px;
}
.site-header .header-inner {
  display: flex;
  flex-wrap: wrap;          /* ðŸ”¥ permite duas linhas */
  align-items: center;
  gap: 10px 18px;
}
.site-header .main-nav {
  display: flex;
  flex-wrap: wrap;          /* permite quebra */
  align-items: center;
  gap: 10px 14px;
}
.site-header .btn {
  padding: 6px 12px;
  font-size: 13px;
  line-height: 1.2;
}
.site-header .auth-bar {
  flex-basis: 100%;        /* forÃ§a nova linha */
  justify-content: flex-end;
}
:root{
  --header-height: 120px; /* ajuste fino depois */
}
.site-header{
  position: sticky;        /* ou fixed */
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
}
main{
  padding-top: var(--header-height);
}
@media (max-width: 1100px){
  :root{
    --header-height: 140px;
  }
}
/* =========================================================
   WINNER EAGLES â€” HEADER ORGANIZADO (2 ROWS)
   - Row 1: logo + nav links
   - Row 2: cursos + search + filters + auth
========================================================= */

:root{
  --header-row1: 64px;
  --header-row2: 58px;
  --header-height: calc(var(--header-row1) + var(--header-row2));
}

/* Header fixo / sticky */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Empurra o conteÃºdo (evita sobreposiÃ§Ã£o) */
main{
  padding-top: var(--header-height);
}

/* Container do header */
.site-header .header-inner{
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Row 1 */
.we-hrow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height: var(--header-row1);
  padding: 10px 0;
  gap: 14px;
}

.we-hrow-left{
  display:flex;
  align-items:center;
  gap: 14px;
  min-width: 240px;
}

.we-hrow-nav{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Row 2 */
.we-hrow2{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height: var(--header-row2);
  padding: 10px 0 12px;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.we-tools-left,
.we-tools-right{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}

.we-search{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
}

.we-search input{
  width: 260px;
  max-width: 40vw;
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  font-size: 14px;
}

.we-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
  font-size: 13px;
  color: rgba(255,255,255,.9);
}

.we-chip select{
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  font-size: 13px;
}

/* Auth compacta */
.site-header .auth-bar{
  display:inline-flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.site-header .auth-bar .btn{
  padding: 7px 12px;
  font-size: 13px;
  line-height: 1.1;
  transform: none;
}
.site-header .auth-bar .btn:hover{ transform:none; }

/* Responsivo: em telas menores, deixa row2 quebrar bonito */
@media (max-width: 900px){
  :root{
    --header-row1: 70px;
    --header-row2: 92px; /* row2 vira 2 linhas */
  }
  .we-search input{ width: 200px; }
}
/* =========================================================
   HEADER — manter estilo original (hover amarelo)
   Fix: caber todos os botões + empurrar conteúdo (sem sobrepor)
========================================================= */

/* 1) Header pode ficar fixo/sticky sem esmagar conteúdo */
.site-header{
  position: sticky; /* ou fixed se você preferir */
  top: 0;
  z-index: 1000;

  /* aumenta a faixa escura */
  padding: 10px 0 12px;
}

/* 2) Deixe o header mais "alto" quando quebrar linha */
.site-header .header-inner{
  align-items: flex-start;
  gap: 10px;
}

/* 3) Nav: permite quebrar linha e organizar */
.site-header .main-nav{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;

  /* ? permite ir para 2 linhas */
  flex-wrap: wrap;

  /* ? evita que fique esmagado */
  row-gap: 10px;
}

/* 4) Links menores (mantém hover amarelo do seu CSS base) */
.site-header .main-nav > a{
  font-size: 13px;
  padding: 6px 10px;
  line-height: 1.1;
  white-space: nowrap;
}

/* 5) Dropdown + auth também compactos */
.site-header .dropdown-toggle,
.site-header .auth-bar .btn{
  padding: 6px 10px;
  font-size: 13px;
  line-height: 1.1;
  white-space: nowrap;
}

/* 6) Auth não estoura e pode quebrar */
.site-header .auth-bar{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* 7) Se o header estiver cobrindo o conteúdo: empurra o MAIN */
body{
  /* ajuste fino: aumente/diminua até ficar perfeito */
  padding-top: 0;
}

/* 8) Em telas menores, dá mais espaço e deixa 2 linhas mais confortáveis */
@media (max-width: 900px){
  body{ padding-top: 0; }

  .site-header .main-nav{
    justify-content: flex-start;
  }
}
/* highlight (palavra marcada dentro das frases) */
.hl-imperative{ background: rgba(245,197,24,.18); color:#f5c518; border:1px solid rgba(245,197,24,.35); padding:0 6px; border-radius:999px; }
.hl-wh{ background: rgba(96,165,250,.16); color:#60a5fa; border:1px solid rgba(96,165,250,.32); padding:0 6px; border-radius:999px; }

/* tag/pill do tipo do treino (no card do histórico) */
.tag-imperative{ background: rgba(245,197,24,.18); border:1px solid rgba(245,197,24,.45); color:#f5c518; }
.tag-wh{ background: rgba(96,165,250,.16); border:1px solid rgba(96,165,250,.32); color:#60a5fa; }

/* =========================================================
   HEADER (PADRÃO): nav à esquerda do logo + auth à direita
   - Requer: .auth-bar como irmão de #weMainNav dentro de .header-inner
========================================================= */
.site-header .header-inner{
  justify-content: flex-start;
}
.site-header .main-nav{
  justify-content: flex-start;
}
.site-header .auth-bar{
  margin-left: auto;
}


/* =========================
   KIDS BUTTON (HEADER)
========================= */
.kids-nav-btn{
  display:inline-flex;
  align-items:center;
  gap:2px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.22);
  text-decoration: none;
  line-height: 1;
  transform: none;
}

.kids-nav-btn:hover{
  border-color: rgba(255,215,0,.55);
  background: rgba(0,0,0,.34);
}

/* Fonte Kids */
.kids-letter{
  font-family: "Comic Sans MS","Comic Neue","Fredoka","Baloo 2",ui-rounded,system-ui,sans-serif;
  font-weight: 1000;
  font-size: 16px;
  letter-spacing: .2px;
  text-shadow: 0 2px 0 rgba(0,0,0,.35);
}

/* Cores por letra */
.kids-letter.k{ color:#ff4d4d; }   /* vermelho */
.kids-letter.i{ color:#4dd4ff; }   /* azul claro */
.kids-letter.d{ color:#7dff4d; }   /* verde */
.kids-letter.s{ color:#ffd84d; }   /* amarelo */

@media (max-width: 520px){
  .kids-nav-btn{
    padding: 8px 12px;
  }
  .kids-letter{
    font-size: 17px;
  }
}
.kids-nav-btn{
  display:inline-flex;
  align-items:center;
  gap:2px;
  padding: 7px 12px;
  border-radius: 999px;

  background: linear-gradient(180deg, #4dd4ff, #1ea7ff);
  border: 1px solid rgba(0,0,0,.18);

  text-decoration: none;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
}

.kids-nav-btn:hover{
  filter: brightness(1.05) saturate(1.05);
  box-shadow: 0 14px 28px rgba(0,0,0,.26);
}

.kids-letter{
  font-family: "Comic Sans MS","Comic Neue","Fredoka","Baloo 2",ui-rounded,system-ui,sans-serif;
  font-weight: 1000;
  font-size: 16px;
  letter-spacing: .2px;
  text-shadow: 0 2px 0 rgba(0,0,0,.25);
}

.kids-letter{
  font-family: "Fredoka","Baloo 2","Comic Neue","Comic Sans MS",ui-rounded,system-ui,sans-serif;
  font-weight: 1000;
  font-size: 18px;
  letter-spacing: .4px;
  line-height: 1;

  /* CONTORNO ESTILO LOGO (limpo e definido) */
  text-shadow:
    /* 1️⃣ branco — fino, colado */
    -1px  0    0 #ffffff,
     1px  0    0 #ffffff,
     0   -1px  0 #ffffff,
     0    1px  0 #ffffff,

    /* 2️⃣ marrom — uniforme, externo */
    -2px  0    0 #5a3a12,
     2px  0    0 #5a3a12,
     0   -2px  0 #5a3a12,
     0    2px  0 #5a3a12,

    /* 3️⃣ sombra real (profundidade, não contorno) */
     0 3px 5px rgba(0,0,0,.30);
}
#5a3a12   /* marrom chocolate limpo */
#6b4318   /* marrom mais quente */
#4a2f0c   /* marrom mais escuro */
.kids-letter{
  position: relative;
}

.kids-letter::after{
  content: attr(data-letter);
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255,255,255,.35);
  transform: translateY(-1px);
  pointer-events: none;
}
