/* ═══════════════════════════════════════════
   KRYON BOTS — Identidade Visual
   Azul-marinho profundo + Cyan neon
   ═══════════════════════════════════════════ */

:root {
  --bg: #070d18;
  --bg-2: #0a1322;
  --panel: #0f1b30;
  --panel-2: #14233d;
  --line: #1d3454;
  --cyan: #2ab6f0;
  --cyan-bright: #4fd4ff;
  --cyan-deep: #0e7fc4;
  --blue-steel: #2e3d54;
  --text: #e8f1fa;
  --text-dim: #94a9c3;
  --text-faint: #5f7592;
  --success: #3ddc84;
  --whats: #25d366;
  --discord: #5865f2;
  --radius: 14px;
  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --glow: 0 0 24px rgba(42, 182, 240, .35);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container { width: min(1200px, 92%); margin: 0 auto; }
.container-narrow { width: min(860px, 92%); }

::selection { background: var(--cyan); color: #04131f; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue-steel); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan-deep); }

/* ══════════ BOTÕES ══════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  border: none;
  transition: all .25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-deep) 100%);
  color: #04131f;
  box-shadow: 0 4px 18px rgba(42, 182, 240, .35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(42, 182, 240, .55);
  filter: brightness(1.1);
}

.btn-ghost { background: transparent; color: var(--text-dim); border: 1px solid var(--line); }
.btn-ghost:hover { color: var(--cyan-bright); border-color: var(--cyan); background: rgba(42, 182, 240, .06); }

.btn-outline { background: transparent; color: var(--cyan-bright); border: 1.5px solid var(--cyan-deep); }
.btn-outline:hover { background: rgba(42, 182, 240, .1); border-color: var(--cyan-bright); transform: translateY(-2px); }

.btn-lg { padding: 15px 30px; font-size: 16px; border-radius: 12px; }
.btn-block { flex: 1; }

.btn-whats { background: var(--whats); color: #06240f; box-shadow: 0 4px 18px rgba(37, 211, 102, .35); }
.btn-whats:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37, 211, 102, .5); }

.btn-discord { background: var(--discord); color: #fff; box-shadow: 0 4px 18px rgba(88, 101, 242, .35); }
.btn-discord:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(88, 101, 242, .5); }

/* ══════════ PROMO BAR ══════════ */
.promo-bar {
  background: linear-gradient(90deg, #0a3b5c 0%, var(--cyan-deep) 45%, #0a3b5c 100%);
  background-size: 200% 100%;
  animation: promo-shift 6s linear infinite;
  padding: 9px 0;
  position: relative;
  z-index: 60;
}
@keyframes promo-shift { 0% { background-position: 0 0; } 100% { background-position: 200% 0; } }

.promo-inner {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-size: 13.5px; font-weight: 500; flex-wrap: wrap; padding: 0 14px;
}
.promo-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 8px var(--success); animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: .5; transform: scale(.8);} }

.promo-coupon {
  background: rgba(255,255,255,.15); border: 1px dashed rgba(255,255,255,.5);
  padding: 1px 10px; border-radius: 6px; font-weight: 800; letter-spacing: 1px; cursor: pointer;
  transition: background .2s;
}
.promo-coupon:hover { background: rgba(255,255,255,.3); }

.promo-timer {
  background: rgba(0,0,0,.35); padding: 3px 12px; border-radius: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: 2px;
  color: var(--cyan-bright);
}

/* ══════════ HEADER ══════════ */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 13, 24, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.header.scrolled { border-bottom-color: var(--line); background: rgba(7, 13, 24, .95); }

.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 52px; width: auto; filter: drop-shadow(0 0 10px rgba(42,182,240,.45)); }
.brand-name {
  font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: 2px;
}
.brand-name span { color: var(--cyan); }

.nav { display: flex; gap: 6px; }
.nav-link {
  padding: 8px 15px; border-radius: 8px; font-size: 14.5px; font-weight: 500;
  color: var(--text-dim); transition: all .2s;
}
.nav-link:hover, .nav-link.active { color: var(--cyan-bright); background: rgba(42,182,240,.08); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 8px;
}
.menu-toggle span { width: 24px; height: 2.5px; background: var(--cyan); border-radius: 2px; transition: all .3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ══════════ HERO ══════════ */
.hero {
  position: relative;
  padding: 90px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(42,182,240,.09), transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 100%, rgba(14,127,196,.10), transparent 60%),
    var(--bg);
}

#particles { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }

.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none; opacity: .55;
}
.hero-glow-1 { width: 480px; height: 480px; background: rgba(42,182,240,.16); top: -180px; right: 5%; }
.hero-glow-2 { width: 380px; height: 380px; background: rgba(14,127,196,.14); bottom: -160px; left: -5%; }

.hero-inner {
  position: relative; display: grid; grid-template-columns: 1.15fr .85fr;
  align-items: center; gap: 40px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(42,182,240,.08); border: 1px solid rgba(42,182,240,.25);
  padding: 7px 16px; border-radius: 100px; font-size: 13px; font-weight: 500;
  color: var(--cyan-bright); margin-bottom: 26px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 10px var(--success); animation: pulse 1.6s infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.2vw, 62px);
  font-weight: 700; line-height: 1.08; letter-spacing: .5px;
  margin-bottom: 22px; text-transform: uppercase;
}

.grad-text {
  background: linear-gradient(120deg, var(--cyan-bright) 0%, var(--cyan) 50%, var(--cyan-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  text-shadow: none;
}

.hero-sub {
  font-size: 17px; color: var(--text-dim); max-width: 540px; margin-bottom: 34px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }

.hero-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.tag {
  background: var(--panel); border: 1px solid var(--line);
  padding: 7px 15px; border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--text-dim);
}

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-mascot {
  width: min(400px, 85%); position: relative; z-index: 2;
  filter: drop-shadow(0 0 45px rgba(42,182,240,.45));
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-18px);} }

.hero-ring {
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  border: 1px solid rgba(42,182,240,.2);
  background: radial-gradient(circle, rgba(42,182,240,.07) 0%, transparent 65%);
  animation: ring-spin 14s linear infinite;
}
.hero-ring::before {
  content: ''; position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--cyan-bright); box-shadow: 0 0 14px var(--cyan-bright);
  top: 50%; left: -5px;
}
@keyframes ring-spin { to { transform: rotate(360deg); } }

/* ══════════ STATS ══════════ */
.stats {
  background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 24px 0; position: relative; z-index: 2;
}
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.stat {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 14.5px; color: var(--text-dim);
}
.stat svg { color: var(--cyan); flex-shrink: 0; }
.stat strong { color: var(--text); }
.stat [data-count] { color: var(--cyan-bright); font-weight: 700; }

/* ══════════ SEÇÕES ══════════ */
.section { padding: 96px 0; position: relative; }
.section-alt {
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(42,182,240,.05), transparent 65%),
    var(--bg-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}

.section-head { text-align: center; margin-bottom: 60px; }
.section-title {
  font-family: var(--font-display); font-size: clamp(30px, 4vw, 44px);
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}
.section-line {
  width: 80px; height: 3px; margin: 18px auto;
  background: linear-gradient(90deg, var(--cyan-deep), var(--cyan-bright));
  border-radius: 3px; box-shadow: var(--glow);
}
.section-sub { color: var(--text-dim); max-width: 640px; margin: 0 auto; font-size: 16px; }

/* ══════════ CARDS DE BOTS ══════════ */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 26px;
}

.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; position: relative;
  transition: transform .3s ease, border-color .3s, box-shadow .3s;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(42,182,240,.55);
  box-shadow: 0 18px 48px rgba(0,0,0,.5), 0 0 32px rgba(42,182,240,.12);
}

.card-featured { border-color: rgba(42,182,240,.5); box-shadow: 0 0 32px rgba(42,182,240,.12); }
.featured-flag {
  position: absolute; top: 14px; left: -1px; z-index: 3;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-deep));
  color: #04131f; font-size: 11.5px; font-weight: 800; letter-spacing: .5px;
  padding: 5px 14px; border-radius: 0 8px 8px 0;
}

.card-media { position: relative; }

/* Capa de jogo (estilo catálogo) */
.card-cover { height: 230px; overflow: hidden; position: relative; }
.card-cover img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform .5s ease;
}
.card:hover .card-cover img { transform: scale(1.06); }
.card-cover::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, var(--panel) 100%);
  pointer-events: none;
}
.cards-grid-games { grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); margin: 0 auto; }
.card-game .card-art { height: 230px; }
.card-art {
  height: 165px; display: flex; align-items: center; justify-content: center;
  color: var(--cyan); position: relative; overflow: hidden;
}
.card-art::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, var(--panel) 100%),
    repeating-linear-gradient(90deg, rgba(42,182,240,.06) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(42,182,240,.06) 0 1px, transparent 1px 34px);
}
.card-art svg { position: relative; z-index: 1; filter: drop-shadow(0 0 16px rgba(42,182,240,.55)); }

.art-cave   { background: radial-gradient(circle at 50% 30%, rgba(42,182,240,.18), transparent 70%), var(--panel-2); }
.art-coleta { background: radial-gradient(circle at 50% 30%, rgba(61,220,132,.14), transparent 70%), var(--panel-2); }
.art-coleta svg { color: #59e0a0; filter: drop-shadow(0 0 16px rgba(61,220,132,.5)); }
.art-full   { background: radial-gradient(circle at 50% 30%, rgba(79,212,255,.22), transparent 70%), var(--panel-2); }
.art-full svg { color: var(--cyan-bright); }
.art-custom { background: radial-gradient(circle at 50% 30%, rgba(160,120,255,.16), transparent 70%), var(--panel-2); }
.art-custom svg { color: #b28aff; filter: drop-shadow(0 0 16px rgba(160,120,255,.5)); }

.card-status {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(4, 19, 31, .8); border: 1px solid rgba(61,220,132,.4);
  color: var(--success); font-size: 10.5px; font-weight: 700; letter-spacing: 1px;
  padding: 5px 12px; border-radius: 100px; backdrop-filter: blur(6px);
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 8px var(--success); animation: pulse 1.6s infinite;
}

.card-body { padding: 22px 22px 24px; }
.card-title {
  font-family: var(--font-display); font-size: 21px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase; margin-bottom: 10px;
}
.card-desc { font-size: 14px; color: var(--text-dim); margin-bottom: 16px; }

.card-feats { margin-bottom: 20px; display: grid; gap: 7px; }
.card-feats li {
  font-size: 13px; color: var(--text-dim); padding-left: 22px; position: relative;
}
.card-feats li::before {
  content: '✓'; position: absolute; left: 0; color: var(--cyan); font-weight: 800;
}

.card-actions { display: flex; gap: 10px; align-items: stretch; }
.chip {
  display: inline-flex; align-items: center; padding: 0 14px; border-radius: 10px;
  font-size: 12.5px; font-weight: 700; white-space: nowrap;
}
.chip-premium { border: 1px solid rgba(42,182,240,.45); color: var(--cyan-bright); background: rgba(42,182,240,.08); }
.chip-custom  { border: 1px solid rgba(178,138,255,.45); color: #c8a7ff; background: rgba(160,120,255,.08); }

/* ══════════ RECURSOS ══════════ */
.feats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px;
}
.feat {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .3s, border-color .3s, box-shadow .3s;
}
.feat:hover {
  transform: translateY(-6px); border-color: rgba(42,182,240,.45);
  box-shadow: 0 14px 38px rgba(0,0,0,.45), 0 0 24px rgba(42,182,240,.1);
}
.feat-icon {
  width: 54px; height: 54px; border-radius: 13px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(42,182,240,.18), rgba(14,127,196,.1));
  border: 1px solid rgba(42,182,240,.3); color: var(--cyan-bright);
  box-shadow: inset 0 0 18px rgba(42,182,240,.12);
}
.feat h3 {
  font-family: var(--font-display); font-size: 19px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px;
}
.feat p { font-size: 14px; color: var(--text-dim); }

/* ══════════ COMO FUNCIONA ══════════ */
.steps {
  display: flex; align-items: stretch; justify-content: center; gap: 14px; flex-wrap: wrap;
}
.step {
  flex: 1; min-width: 200px; max-width: 250px;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 22px; text-align: center; transition: transform .3s, border-color .3s;
}
.step:hover { transform: translateY(-6px); border-color: rgba(42,182,240,.45); }
.step-num {
  font-family: var(--font-display); font-size: 40px; font-weight: 700;
  background: linear-gradient(180deg, var(--cyan-bright), var(--cyan-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.step h3 { font-family: var(--font-display); font-size: 18px; text-transform: uppercase; margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--text-dim); }
.step-arrow { align-self: center; color: var(--cyan); font-size: 22px; font-weight: 700; }

/* ══════════ PLANOS ══════════ */
.plans {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px; max-width: 1020px; margin: 0 auto; align-items: stretch;
}
.plan {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; text-align: center; position: relative;
  display: flex; flex-direction: column;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.plan:hover { transform: translateY(-6px); border-color: rgba(42,182,240,.45); }

/* Planos com imagem (KPDO) */
.plans-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); max-width: 860px; }
.plans-3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); max-width: 1100px; }
.plans-2 .plan, .plans-3 .plan { padding: 0; overflow: visible; }
.plans-block { margin-top: 100px; scroll-margin-top: 90px; }
.plan-img {
  overflow: hidden; position: relative;
  border-radius: var(--radius) var(--radius) 0 0;
}
.plan-img img {
  width: 100%; height: auto; display: block;
  transition: transform .5s ease;
}
.plan:hover .plan-img img { transform: scale(1.05); }
.plan-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, var(--panel) 100%);
  pointer-events: none;
}
.plan-featured .plan-img::after {
  background: linear-gradient(180deg, rgba(42,182,240,.06) 0%, transparent 40%, var(--panel) 100%);
}
.plan-body { padding: 26px 28px 32px; display: flex; flex-direction: column; flex: 1; }

.plan-featured {
  border-color: var(--cyan); box-shadow: 0 0 40px rgba(42,182,240,.18);
  background: linear-gradient(180deg, rgba(42,182,240,.07) 0%, var(--panel) 45%);
}
.plan-featured:hover { box-shadow: 0 0 55px rgba(42,182,240,.28); }
.plan-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%); z-index: 3;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-deep)); color: #04131f;
  font-size: 11.5px; font-weight: 800; letter-spacing: 1.5px;
  padding: 5px 18px; border-radius: 100px; box-shadow: var(--glow);
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-dim); margin-bottom: 14px;
}
.plan-offer {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 6px; flex-wrap: wrap;
}
.plan-old { font-size: 14.5px; color: var(--text-faint); }
.plan-old s { color: #e05c6c; text-decoration-thickness: 2px; font-weight: 600; }
.plan-discount {
  background: rgba(224, 92, 108, .12); border: 1px solid rgba(224, 92, 108, .45);
  color: #ff7f8e; font-size: 11.5px; font-weight: 800; letter-spacing: .5px;
  padding: 3px 10px; border-radius: 100px;
}
.plan-discount-hot {
  background: linear-gradient(135deg, rgba(255, 122, 60, .18), rgba(224, 92, 108, .18));
  border-color: rgba(255, 140, 70, .55); color: #ffa66b;
  animation: hot-pulse 1.8s ease-in-out infinite;
}
@keyframes hot-pulse {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 140, 70, 0); }
  50% { box-shadow: 0 0 16px rgba(255, 140, 70, .45); }
}

.plan-price {
  font-family: var(--font-display); font-size: 56px; font-weight: 700; line-height: 1;
  color: var(--text);
}
.plan-price .cur { font-size: 22px; vertical-align: super; color: var(--cyan); margin-right: 3px; }
.plan-price .cents { font-size: 24px; color: var(--text-dim); }
.plan-cycle { font-size: 13px; color: var(--text-faint); margin: 8px 0 24px; }

.plan-feats { text-align: left; display: grid; gap: 10px; margin-bottom: 28px; flex: 1; }
.plan-feats li { font-size: 14px; color: var(--text-dim); padding-left: 24px; position: relative; }
.plan-feats li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 800; }
.plan-feats li.off { opacity: .38; }
.plan-feats li.off::before { content: '✕'; color: var(--text-faint); }
.plan-feats strong { color: var(--cyan-bright); }

.plans-note { text-align: center; margin-top: 34px; color: var(--text-dim); font-size: 14.5px; }
.plans-note strong { color: var(--cyan-bright); }

/* ══════════ FAQ ══════════ */
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden; transition: border-color .3s;
}
.faq-item[open] { border-color: rgba(42,182,240,.45); }
.faq-item summary {
  padding: 19px 52px 19px 22px; cursor: pointer; font-weight: 600; font-size: 15.5px;
  list-style: none; position: relative; user-select: none; transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 24px; font-weight: 400; color: var(--cyan); transition: transform .3s;
}
.faq-item[open] summary { color: var(--cyan-bright); }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding: 0 22px 20px; font-size: 14.5px; color: var(--text-dim); }

/* ══════════ CTA FINAL ══════════ */
.cta-final {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 55% 65% at 50% 100%, rgba(42,182,240,.13), transparent 70%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  text-align: center;
}
.cta-logo {
  width: 150px; margin: 0 auto 28px;
  filter: drop-shadow(0 0 30px rgba(42,182,240,.5));
  animation: float 5s ease-in-out infinite;
}
.cta-inner h2 {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px;
}
.cta-inner > p { color: var(--text-dim); max-width: 560px; margin: 0 auto 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════ FOOTER ══════════ */
.footer { background: #050a12; border-top: 1px solid var(--line); }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding: 60px 0 44px;
}
.footer-brand img { width: 130px; margin-bottom: 16px; filter: drop-shadow(0 0 14px rgba(42,182,240,.35)); }
.footer-brand p { font-size: 13.5px; color: var(--text-faint); max-width: 280px; }

.footer-col h4 {
  font-family: var(--font-display); font-size: 15px; text-transform: uppercase;
  letter-spacing: 2px; color: var(--cyan); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 14px; color: var(--text-dim); padding: 5px 0; transition: color .2s, transform .2s;
}
.footer-col a:hover { color: var(--cyan-bright); transform: translateX(4px); }

.footer-bottom {
  border-top: 1px solid var(--line); padding: 20px 0; text-align: center;
  font-size: 13px; color: var(--text-faint);
}
.footer-bottom strong { color: var(--text-dim); }

/* ══════════ BOTÕES FLUTUANTES ══════════ */
.float-buttons {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: flex; flex-direction: column; gap: 14px;
}
.float-btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: transform .25s, box-shadow .25s;
}
.float-btn:hover { transform: scale(1.12) translateY(-2px); }
.float-whats { background: var(--whats); box-shadow: 0 6px 22px rgba(37,211,102,.45); }
.float-discord { background: var(--discord); box-shadow: 0 6px 22px rgba(88,101,242,.45); }

/* ══════════ TOAST ══════════ */
.toast {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--panel-2); border: 1px solid var(--cyan); color: var(--text);
  padding: 13px 26px; border-radius: 12px; font-weight: 600; font-size: 14.5px;
  box-shadow: 0 10px 34px rgba(0,0,0,.55), var(--glow);
  opacity: 0; transition: all .4s cubic-bezier(.2, .9, .3, 1.2); z-index: 100; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ══════════ REVEAL ON SCROLL ══════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════ RESPONSIVO ══════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-visual { order: -1; }
  .hero-mascot { width: min(280px, 70%); }
  .hero-ring { width: 300px; height: 300px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .step-arrow { display: none; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed; top: 0; right: -280px; width: 260px; height: 100vh;
    background: var(--bg-2); border-left: 1px solid var(--line);
    flex-direction: column; padding: 100px 24px 24px; gap: 8px;
    transition: right .35s ease; z-index: 55;
    box-shadow: -20px 0 60px rgba(0,0,0,.5);
  }
  .nav.open { right: 0; }
  .nav-link { font-size: 16px; padding: 13px 16px; }
  .menu-toggle { display: flex; z-index: 60; }
  .header-actions { gap: 7px; }
  .header-actions .btn { padding: 8px 13px; font-size: 13px; }
  .header-actions .btn svg { display: none; }
  .header-inner { height: 66px; }
  .brand-logo { height: 44px; }
  .brand-name { font-size: 17px; }
  .section { padding: 70px 0; }
  .hero { padding: 60px 0 80px; }
  .promo-timer { display: none; }
}

@media (max-width: 520px) {
  .stats-inner { grid-template-columns: 1fr; gap: 12px; }
  .stat { justify-content: flex-start; }
  .cta-buttons .btn { width: 100%; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
}

/* ═══════════════════════════════════════════
   AUTENTICACAO — layout split premium
   ═══════════════════════════════════════════ */
.auth-page {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 700px at 15% 10%, rgba(14,127,196,.18), transparent 60%),
    radial-gradient(900px 600px at 90% 90%, rgba(42,182,240,.12), transparent 55%),
    var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 22px;
}
#authParticles { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.auth-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(42,182,240,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,182,240,.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 75%);
}
.auth-orb { position: absolute; border-radius: 50%; filter: blur(70px); z-index: 0; opacity: .5; }
.auth-orb-1 { width: 420px; height: 420px; background: rgba(14,127,196,.5); top: -120px; left: -80px; animation: orbFloat 14s ease-in-out infinite; }
.auth-orb-2 { width: 360px; height: 360px; background: rgba(79,212,255,.35); bottom: -120px; right: -60px; animation: orbFloat 16s ease-in-out infinite reverse; }
@keyframes orbFloat { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px,30px); } }

.auth-split {
  position: relative; z-index: 2;
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: linear-gradient(180deg, rgba(15,27,48,.82), rgba(10,19,34,.9));
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.6), 0 0 0 1px rgba(42,182,240,.05), var(--glow);
  backdrop-filter: blur(6px);
}

/* lado esquerdo — marca */
.auth-brand {
  position: relative;
  padding: 46px 42px;
  display: flex; flex-direction: column; justify-content: center;
  background:
    radial-gradient(600px 400px at 20% 0%, rgba(42,182,240,.14), transparent 60%),
    linear-gradient(160deg, rgba(20,35,61,.6), rgba(7,13,24,.4));
  border-right: 1px solid var(--line);
}
.auth-brand-logo { width: 130px; margin-bottom: 26px; filter: drop-shadow(0 0 20px rgba(42,182,240,.55)); }
.auth-brand-title {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 700; line-height: 1.15; letter-spacing: .5px;
  margin-bottom: 12px;
}
.auth-brand-title span { color: var(--cyan-bright); }
.auth-brand-sub { color: var(--text-dim); font-size: 14.5px; line-height: 1.6; margin-bottom: 28px; max-width: 340px; }
.auth-benefits { display: flex; flex-direction: column; gap: 14px; }
.auth-benefit { display: flex; align-items: center; gap: 12px; font-size: 14.5px; font-weight: 500; color: var(--text); }
.auth-benefit svg {
  flex-shrink: 0; width: 22px; height: 22px; padding: 4px;
  color: var(--cyan-bright);
  background: rgba(42,182,240,.12);
  border: 1px solid rgba(42,182,240,.3);
  border-radius: 7px;
}
.auth-trust {
  margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 10px; color: var(--text-dim); font-size: 13px;
}
.auth-stars { color: #ffcb45; letter-spacing: 2px; }

/* lado direito — formulario */
.auth-panel { padding: 46px 42px; display: flex; flex-direction: column; justify-content: center; }
.auth-title { font-family: var(--font-display); font-size: 25px; font-weight: 700; letter-spacing: .5px; }
.auth-title span { color: var(--cyan-bright); }
.auth-sub { color: var(--text-dim); font-size: 14px; margin: 6px 0 26px; }

.auth-panel .auth-logo { width: 54px; margin: 0 auto 14px; filter: drop-shadow(0 0 14px rgba(42,182,240,.5)); display: none; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dim); margin-bottom: 7px; letter-spacing: .3px; }
.field input {
  width: 100%; background: var(--bg-2); border: 1.5px solid var(--line);
  border-radius: 10px; padding: 13px 15px; color: var(--text);
  font-family: var(--font-body); font-size: 15px; transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder { color: var(--text-faint); }
.field input:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(42,182,240,.18); }
.auth-panel .btn-primary { width: 100%; margin-top: 6px; }
.auth-alt { text-align: center; font-size: 14px; color: var(--text-dim); margin-top: 20px; }
.auth-alt a { color: var(--cyan-bright); font-weight: 600; }
.auth-alt a:hover { text-decoration: underline; }
.auth-back { text-align: center; margin-top: 16px; }
.auth-back a { color: var(--text-faint); font-size: 13px; }
.auth-back a:hover { color: var(--cyan-bright); }

.auth-msg { display: none; font-size: 13.5px; padding: 11px 14px; border-radius: 9px; margin-bottom: 18px; line-height: 1.4; }
.auth-msg.show { display: block; }
.auth-msg.error { background: rgba(255,86,86,.1); border: 1px solid rgba(255,86,86,.35); color: #ff9d9d; }
.auth-msg.success { background: rgba(61,220,132,.1); border: 1px solid rgba(61,220,132,.35); color: #8ff0bd; }

/* area logada */
.account-box { text-align: center; width: 100%; }
.account-avatar {
  width: 78px; height: 78px; margin: 0 auto 16px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-deep));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 32px; font-weight: 700; color: #04131f;
  box-shadow: 0 0 26px rgba(42,182,240,.5);
}
.account-email { font-weight: 600; font-size: 16px; margin-bottom: 4px; word-break: break-all; }
.account-note { color: var(--text-dim); font-size: 13.5px; margin: 14px 0 24px; line-height: 1.5; }

/* responsivo */
@media (max-width: 860px) {
  .auth-split { grid-template-columns: 1fr; width: min(440px, 100%); }
  .auth-brand { display: none; }
  .auth-panel { padding: 40px 30px; }
  .auth-panel .auth-logo { display: block; }
  .auth-title, .auth-sub { text-align: center; }
}

/* mostrar/ocultar senha + link no campo */
.pw-wrap { position: relative; }
.pw-wrap input { padding-right: 44px; }
.pw-toggle {
  position: absolute; top: 50%; right: 10px; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; color: var(--text-faint);
  padding: 6px; display: flex; align-items: center;
}
.pw-toggle:hover { color: var(--cyan-bright); }
.pw-toggle svg { width: 18px; height: 18px; }
.pw-toggle .eye-off { display: none; }
.pw-toggle.on .eye-on { display: none; }
.pw-toggle.on .eye-off { display: inline; }
.field-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 7px; }
.field-row label { margin-bottom: 0; }
.field-link { font-size: 12.5px; color: var(--text-faint); }
.field-link:hover { color: var(--cyan-bright); }

/* ═══════════════════════════════════════════
   DASHBOARD DO PLAYER (conta.html)
   ═══════════════════════════════════════════ */
.dash { display: grid; grid-template-columns: 258px 1fr; min-height: 100vh; }

.dash-side {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border-right: 1px solid var(--line);
  padding: 22px 16px; display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh;
}
.dash-logo { width: 120px; margin: 6px auto 26px; }
.dash-nav { display: flex; flex-direction: column; gap: 6px; }
.dash-nav button {
  display: flex; align-items: center; gap: 12px; width: 100%;
  padding: 12px 14px; border: none; background: transparent;
  color: var(--text-dim); font-family: var(--font-body); font-size: 14.5px;
  font-weight: 600; border-radius: 10px; cursor: pointer; transition: all .2s; text-align: left;
}
.dash-nav button svg { width: 19px; height: 19px; flex-shrink: 0; }
.dash-nav button:hover { background: rgba(42,182,240,.08); color: var(--cyan-bright); }
.dash-nav button.active {
  background: linear-gradient(135deg, rgba(42,182,240,.18), rgba(14,127,196,.08));
  color: var(--text); box-shadow: inset 0 0 0 1px rgba(42,182,240,.3);
}
.dash-side-foot { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.dash-user { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.dash-user .avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-deep));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: #04131f;
}
.dash-user .u-mail { font-size: 12px; color: var(--text-dim); word-break: break-all; line-height: 1.3; }
.dash-logout {
  width: 100%; padding: 10px; border: 1px solid var(--line); background: transparent;
  color: var(--text-dim); border-radius: 9px; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 13.5px; transition: all .2s;
}
.dash-logout:hover { border-color: #ff6b6b; color: #ff9d9d; background: rgba(255,86,86,.06); }

.dash-main { padding: 32px 38px; background: var(--bg); }
.dash-top { margin-bottom: 26px; }
.dash-top h1 { font-family: var(--font-display); font-size: 26px; letter-spacing: .5px; }
.dash-top h1 span { color: var(--cyan-bright); }
.dash-top p { color: var(--text-dim); font-size: 14px; margin-top: 4px; }
.dash-tab { display: none; }
.dash-tab.active { display: block; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px,1fr)); gap: 16px; margin-bottom: 24px; }
.stat-card { background: linear-gradient(180deg, var(--panel), var(--panel-2)); border: 1px solid var(--line); border-radius: 14px; padding: 20px; }
.stat-card .ico {
  width: 40px; height: 40px; border-radius: 10px; margin-bottom: 12px;
  background: rgba(42,182,240,.12); border: 1px solid rgba(42,182,240,.25);
  display: flex; align-items: center; justify-content: center; color: var(--cyan-bright);
}
.stat-card .ico svg { width: 20px; height: 20px; }
.stat-card .val { font-family: var(--font-display); font-size: 21px; font-weight: 700; }
.stat-card .lbl { color: var(--text-dim); font-size: 12.5px; margin-top: 2px; }

.panel-box { background: linear-gradient(180deg, var(--panel), var(--panel-2)); border: 1px solid var(--line); border-radius: 14px; padding: 24px; margin-bottom: 20px; }
.panel-box > h2 { font-family: var(--font-display); font-size: 18px; margin-bottom: 4px; }
.panel-box > .sub { color: var(--text-dim); font-size: 13.5px; margin-bottom: 18px; }

.info-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.info-row:last-child { border-bottom: none; }
.info-row .k { color: var(--text-dim); }
.info-row .v { font-weight: 600; text-align: right; word-break: break-all; }
.pill { font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; background: rgba(61,220,132,.15); color: #8ff0bd; }

.quick-actions { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 12px; }
.quick-actions a, .quick-actions button {
  display: flex; align-items: center; gap: 12px; padding: 15px 16px;
  border: 1px solid var(--line); border-radius: 12px; background: var(--bg-2);
  color: var(--text); font-family: var(--font-body); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all .2s; text-align: left; width: 100%;
}
.quick-actions a:hover, .quick-actions button:hover { border-color: var(--cyan); transform: translateY(-2px); }
.quick-actions svg { width: 20px; height: 20px; color: var(--cyan-bright); flex-shrink: 0; }

.empty-state { text-align: center; padding: 36px 20px; }
.empty-state svg { width: 46px; height: 46px; color: var(--text-faint); margin-bottom: 14px; }
.empty-state p { font-size: 14px; color: var(--text-dim); margin-bottom: 18px; }

.plan-mini { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; background: var(--bg-2); }
.plan-mini:last-child { margin-bottom: 0; }
.plan-mini .info h3 { font-size: 15px; margin-bottom: 2px; }
.plan-mini .info p { color: var(--text-dim); font-size: 13px; }
.plan-mini .price { font-family: var(--font-display); color: var(--cyan-bright); font-weight: 700; font-size: 17px; white-space: nowrap; }

/* tickets */
.ticket { border: 1px solid var(--line); border-radius: 12px; padding: 16px; margin-bottom: 12px; background: var(--bg-2); }
.ticket-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 8px; }
.ticket-head h3 { font-size: 15px; }
.badge { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: .4px; white-space: nowrap; }
.badge-aberto { background: rgba(42,182,240,.15); color: var(--cyan-bright); }
.badge-respondido { background: rgba(61,220,132,.15); color: #8ff0bd; }
.badge-fechado { background: rgba(150,160,180,.15); color: var(--text-faint); }
.ticket-msg { color: var(--text-dim); font-size: 13.5px; line-height: 1.5; white-space: pre-wrap; }
.ticket-reply { margin-top: 12px; padding: 12px 14px; border-left: 3px solid var(--cyan); background: rgba(42,182,240,.06); border-radius: 6px; font-size: 13.5px; line-height: 1.5; }
.ticket-reply strong { color: var(--cyan-bright); }
.ticket-date { color: var(--text-faint); font-size: 12px; margin-top: 8px; }
.dash textarea {
  width: 100%; background: var(--bg-2); border: 1.5px solid var(--line); border-radius: 10px;
  padding: 12px 14px; color: var(--text); font-family: var(--font-body); font-size: 14.5px;
  resize: vertical; min-height: 120px; transition: border-color .2s, box-shadow .2s;
}
.dash textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(42,182,240,.18); }
.dash textarea::placeholder { color: var(--text-faint); }

@media (max-width: 820px) {
  .dash { grid-template-columns: 1fr; }
  .dash-side { position: static; height: auto; }
  .dash-nav { flex-direction: row; flex-wrap: wrap; }
  .dash-nav button { width: auto; flex: 1 1 auto; justify-content: center; }
  .dash-main { padding: 24px 18px; }
}

/* refino dashboard: menos "esticado", mais organizado */
.dash-tab { max-width: 1180px; }
.stat-cards { grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat-card { padding: 16px 18px; }
.stat-card .ico { width: 36px; height: 36px; margin-bottom: 10px; }
.stat-card .val { font-size: 19px; }
.dash-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.dash-cols .panel-box { margin-bottom: 0; height: 100%; }
.quick-actions.vert { grid-template-columns: 1fr; }
@media (max-width: 980px) {
  .dash-cols { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: 1fr; }
}

/* paginas de auth com o header do site (injetado por site-header.js) */
body.has-site-header { display: flex; flex-direction: column; min-height: 100vh; }
body.has-site-header .auth-page { flex: 1 0 auto; min-height: 0; padding-top: 28px; padding-bottom: 28px; }

/* header do site tambem no dashboard */
body.has-site-header .dash { min-height: calc(100vh - 74px); }
body.has-site-header .dash-side { position: static; height: auto; }

/* seletor de estrelas (avaliacao no perfil) */
.star-input { display: flex; gap: 6px; margin-bottom: 16px; }
.star-input button {
  background: none; border: none; cursor: pointer; padding: 2px;
  font-size: 32px; line-height: 1; color: var(--text-faint);
  transition: color .15s, transform .15s;
}
.star-input button:hover { transform: scale(1.15); }
.star-input button.on { color: #ffcb45; text-shadow: 0 0 12px rgba(255,203,69,.5); }

/* secao de depoimentos na home */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 18px; }
.review-card { background: linear-gradient(180deg, var(--panel), var(--panel-2)); border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
.review-stars { color: #ffcb45; letter-spacing: 3px; font-size: 15px; margin-bottom: 12px; }
.review-text { color: var(--text); font-size: 14.5px; line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 11px; }
.review-author .av {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-deep));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: #04131f;
}
.review-author .nm { font-weight: 600; font-size: 14px; }
.review-author .dt { color: var(--text-faint); font-size: 12px; }

/* cards de depoimento — versao criativa (sobrescreve a basica) */
.review-card {
  position: relative; overflow: hidden;
  animation: reviewIn .45s ease both;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.review-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), rgba(42,182,240,0));
}
.review-card:hover { transform: translateY(-5px); border-color: var(--cyan); box-shadow: 0 18px 44px rgba(0,0,0,.5), var(--glow); }
@keyframes reviewIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.review-quote {
  position: absolute; top: 2px; right: 20px; pointer-events: none;
  font-family: Georgia, 'Times New Roman', serif; font-size: 90px; line-height: 1;
  color: rgba(42,182,240,.13);
}
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; position: relative; z-index: 1; }
.review-card .av {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-deep));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 21px; color: #04131f;
  box-shadow: 0 0 18px rgba(42,182,240,.45);
}
.review-who .nm { display: flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14.5px; }
.review-who .verified-badge { color: var(--cyan-bright); flex-shrink: 0; }
.review-stars { color: #ffcb45; letter-spacing: 2px; font-size: 14px; margin-top: 3px; }
.review-text { color: var(--text); font-size: 14.5px; line-height: 1.65; font-style: italic; position: relative; z-index: 1; }
.review-foot { margin-top: 16px; padding-top: 13px; border-top: 1px solid var(--line); }
.verified { color: var(--success); font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }

/* banner de verificacao de conta (dashboard) */
.verify-banner {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(255,180,60,.14), rgba(255,140,40,.07));
  border: 1px solid rgba(255,190,80,.4); border-radius: 12px;
  padding: 15px 20px; margin-bottom: 22px;
}
.verify-banner .vb-icon { font-size: 24px; line-height: 1; }
.verify-banner .vb-text { flex: 1; min-width: 220px; font-size: 13.8px; color: #ffd9a0; line-height: 1.5; }
.verify-banner .vb-text strong { color: #ffe9c9; }
.verify-banner button {
  background: #ffb43c; color: #3a2500; border: none; padding: 10px 18px;
  border-radius: 9px; font-weight: 700; font-family: var(--font-body);
  cursor: pointer; font-size: 13.5px; white-space: nowrap; transition: filter .2s;
}
.verify-banner button:hover { filter: brightness(1.08); }
.verify-banner button:disabled { opacity: .6; cursor: default; }

/* estado bloqueado de formularios (nao verificado) */
.locked-note {
  display: flex; align-items: center; gap: 9px;
  background: var(--bg-2); border: 1px dashed var(--line); border-radius: 10px;
  padding: 13px 15px; color: var(--text-dim); font-size: 13.5px; margin-top: 4px;
}
.locked-note svg { width: 18px; height: 18px; color: #ffb43c; flex-shrink: 0; }
.is-locked { opacity: .5; pointer-events: none; filter: grayscale(.3); }

/* ═══════════════════════════════════════════
   PAINEL ADMIN
   ═══════════════════════════════════════════ */
.adm-badge { display:inline-block; font-size:10.5px; font-weight:800; letter-spacing:.6px; color:#04131f; background:linear-gradient(135deg,#ffcb45,#ff9d2e); padding:2px 8px; border-radius:6px; vertical-align:middle; margin-left:8px; }
.table-wrap { overflow-x:auto; border:1px solid var(--line); border-radius:12px; }
.adm-table { width:100%; border-collapse:collapse; font-size:13.5px; min-width:520px; }
.adm-table th { text-align:left; padding:12px 14px; color:var(--text-dim); font-weight:600; border-bottom:1px solid var(--line); font-size:11.5px; text-transform:uppercase; letter-spacing:.5px; background:var(--bg-2); position:sticky; top:0; }
.adm-table td { padding:12px 14px; border-bottom:1px solid var(--line); color:var(--text); vertical-align:middle; }
.adm-table tr:last-child td { border-bottom:none; }
.adm-table tr:hover td { background:rgba(42,182,240,.04); }
.adm-actions { display:flex; gap:6px; flex-wrap:wrap; }
.btn-sm { padding:6px 12px; font-size:12.5px; border-radius:7px; border:1px solid var(--line); background:var(--bg-2); color:var(--text-dim); cursor:pointer; font-family:var(--font-body); font-weight:600; transition:all .18s; white-space:nowrap; }
.btn-sm:hover { border-color:var(--cyan); color:var(--cyan-bright); }
.btn-sm.danger:hover { border-color:#ff6b6b; color:#ff9d9d; background:rgba(255,86,86,.06); }
.btn-sm.ok:hover { border-color:var(--success); color:#8ff0bd; background:rgba(61,220,132,.06); }
.dot-yes { color:var(--success); font-weight:700; }
.dot-no { color:#ff9d9d; font-weight:700; }

/* ticket/review no admin */
.adm-card { border:1px solid var(--line); border-radius:12px; padding:18px; margin-bottom:14px; background:var(--bg-2); }
.adm-card-head { display:flex; justify-content:space-between; align-items:center; gap:10px; flex-wrap:wrap; margin-bottom:8px; }
.adm-card-head h3 { font-size:15px; }
.adm-card-meta { color:var(--text-faint); font-size:12px; margin-top:2px; }
.adm-msg-body { color:var(--text-dim); font-size:13.5px; line-height:1.55; white-space:pre-wrap; margin-bottom:12px; }
.adm-reply { margin-top:12px; }
.adm-reply textarea { width:100%; min-height:70px; background:var(--panel); border:1.5px solid var(--line); border-radius:9px; padding:10px 12px; color:var(--text); font-family:var(--font-body); font-size:13.5px; resize:vertical; }
.adm-reply textarea:focus { outline:none; border-color:var(--cyan); }
.adm-reply-row { display:flex; gap:8px; margin-top:8px; align-items:center; flex-wrap:wrap; }
.adm-reply select { background:var(--panel); border:1.5px solid var(--line); border-radius:8px; padding:8px 10px; color:var(--text); font-family:var(--font-body); font-size:13px; }
.adm-existing-reply { margin-top:10px; padding:10px 12px; border-left:3px solid var(--success); background:rgba(61,220,132,.06); border-radius:6px; font-size:13px; color:#b8c7dd; }
.adm-stars { color:#ffcb45; letter-spacing:2px; }
.sidebar-admin { display:block; padding:11px 14px; border-radius:10px; text-align:center; font-weight:700; font-size:13.5px; color:#04131f; background:linear-gradient(135deg,#ffcb45,#ff9d2e); margin-bottom:10px; }
.sidebar-admin:hover { filter:brightness(1.06); }

/* ═══════════ LICENCAS (Meus Planos do cliente) ═══════════ */
.lic-card { border: 1px solid var(--line); border-radius: 14px; padding: 20px; margin-bottom: 14px; background: linear-gradient(180deg, rgba(42,182,240,.06), var(--bg-2)); position: relative; overflow: hidden; }
.lic-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--cyan), transparent); }
.lic-card.expired { opacity: .7; }
.lic-card.expired::before { background: linear-gradient(90deg, #ff6b6b, transparent); }
.lic-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.lic-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.lic-title span { color: var(--cyan-bright); }
.lic-plan { color: var(--text-dim); font-size: 13px; margin-top: 2px; }
.lic-days { text-align: right; white-space: nowrap; }
.lic-days .n { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--success); }
.lic-days .n.exp { color: #ff9d9d; }
.lic-days .l { color: var(--text-faint); font-size: 12px; }
.lic-field-label { font-size: 11px; color: var(--text-faint); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.lic-key-box { display: flex; align-items: center; gap: 8px; background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; margin-bottom: 14px; }
.lic-key-box code { flex: 1; font-family: monospace; font-size: 15px; color: var(--cyan-bright); letter-spacing: 1px; word-break: break-all; }
.lic-copy { background: var(--bg-2); border: 1px solid var(--line); border-radius: 8px; padding: 8px 14px; color: var(--text-dim); cursor: pointer; font-size: 12.5px; font-weight: 600; font-family: var(--font-body); white-space: nowrap; transition: all .18s; }
.lic-copy:hover { border-color: var(--cyan); color: var(--cyan-bright); }
.lic-copy.done { border-color: var(--success); color: #8ff0bd; }
.lic-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.lic-actions .btn[disabled] { opacity: .5; pointer-events: none; }
.badge-expirado { background: rgba(255,86,86,.15); color: #ff9d9d; }

.adm-select { width: 100%; background: var(--bg-2); border: 1.5px solid var(--line); border-radius: 10px; padding: 12px 14px; color: var(--text); font-family: var(--font-body); font-size: 14.5px; cursor: pointer; }
.adm-select:focus { outline: none; border-color: var(--cyan); }

.lic-eye { background: var(--bg-2); border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px; color: var(--text-faint); cursor: pointer; display: flex; align-items: center; transition: all .18s; }
.lic-eye:hover, .lic-eye.on { border-color: var(--cyan); color: var(--cyan-bright); }
.lic-eye svg { width: 17px; height: 17px; }
.lic-key { user-select: none; }
.lic-key[data-shown="1"] { user-select: all; }

/* ═══════════ barra de progresso de scroll ═══════════ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200;
  background: linear-gradient(90deg, var(--cyan-deep), var(--cyan-bright));
  box-shadow: 0 0 10px rgba(42,182,240,.7);
}

/* ═══════════ faixa Comunidade / Discord ═══════════ */
.community { position: relative; overflow: hidden; padding: 70px 0;
  background: linear-gradient(135deg, rgba(88,101,242,.14), rgba(42,182,240,.05));
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.community::before { content: ''; position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: rgba(88,101,242,.25); filter: blur(90px); top: -140px; right: 8%; pointer-events: none; }
.community-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 34px; flex-wrap: wrap; }
.community-text { flex: 1; min-width: 280px; }
.community-text h2 { font-family: var(--font-display); font-size: clamp(26px, 4vw, 40px); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.community-text p { color: var(--text-dim); max-width: 500px; margin-top: 12px; font-size: 15px; line-height: 1.6; }
.community-badges { display: flex; gap: 22px; margin-top: 20px; flex-wrap: wrap; }
.community-badge { display: flex; align-items: center; gap: 8px; color: var(--text); font-size: 14px; font-weight: 500; }
.community-badge svg { width: 20px; height: 20px; color: var(--cyan-bright); flex-shrink: 0; }
.community-cta { flex-shrink: 0; }
.community-cta .btn-discord { padding: 16px 34px; font-size: 16px; }

/* ═══════════ pagina 404 ═══════════ */
.err-wrap { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px 22px; position: relative; overflow: hidden;
  background: radial-gradient(1000px 600px at 50% 0%, rgba(42,182,240,.10), transparent 60%), var(--bg); }
.err-logo { width: 120px; margin-bottom: 20px; filter: drop-shadow(0 0 22px rgba(42,182,240,.6)); animation: floaty 4s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.err-code { font-family: var(--font-display); font-size: clamp(80px, 18vw, 160px); font-weight: 700; line-height: 1;
  background: linear-gradient(135deg, var(--cyan-bright), var(--cyan-deep)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.err-title { font-family: var(--font-display); font-size: 26px; margin: 6px 0 10px; }
.err-sub { color: var(--text-dim); max-width: 420px; margin-bottom: 26px; }
