@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Inter:wght@400;500;600&display=swap');

/* ─── VARIÁVEIS ─────────────────────────────────────────────────── */
:root {
  --bg:    #080B12;
  --bg-2:  #0D1117;
  --bg-3:  #111827;
  --bg-4:  #1E293B;
  --border: rgba(255,255,255,0.06);
  --border-2: rgba(255,255,255,0.12);

  --yellow: #FFD400;
  --red:    #FF4B3E;
  --blue:   #2AA9FF;
  --green:  #00C896;

  --text:   #F1F5F9;
  --text-2: #94A3B8;
  --text-3: #64748B;
  --text-4: #475569;

  --cat-tecnologia: #FFD400;
  --cat-esportes:   #2AA9FF;
  --cat-empresas:   #FF4B3E;
  --cat-marketing:  #00C896;
  --cat-produtos:   #FF8C00;
  --cat-politica:   #9B59B6;

  --r:    8px;
  --r-sm: 5px;
  --r-lg: 12px;
  --r-xl: 16px;

  --shadow: 0 4px 24px rgba(0,0,0,0.4);
}

/* ─── RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: 'Inter', sans-serif; cursor: pointer; }
img { display: block; max-width: 100%; }

/* ─── UTILITÁRIOS ────────────────────────────────────────────────── */
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }

/* ─── TIPOGRAFIA ─────────────────────────────────────────────────── */
.font-bang { font-family: 'Bangers', cursive; letter-spacing: 1px; }
h1, h2, h3 { font-family: 'Bangers', cursive; letter-spacing: 1px; font-weight: 400; }

/* ─── NAVBAR ─────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 56px;
  background: rgba(5,7,9,0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.nav-logo-top {
  font-family: 'Bangers', cursive;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--yellow);
}
.nav-logo-bot {
  font-family: 'Bangers', cursive;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  color: var(--text-4);
  transition: color 0.15s;
  letter-spacing: 0.5px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--yellow); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-search {
  background: none;
  border: none;
  color: var(--text-4);
  font-size: 16px;
  padding: 4px;
  transition: color 0.15s;
}
.nav-search:hover { color: var(--text); }
.nav-cta {
  background: var(--yellow);
  color: #0A0E17;
  border: none;
  border-radius: var(--r-sm);
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.9; }

/* ─── PAGE HERO ──────────────────────────────────────────────────── */
.page-hero {
  background: var(--bg-2);
  padding: 32px 24px 28px;
  border-bottom: 1px solid var(--border);
}
.page-hero-label {
  font-size: 11px;
  color: var(--text-4);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--yellow);
}
.page-hero h1 {
  font-size: 44px;
  color: var(--text);
  margin-bottom: 6px;
}
.page-hero p {
  font-size: 14px;
  color: var(--text-3);
  max-width: 560px;
}

/* ─── BREADCRUMB ─────────────────────────────────────────────────── */
.breadcrumb {
  padding: 12px 24px;
  font-size: 12px;
  color: var(--text-4);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb a { color: var(--text-4); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb .sep { color: var(--bg-4); }
.breadcrumb .current { color: var(--yellow); }

/* ─── BADGES / PILLS ─────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 3px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.badge-year { border: 1px solid var(--border-2); color: var(--text-3); }
.badge-fail { border: 1px solid var(--red); color: var(--red); font-weight: 500; }
.badge-type { color: var(--text-3); font-size: 12px; }

.badge-cat { border: 1px solid; }
.badge-cat[data-cat="Tecnologia"] { border-color: rgba(255,212,0,0.4); color: var(--cat-tecnologia); }
.badge-cat[data-cat="Esportes"]   { border-color: rgba(42,169,255,0.4); color: var(--cat-esportes); }
.badge-cat[data-cat="Empresas"]   { border-color: rgba(255,75,62,0.4);  color: var(--cat-empresas); }
.badge-cat[data-cat="Marketing"]  { border-color: rgba(0,200,150,0.4);  color: var(--cat-marketing); }
.badge-cat[data-cat="Produtos"]   { border-color: rgba(255,140,0,0.4);  color: var(--cat-produtos); }
.badge-cat[data-cat="Política"]   { border-color: rgba(155,89,182,0.4); color: var(--cat-politica); }

.pill {
  border: 1px solid var(--border-2);
  color: var(--text-2);
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 20px;
  cursor: pointer;
  background: transparent;
  transition: all 0.15s;
  white-space: nowrap;
}
.pill:hover { border-color: var(--yellow); color: var(--yellow); }
.pill.active { background: var(--yellow); color: #0A0E17; border-color: var(--yellow); font-weight: 500; }

/* ─── STARS ──────────────────────────────────────────────────────── */
.stars { color: var(--yellow); letter-spacing: 2px; }
.stars .empty { color: var(--bg-4); }
.score-num { font-family: 'Bangers', cursive; font-size: 18px; color: var(--yellow); letter-spacing: 1px; }

/* ─── BOTÕES ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 20px;
  transition: all 0.15s;
  cursor: pointer;
  border: none;
}
.btn-yellow {
  background: var(--yellow);
  color: #0A0E17;
}
.btn-yellow:hover { opacity: 0.9; }

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,212,0,0.4);
  color: var(--yellow);
}
.btn-outline:hover { border-color: var(--yellow); background: rgba(255,212,0,0.06); }

.btn-red {
  background: transparent;
  border: 1px solid rgba(255,75,62,0.4);
  color: var(--red);
}
.btn-red:hover { border-color: var(--red); background: rgba(255,75,62,0.06); }

/* ─── FILTRO BAR ─────────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-bar-label { font-size: 11px; color: var(--text-4); margin-right: 4px; white-space: nowrap; }
.filter-sep { width: 1px; height: 20px; background: var(--border-2); margin: 0 6px; flex-shrink: 0; }

/* ─── FAIL CARD ──────────────────────────────────────────────────── */
.fail-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
  display: block;
}
.fail-card:hover {
  border-color: rgba(255,212,0,0.25);
  transform: translateY(-2px);
}
.fc-img {
  position: relative;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.fc-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}
.fc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.65) 100%);
}
.fc-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  font-family: 'Bangers', cursive;
  font-size: 11px;
  font-weight: 400;
  padding: 2px 9px;
  border-radius: 3px;
  letter-spacing: 1px;
  color: #0A0E17;
}
.fc-body {
  padding: 10px 12px 13px;
}
.fc-name {
  font-family: 'Bangers', cursive;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 2px;
  line-height: 1;
}
.fc-meta {
  font-size: 11px;
  color: var(--text-3);
  margin-bottom: 5px;
}
.fc-stars { font-size: 13px; }

/* ─── RANK ITEM ──────────────────────────────────────────────────── */
.rank-item {
  display: flex;
  align-items: stretch;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  min-height: 76px;
  margin-bottom: 3px;
  transition: border-color 0.15s;
}
.rank-item:hover { border-color: rgba(255,212,0,0.2); }
.rank-item.rank-top { border-color: rgba(255,212,0,0.15); min-height: 90px; }

.ri-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  flex-shrink: 0;
  font-family: 'Bangers', cursive;
  font-size: 26px;
  color: var(--bg-4);
}
.ri-num.gold { color: var(--yellow); }
.ri-num.silver { color: var(--text-3); }
.ri-num.bronze { color: #FF8C00; }

.ri-thumb {
  width: 90px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.ri-thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-direction: column;
  gap: 2px;
}
.ri-thumb-inner span.label {
  font-size: 8px;
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  opacity: 0.4;
}
.ri-thumb-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,17,23,0.35), transparent 60%);
}
.rank-item.rank-top .ri-thumb { width: 110px; }

.ri-info {
  flex: 1;
  padding: 10px 12px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}
.ri-case { font-size: 10px; color: var(--text-4); letter-spacing: 1px; }
.ri-name {
  font-family: 'Bangers', cursive;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--text);
  line-height: 1.1;
}
.ri-tag { font-size: 11px; color: var(--text-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.ri-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  padding: 10px 14px;
  flex-shrink: 0;
}
.ri-cat {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 3px;
  white-space: nowrap;
}
.ri-score .stars { font-size: 12px; }
.ri-score .score-num { font-size: 17px; }

/* ─── GRID ───────────────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }

/* ─── SECTION ────────────────────────────────────────────────────── */
.section { padding: 28px 24px; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Bangers', cursive;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--yellow);
}
.section-link { font-size: 12px; color: var(--text-4); }
.section-link:hover { color: var(--yellow); }
.section-count { font-size: 12px; color: var(--text-4); }

/* ─── HOME HERO ──────────────────────────────────────────────────── */
.home-hero {
  background: var(--bg-2);
  padding: 40px 24px 36px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.home-hero-left { flex: 1; position: relative; z-index: 2; }
.home-hero-right {
  width: 280px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.home-hero-img {
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: var(--r);
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}
.home-hero-img::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 60%;
  background: linear-gradient(to right, var(--bg-2), transparent);
}
.hero-case-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow);
  color: #0A0E17;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.hero-title {
  font-family: 'Bangers', cursive;
  font-size: 72px;
  line-height: 0.9;
  letter-spacing: 3px;
  color: var(--text);
  margin-bottom: 10px;
}
.hero-tagline {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 16px;
  max-width: 480px;
}
.hero-tagline span { color: var(--yellow); }
.hero-meta { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.hero-rating-label { font-size: 11px; color: var(--text-4); letter-spacing: 1px; text-transform: uppercase; }
.hero-actions { display: flex; align-items: center; gap: 12px; }
.hero-fav {
  background: rgba(255,212,0,0.08);
  border: 1px solid rgba(255,212,0,0.25);
  color: var(--yellow);
  border-radius: var(--r-sm);
  padding: 9px 12px;
  font-size: 14px;
}
.hero-fav:hover { background: rgba(255,212,0,0.14); }

/* ─── DOSSIÊ HERO ────────────────────────────────────────────────── */
.dossie-hero {
  background: var(--bg-2);
  padding: 28px 24px 24px;
  border-bottom: 1px solid var(--border);
}
.dossie-case-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.dossie-title {
  font-family: 'Bangers', cursive;
  font-size: 64px;
  line-height: 0.9;
  letter-spacing: 3px;
  color: var(--text);
  margin-bottom: 8px;
}
.dossie-tagline {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 14px;
  max-width: 600px;
  line-height: 1.5;
}
.dossie-meta { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; margin-bottom: 14px; }
.dossie-rating { display: flex; align-items: center; gap: 8px; }
.fav-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,212,0,0.06);
  border: 1px solid rgba(255,212,0,0.25);
  color: var(--yellow);
  border-radius: var(--r-sm);
  padding: 6px 12px;
  font-size: 12px;
}
.fav-btn:hover { background: rgba(255,212,0,0.12); }

/* ─── TABS ───────────────────────────────────────────────────────── */
.tabs {
  display: flex;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  padding: 13px 18px;
  font-size: 12px;
  color: var(--text-4);
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.15s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.tab:hover { color: var(--text-2); }
.tab.active { color: var(--yellow); border-bottom-color: var(--yellow); }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ─── CONTEÚDO DO DOSSIÊ ─────────────────────────────────────────── */
.dossie-body {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.dossie-main {
  flex: 1;
  padding: 24px;
  border-right: 1px solid var(--border);
  min-width: 0;
}
.dossie-side {
  width: 240px;
  flex-shrink: 0;
  padding: 20px 18px;
}

.yt-embed {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
  overflow: hidden;
  position: relative;
}
.yt-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.yt-play-btn {
  width: 52px;
  height: 52px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.yt-label { font-size: 12px; color: var(--text-4); }

.gen-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-4);
  margin-bottom: 14px;
}
.editorial-text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 16px;
}
.editorial-text strong { color: var(--text); font-weight: 500; }

/* ─── ASIDE BOXES ────────────────────────────────────────────────── */
.aside-box {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px;
  margin-bottom: 14px;
}
.aside-title {
  font-size: 10px;
  color: var(--text-4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.aside-quote {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
  font-style: italic;
  border-left: 3px solid var(--yellow);
  padding-left: 12px;
  margin-bottom: 8px;
}
.aside-attr { font-size: 11px; color: var(--text-4); }

/* ─── SCORE BARS ─────────────────────────────────────────────────── */
.score-list { display: flex; flex-direction: column; gap: 10px; }
.score-row { display: flex; flex-direction: column; gap: 4px; }
.score-lbl {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-2);
}
.score-val { font-size: 11px; color: var(--yellow); font-weight: 500; }
.score-track {
  height: 5px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
}
.score-fill {
  height: 5px;
  border-radius: 3px;
  transition: width 0.6s ease;
}
.score-total {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.score-total-lbl {
  font-size: 10px;
  color: var(--text-4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.score-total-val {
  font-family: 'Bangers', cursive;
  font-size: 24px;
  color: var(--yellow);
  letter-spacing: 1px;
}

/* ─── AMAZON WIDGET ──────────────────────────────────────────────── */
.amazon-card {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.amazon-cover {
  width: 44px;
  height: 60px;
  background: var(--bg-4);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.amazon-info { flex: 1; }
.amazon-book-title { font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 2px; line-height: 1.3; }
.amazon-author { font-size: 11px; color: var(--text-3); margin-bottom: 8px; }
.amazon-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--yellow);
  color: #0A0E17;
  border: none;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
}
.amazon-btn:hover { opacity: 0.9; }

/* ─── TIMELINE ───────────────────────────────────────────────────── */
.timeline-section { padding: 24px; border-top: 1px solid var(--border); }
.timeline {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}
.timeline::-webkit-scrollbar { display: none; }
.tl-item { flex: 1; min-width: 110px; padding-right: 6px; }
.tl-date {
  font-family: 'Bangers', cursive;
  font-size: 16px;
  color: var(--yellow);
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.tl-dot-row { display: flex; align-items: center; margin-bottom: 8px; }
.tl-dot {
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}
.tl-dot.fail { background: var(--red); }
.tl-line { flex: 1; height: 1px; background: rgba(255,212,0,0.2); }
.tl-text { font-size: 11px; color: var(--text-3); line-height: 1.5; padding-right: 8px; }

/* ─── RELACIONADOS ───────────────────────────────────────────────── */
.related-section { padding: 24px; border-top: 1px solid var(--border); }

/* ─── HOME HERO COLLECTION ───────────────────────────────────────── */
.col-hero {
  position: relative;
  background: var(--bg-2);
  padding: 30px 24px 26px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  min-height: 170px;
  display: flex;
  gap: 24px;
  align-items: center;
}
.col-hero-content { position: relative; z-index: 2; flex: 1; max-width: 480px; }
.col-hero-label {
  font-size: 11px;
  color: var(--yellow);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.col-hero-label::before { content: ''; display: block; width: 18px; height: 2px; background: var(--yellow); }
.col-hero h1 {
  font-size: 32px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}
.col-hero-sub { font-size: 13px; color: var(--text-3); line-height: 1.5; margin-bottom: 14px; }
.col-hero-meta { display: flex; align-items: center; gap: 12px; }
.col-hero-count { font-size: 13px; color: var(--yellow); font-weight: 500; display: flex; align-items: center; gap: 5px; }
.col-hero-count::before { content: '●'; font-size: 7px; }
.col-hero-bg {
  position: absolute;
  right: 0; top: 0; bottom: 0; width: 45%;
  background: linear-gradient(135deg, #1a0e04 0%, #2d1a08 40%, #0a0802 100%);
  opacity: 0.7;
}
.col-hero-fade {
  position: absolute;
  right: 0; top: 0; bottom: 0; width: 55%;
  background: linear-gradient(to right, var(--bg-2) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.col-hero-watermark {
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Bangers', cursive;
  font-size: 52px;
  color: rgba(255,212,0,0.05);
  line-height: 1.2;
  text-align: right;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
}

/* ─── COLEÇÃO CARD (listing) ─────────────────────────────────────── */
.colecao-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}
.colecao-card:hover { border-color: rgba(255,212,0,0.2); }
.colecao-thumbs {
  display: flex;
  height: 80px;
  overflow: hidden;
}
.colecao-thumb {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border-right: 1px solid rgba(8,11,18,0.8);
}
.colecao-thumb:last-child { border-right: none; }
.colecao-band { height: 3px; display: flex; }
.colecao-band-seg { flex: 1; }
.colecao-body { padding: 14px; }
.colecao-num { font-size: 10px; color: var(--text-4); letter-spacing: 1px; margin-bottom: 5px; }
.colecao-title {
  font-family: 'Bangers', cursive;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 5px;
}
.colecao-desc { font-size: 11px; color: var(--text-3); line-height: 1.4; margin-bottom: 10px; }
.colecao-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.colecao-count { font-size: 11px; color: var(--yellow); font-weight: 500; }
.colecao-cta { font-size: 11px; color: var(--text-4); }

/* ─── FEATURED COLECAO ───────────────────────────────────────────── */
.featured-col {
  background: var(--bg-2);
  border: 1px solid rgba(255,212,0,0.18);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  min-height: 150px;
  margin-bottom: 20px;
}
.featured-col-left { flex: 1; padding: 20px 22px; display: flex; flex-direction: column; justify-content: space-between; }
.featured-col-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,212,0,0.1);
  border: 1px solid rgba(255,212,0,0.22);
  color: var(--yellow);
  font-size: 10px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 3px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  width: fit-content;
}
.featured-col-title {
  font-family: 'Bangers', cursive;
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 6px;
}
.featured-col-desc { font-size: 12px; color: var(--text-3); line-height: 1.5; margin-bottom: 14px; }
.featured-col-right {
  width: 180px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.thumb-stack { position: relative; width: 140px; height: 100px; }
.thumb-mini {
  position: absolute;
  width: 72px;
  height: 90px;
  border-radius: 6px;
  border: 2px solid var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.thumb-mini:nth-child(1) { left: 0; top: 4px; z-index: 3; transform: rotate(-4deg); }
.thumb-mini:nth-child(2) { left: 34px; top: 0; z-index: 2; transform: rotate(0deg); }
.thumb-mini:nth-child(3) { left: 68px; top: 4px; z-index: 1; transform: rotate(4deg); }

/* ─── LOJA CARD ──────────────────────────────────────────────────── */
.produto-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}
.produto-card:hover { border-color: rgba(255,212,0,0.2); }
.produto-img {
  aspect-ratio: 1;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.produto-body { padding: 14px; }
.produto-title { font-family: 'Bangers', cursive; font-size: 17px; letter-spacing: 1px; color: var(--text); margin-bottom: 3px; }
.produto-author { font-size: 11px; color: var(--text-3); margin-bottom: 10px; }
.produto-foot { display: flex; align-items: center; justify-content: space-between; }
.produto-comissao { font-size: 11px; color: var(--text-4); }
.produto-btn {
  background: var(--yellow);
  color: #0A0E17;
  border: none;
  border-radius: 4px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 500;
}

/* ─── NEWSLETTER CTA ─────────────────────────────────────────────── */
.newsletter-cta {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
}
.newsletter-cta h2 { font-size: 28px; color: var(--text); margin-bottom: 8px; }
.newsletter-cta p { font-size: 14px; color: var(--text-3); margin-bottom: 20px; }
.newsletter-form { display: flex; gap: 8px; max-width: 400px; margin: 0 auto; }
.newsletter-input {
  flex: 1;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  color: var(--text);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
}
.newsletter-input::placeholder { color: var(--text-4); }
.newsletter-input:focus { outline: none; border-color: rgba(255,212,0,0.4); }

/* ─── FOOTER ─────────────────────────────────────────────────────── */
.site-footer {
  background: #050709;
  border-top: 1px solid var(--border);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo { font-family: 'Bangers', cursive; font-size: 18px; letter-spacing: 2px; }
.footer-logo span:first-child { color: var(--yellow); }
.footer-logo span:last-child { color: var(--red); }
.footer-links { display: flex; gap: 16px; }
.footer-links a { font-size: 12px; color: var(--text-4); }
.footer-links a:hover { color: var(--yellow); }
.footer-copy { font-size: 11px; color: var(--text-4); }

/* ─── DIVIDER ────────────────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-4);
  font-size: 12px;
  cursor: pointer;
  padding: 14px 0;
}
.divider-line { flex: 1; height: 1px; background: var(--border); }

/* ─── EMPTY STATE ────────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-3);
}
.empty-state h3 { font-size: 24px; color: var(--text-2); margin-bottom: 8px; }

/* ─── LOADING ────────────────────────────────────────────────────── */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  color: var(--text-4);
  font-size: 13px;
  gap: 8px;
}
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── LOJA HERO ──────────────────────────────────────────────────── */
.loja-phase2 {
  background: var(--bg-3);
  border: 1px dashed var(--border-2);
  border-radius: var(--r);
  padding: 24px;
  text-align: center;
  margin-bottom: 24px;
}
.loja-phase2 h3 { font-size: 18px; color: var(--text-2); margin-bottom: 6px; }
.loja-phase2 p { font-size: 13px; color: var(--text-4); }

/* ─── SOBRE ──────────────────────────────────────────────────────── */
.sobre-block { margin-bottom: 28px; }
.sobre-block h2 { font-size: 26px; color: var(--text); margin-bottom: 10px; }
.sobre-block p { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 10px; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-2);
  border-radius: var(--r-sm);
  padding: 8px 14px;
  font-size: 13px;
  transition: all 0.15s;
}
.social-link:hover { border-color: var(--yellow); color: var(--yellow); }

/* ─── RESPONSIVO BÁSICO ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .home-hero { flex-direction: column; }
  .home-hero-right { width: 100%; }
  .hero-title { font-size: 52px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .dossie-body { flex-direction: column; }
  .dossie-side { width: 100%; border-top: 1px solid var(--border); }
  .featured-col { flex-direction: column; }
  .featured-col-right { width: 100%; }
}
@media (max-width: 480px) {
  .grid-3 { grid-template-columns: 1fr; }
  .dossie-title { font-size: 48px; }
}
