/* ═══════════════════════════════════════════
   filmôGo — Design System
   Identidade: neon azul/verde, dark base
   ═══════════════════════════════════════════ */

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

:root {
  --bg:          #08090d;
  --bg2:         #0e0f16;
  --surface:     #12141e;
  --surface2:    #191c28;
  --surface3:    #202433;
  --border:      rgba(255,255,255,0.07);
  --border2:     rgba(255,255,255,0.12);

  /* Cores da marca */
  --cyan:        #00d4ff;
  --green:       #00ff88;
  --cyan-dark:   #0099cc;
  --green-dark:  #00bb66;
  --grad:        linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
  --grad-text:   linear-gradient(90deg, #00d4ff, #00ff88);
  --glow-cyan:   0 0 20px rgba(0,212,255,0.3);
  --glow-green:  0 0 20px rgba(0,255,136,0.3);
  --glow-both:   0 0 30px rgba(0,212,255,0.2), 0 0 60px rgba(0,255,136,0.1);

  --text:        #f0f2ff;
  --text1:       #f0f2ff;
  --text2:       #9aa0b8;
  --text3:       #5c6280;

  --danger:      #ff4f6e;
  --warning:     #ffaa00;
  --success:     #00cc66;

  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
}

*, *::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.7;
  min-height: 100vh;
}

/* ── Tipografia ─────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -1.5px; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.2rem; }
p  { color: var(--text2); }
a  { color: var(--cyan); text-decoration: none; transition: color .2s; }
a:hover { color: var(--green); }

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout base ────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5vw; }
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 5vw; }

/* ── Header ─────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(8,9,13,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex; align-items: center;
  overflow: hidden;
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--grad);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 16px;
  color: #08090d;
  flex-shrink: 0;
  box-shadow: var(--glow-both);
}
.logo-word {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 20px;
  color: var(--text);
}
.logo-word span { color: var(--cyan); }
.logo-img { height: 40px; width: auto; display: block; flex-shrink: 0; }
.logo-img--sm { height: 26px; }
.logo-img--lg { height: 52px; }

.header-nav { display: flex; align-items: center; gap: 6px; }
.header-nav a {
  padding: 7px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--text2);
  transition: all .2s;
}
.header-nav a:hover { color: var(--text); background: var(--surface); }
.header-nav a.active { color: var(--cyan); }

/* ── Painel Sidebar ─────────────────────────── */
.panel-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 64px);
}
.sidebar {
  background: var(--bg2);
  border-right: 1px solid var(--border);
  padding: 24px 0;
  position: sticky; top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
}
.sidebar-section { padding: 0 12px; margin-bottom: 8px; }
.sidebar-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--text3); padding: 0 8px; margin-bottom: 6px;
}
.sidebar-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; color: var(--text2);
  text-decoration: none; transition: all .15s;
  border-left: 2px solid transparent;
  margin-bottom: 2px;
}
.sidebar-link:hover { color: var(--text); background: var(--surface2); }
.sidebar-link.active {
  color: var(--cyan); background: rgba(0,212,255,.06);
  border-left-color: var(--cyan);
}
.sidebar-link .icon { font-size: 16px; flex-shrink: 0; }
.panel-content { padding: 32px; background: var(--bg); }

/* ── Botões ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; font-family: 'Inter', sans-serif;
  cursor: pointer; transition: all .2s;
  border: none; text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: #08090d;
  box-shadow: 0 0 20px rgba(0,212,255,.25);
}
.btn-primary:hover {
  box-shadow: 0 0 32px rgba(0,212,255,.45);
  transform: translateY(-1px);
  color: #08090d;
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,212,255,.06); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ── Cards ──────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.card-glow {
  border-color: rgba(0,212,255,.15);
  box-shadow: var(--glow-both);
}
.card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.card-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; }

/* ── Stats Grid ─────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px; margin-bottom: 32px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.stat-label { font-size: 12px; color: var(--text3); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.stat-value {
  font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-sub { font-size: 12px; color: var(--text3); margin-top: 4px; }

/* ── Formulários ────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; margin-bottom: 7px;
  font-size: 13px; font-weight: 500; color: var(--text2);
}
.form-control {
  width: 100%; padding: 11px 14px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  color: var(--text); font-size: 14px; font-family: 'Inter', sans-serif;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,212,255,.12);
}
.form-control::placeholder { color: var(--text3); }
select.form-control { cursor: pointer; }
.form-hint { font-size: 12px; color: var(--text3); margin-top: 5px; }
.form-error { color: var(--danger); font-size: 13px; margin-top: 4px; }

/* ── Tabelas ────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
thead tr { background: var(--surface2); }
thead th {
  padding: 12px 16px; text-align: left;
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text3); border-bottom: 1px solid var(--border);
}
tbody tr { border-bottom: 1px solid var(--border); transition: background .15s; }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--surface2); }
td { padding: 12px 16px; color: var(--text2); vertical-align: middle; }
td strong { color: var(--text); }

/* ── Badges ─────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 99px;
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
}
.badge-cyan    { background: rgba(0,212,255,.12); color: var(--cyan); }
.badge-green   { background: rgba(0,255,136,.12); color: var(--green); }
.badge-danger  { background: rgba(255,79,110,.12); color: var(--danger); }
.badge-warning { background: rgba(255,170,0,.12); color: var(--warning); }
.badge-muted   { background: rgba(255,255,255,.07); color: var(--text3); }

/* ── Alertas ────────────────────────────────── */
.alert {
  padding: 14px 18px; border-radius: var(--radius-sm);
  font-size: 14px; margin-bottom: 20px; border: 1px solid;
}
.alert-success { background: rgba(0,204,102,.08); border-color: rgba(0,204,102,.25); color: #00cc66; }
.alert-danger  { background: rgba(255,79,110,.08); border-color: rgba(255,79,110,.25); color: var(--danger); }
.alert-info    { background: rgba(0,212,255,.08); border-color: rgba(0,212,255,.25); color: var(--cyan); }

/* ── Paginação ──────────────────────────────── */
.pagination { display: flex; gap: 6px; margin-top: 24px; }
.page-link {
  padding: 7px 13px; border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text2); font-size: 13px; font-weight: 500;
  text-decoration: none; transition: all .15px;
}
.page-link:hover { border-color: var(--cyan); color: var(--cyan); }
.page-link.active { background: var(--grad); color: #08090d; border-color: transparent; }

/* ── Galeria de vídeos ──────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.video-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden; transition: all .2s; cursor: pointer;
}
.video-card:hover { border-color: rgba(0,212,255,.3); transform: translateY(-2px); box-shadow: var(--glow-cyan); }
.video-thumb {
  aspect-ratio: 16/9; background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: var(--text3); position: relative;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-info { padding: 12px 14px; }
.video-title { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.video-meta  { font-size: 11px; color: var(--text3); }

/* ── Pasta ──────────────────────────────────── */
.folder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px; margin-bottom: 24px;
}
.folder-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px; cursor: pointer;
  transition: all .2s; text-decoration: none;
  display: block;
}
.folder-card:hover { border-color: rgba(0,255,136,.3); color: var(--green); }
.folder-icon { font-size: 24px; margin-bottom: 8px; }
.folder-name { font-size: 13px; font-weight: 600; color: var(--text); }
.folder-count { font-size: 11px; color: var(--text3); margin-top: 4px; }

/* ── Breadcrumb ─────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 6px; margin-bottom: 20px; }
.breadcrumb a { font-size: 13px; color: var(--text3); }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span { color: var(--text3); font-size: 13px; }
.breadcrumb .sep { color: var(--text3); }

/* ── Auth pages ─────────────────────────────── */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 600px 400px at 20% 40%, rgba(0,212,255,.05) 0%, transparent 70%),
    radial-gradient(ellipse 500px 350px at 80% 60%, rgba(0,255,136,.04) 0%, transparent 70%);
}
.auth-box {
  width: 100%; max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 32px 64px rgba(0,0,0,.5);
}
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-title { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.auth-sub   { font-size: 14px; color: var(--text2); margin-bottom: 28px; }

/* ── Hero (landing) ─────────────────────────── */
.hero {
  padding: 100px 0 80px;
  background-image:
    radial-gradient(ellipse 800px 600px at 10% 50%, rgba(0,212,255,.06) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 90% 30%, rgba(0,255,136,.05) 0%, transparent 70%);
  text-align: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px; border-radius: 99px;
  background: rgba(0,212,255,.08); border: 1px solid rgba(0,212,255,.2);
  font-size: 12px; font-weight: 600; color: var(--cyan);
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 20px; }
.hero p.lead { font-size: 18px; color: var(--text2); max-width: 560px; margin: 0 auto 36px; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Feature grid ───────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; padding: 60px 0;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color .2s;
}
.feature-card:hover { border-color: rgba(0,212,255,.2); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,212,255,.15), rgba(0,255,136,.1));
  border: 1px solid rgba(0,212,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
}
.feature-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-desc  { font-size: 14px; color: var(--text2); }

/* ── Upload area ────────────────────────────── */
.upload-drop {
  border: 2px dashed var(--border2);
  border-radius: var(--radius-lg);
  padding: 48px 24px; text-align: center;
  cursor: pointer; transition: all .2s;
  background: var(--surface);
}
.upload-drop:hover, .upload-drop.drag-over {
  border-color: var(--cyan);
  background: rgba(0,212,255,.04);
  box-shadow: var(--glow-cyan);
}
.upload-icon { font-size: 40px; color: var(--text3); margin-bottom: 12px; }
.upload-text { color: var(--text2); font-size: 15px; }
.upload-hint { color: var(--text3); font-size: 13px; margin-top: 6px; }

/* ── Comissão badge ─────────────────────────── */
.commission-rate {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 32px;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Footer ─────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0; margin-top: 60px;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--text3); }
.footer-links a:hover { color: var(--text2); }
.footer-copy { font-size: 13px; color: var(--text3); }

/* ── Responsivo ─────────────────────────────── */
@media (max-width: 768px) {
  .panel-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; height: auto; border-right: none; border-bottom: 1px solid var(--border); padding: 12px 0; }
  .sidebar-link { display: inline-flex; }
  .panel-content { padding: 20px 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .header-nav a:not(.btn) { display: none; }
}

/* ══════════════════════════════════════════════
   Manual / Páginas de documentação
   ══════════════════════════════════════════════ */

/* ── Store buttons ───────────────────────────── */
.store-btn-wrap { position: relative; display: inline-flex; }
.store-btn { cursor: not-allowed; opacity: .85; }
.store-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%; transform: translateX(-50%);
  background: var(--surface2);
  border: 1px solid var(--border2);
  color: var(--text);
  font-size: 12px; font-weight: 500;
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.store-tooltip::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--border2);
}
.store-btn-wrap:hover .store-tooltip { opacity: 1; }

/* ── Doc hero ──────────────────────────────── */
.doc-hero { padding: 60px 0 40px; border-bottom: 1px solid var(--border); }
.doc-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.doc-eyebrow::before { content: ''; display: inline-block; width: 20px; height: 1px; background: var(--cyan); }
.doc-hero h1 { font-size: clamp(28px, 4vw, 48px); letter-spacing: -1.5px; margin-bottom: 10px; }
.doc-meta { font-size: 13px; color: var(--text3); }

/* ── Manual layout (TOC + conteúdo) ─────────── */
.manual-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 5vw 80px;
}
.doc-toc { position: sticky; top: 88px; align-self: start; padding-right: 32px; padding-top: 24px; }
.doc-toc-title { font-size: 10px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--text3); margin-bottom: 12px; }
.doc-toc-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.doc-toc-list a { display: block; padding: 7px 12px; font-size: 13px; color: var(--text3); text-decoration: none; border-radius: 8px; transition: all .2s; border-left: 2px solid transparent; }
.doc-toc-list a:hover { color: var(--text); background: var(--surface2); border-left-color: var(--cyan); }

/* ── Seções de conteúdo ─────────────────────── */
.doc-section { margin-bottom: 52px; scroll-margin-top: 88px; padding-top: 24px; }
.doc-section-num { font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--cyan); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.doc-section-num::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.doc-section h2 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 22px; letter-spacing: -.5px; margin-bottom: 16px; color: var(--text); }
.doc-section h3 { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 15px; color: var(--text); margin: 24px 0 10px; padding-left: 12px; border-left: 3px solid var(--cyan); }
.doc-section p { color: var(--text2); margin-bottom: 12px; }
.doc-section p strong { color: var(--text); }
.doc-section ul, .doc-section ol { padding-left: 20px; color: var(--text2); margin-bottom: 12px; display: flex; flex-direction: column; gap: 6px; }
.doc-section li strong { color: var(--text); }
.doc-section a { color: var(--cyan); }
.doc-section a:hover { color: var(--green); }

/* ── Steps ──────────────────────────────────── */
.steps { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; margin: 12px 0; }
.steps li { display: flex; align-items: flex-start; gap: 14px; color: var(--text2); }
.step-num { width: 24px; height: 24px; border-radius: 50%; background: var(--surface2); border: 1px solid var(--border); color: var(--cyan); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }

/* ── Callouts ────────────────────────────────── */
.tip, .doc-note, .doc-warning { padding: 14px 18px; border-radius: 10px; margin: 14px 0; font-size: 14px; display: flex; gap: 12px; align-items: flex-start; }
.tip { background: rgba(0,255,136,.06); border: 1px solid rgba(0,255,136,.15); color: #80ffbb; }
.doc-note { background: rgba(0,212,255,.06); border: 1px solid rgba(0,212,255,.15); color: #80d8f5; }
.doc-warning { background: rgba(255,79,110,.06); border: 1px solid rgba(255,79,110,.15); color: #f580a0; }

/* ── Example box ─────────────────────────────── */
.example-box { background: var(--surface2); border: 1px solid var(--border); border-radius: 12px; padding: 20px 24px; margin: 14px 0; position: relative; }
.example-box::before { content: 'Exemplo'; position: absolute; top: -10px; left: 16px; background: var(--grad); color: #08090d; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 2px 10px; border-radius: 99px; }
.example-box p { color: var(--text2); margin-bottom: 0; font-size: 14px; }

/* ── Mockup ──────────────────────────────────── */
.mockup-wrap { display: flex; justify-content: center; margin: 20px 0; }
.mockup { background: var(--surface2); border: 1px solid var(--border); border-radius: 16px; padding: 20px 24px; font-family: 'Courier New', monospace; font-size: 12px; color: var(--text3); max-width: 340px; width: 100%; line-height: 1.7; }

/* ── Status badges demo ──────────────────────── */
.badge-demo { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0; }
.status-badge { padding: 5px 14px; border-radius: 99px; font-size: 12px; font-weight: 700; letter-spacing: .05em; }
.sb-live { background: var(--grad); color: #08090d; }
.sb-rec { background: var(--danger); color: #fff; }
.sb-saving { background: #ff8c00; color: #fff; }
.sb-eco { background: var(--success); color: #fff; }
.sb-init { background: rgba(255,255,255,.15); color: var(--text); border: 1px solid var(--border); }

/* ── Comparison badges ───────────────────────── */
.badge-yes  { display: inline-block; padding: 2px 8px; border-radius: 99px; background: rgba(0,255,136,.1); color: var(--green); font-size: 12px; font-weight: 500; }
.badge-no   { display: inline-block; padding: 2px 8px; border-radius: 99px; background: rgba(255,255,255,.06); color: var(--text3); font-size: 12px; font-weight: 500; }
.badge-pro  { display: inline-block; padding: 2px 8px; border-radius: 99px; background: rgba(0,212,255,.1); color: var(--cyan); font-size: 11px; font-weight: 600; }
.badge-free { display: inline-block; padding: 2px 8px; border-radius: 99px; background: rgba(0,255,136,.1); color: var(--green); font-size: 11px; font-weight: 600; }

/* ── Pro card ────────────────────────────────── */
.pro-card { background: linear-gradient(135deg, rgba(0,212,255,.07), rgba(0,255,136,.04)); border: 1px solid rgba(0,212,255,.2); border-radius: var(--radius-lg); padding: 24px; margin: 20px 0; }
.pro-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.pro-tag { background: var(--grad); color: #08090d; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 13px; padding: 4px 12px; border-radius: 6px; }
.pro-card-header h3 { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; margin: 0; padding: 0; border: none; color: var(--text); }
.pro-features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pro-feat { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text2); }
.pro-feat::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 12px; }

/* ── FAQ ─────────────────────────────────────── */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; background: var(--surface); }
.faq-q { padding: 16px 20px; font-weight: 500; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: background .2s; font-size: 14px; user-select: none; }
.faq-q:hover { background: var(--surface2); }
.faq-q .arrow { font-size: 12px; color: var(--cyan); transition: transform .3s; flex-shrink: 0; }
.faq-a { display: none; padding: 14px 20px 16px; color: var(--text2); font-size: 14px; border-top: 1px solid var(--border); }
.faq-item.open .faq-a { display: block; }
.faq-item.open .arrow { transform: rotate(180deg); }

/* ── Summary cards (privacidade) ─────────────── */
.summary-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; padding: 32px 0 0; }
.summary-card { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; }
.summary-card .sc-icon { font-size: 22px; margin-bottom: 8px; }
.summary-card .sc-title { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.summary-card .sc-desc { font-size: 12px; color: var(--text3); line-height: 1.5; }

/* ── Highlight box ───────────────────────────── */
.highlight-box { background: var(--surface2); border: 1px solid rgba(0,212,255,.15); border-radius: 10px; padding: 18px 20px; margin: 24px 0; }
.highlight-box p { margin-bottom: 0; color: var(--text2); }

/* ── Data table ──────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.data-table th { text-align: left; padding: 10px 14px; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text3); border-bottom: 1px solid var(--border); background: var(--surface2); }
.data-table td { padding: 10px 14px; color: var(--text2); border-bottom: 1px solid var(--border); vertical-align: top; }
.data-table tr:last-child td { border-bottom: none; }
.data-table td strong { color: var(--text); }

/* ── Responsivo (doc pages) ──────────────────── */
@media (max-width: 768px) {
  .manual-layout { grid-template-columns: 1fr; }
  .doc-toc { position: static; padding-right: 0; margin-bottom: 28px; padding: 16px; background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border); }
  .doc-toc-list { flex-direction: row; flex-wrap: wrap; gap: 4px; }
  .doc-toc-list a { padding: 5px 10px; font-size: 12px; border-left: none; border: 1px solid var(--border); }
  .pro-features { grid-template-columns: 1fr; }
}
