/* ============================================================
   GAMING BUNKER — style.css
   Tema: Minimal Dark + Neon Purple
   ============================================================ */

/* --- Design Tokens --- */
:root {
    /* Dark Background Palette */
    --bg-deep:          #070709;
    --bg-surface:       #0f0f14;
    --bg-surface-2:     #14141c;
    --bg-surface-hover: #1a1a26;
    --bg-glass:         rgba(15, 15, 22, 0.55);
    --bg-glass-card:    rgba(12, 12, 18, 0.60);

    /* Purple / Neon Accents */
    --purple:           #9b59ff;
    --purple-dim:       #7c3aed;
    --purple-glow:      rgba(155, 89, 255, 0.45);
    --purple-soft:      rgba(155, 89, 255, 0.12);
    --neon-cyan:        #22d3ee;
    --neon-cyan-glow:   rgba(34, 211, 238, 0.40);
    --neon-cyan-soft:   rgba(34, 211, 238, 0.10);

    /* Keep legacy refs (used in JS / inline) */
    --primary:          var(--purple);
    --primary-hover:    var(--purple-dim);
    --primary-glow:     var(--purple-glow);
    --cyan:             var(--neon-cyan);
    --cyan-glow:        var(--neon-cyan-glow);

    /* Status / Semantic */
    --green:            #34d399;
    --gold:             #f59e0b;

    /* Text */
    --text-main:        #f0f0f8;
    --text-muted:       #8888aa;

    /* Border */
    --border-subtle:    rgba(255, 255, 255, 0.06);
    --border-purple:    rgba(155, 89, 255, 0.35);
    --border-cyan:      rgba(34, 211, 238, 0.35);

    /* Motion */
    --transition:       all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast:  all 0.15s ease;
}

/* --- Base & Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}
h1, h2, h3, h4, .font-display { font-family: 'Space Grotesk', sans-serif; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Custom Cursor --- */
#cursor-dot {
    width: 7px;
    height: 7px;
    background-color: var(--purple);
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease, opacity 0.3s ease, width 0.2s ease, height 0.2s ease;
    box-shadow: 0 0 8px var(--purple-glow);
    opacity: 1;
}
#cursor-ring {
    width: 34px;
    height: 34px;
    border: 1.5px solid var(--purple);
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition:
        width  0.25s cubic-bezier(0.25, 0.8, 0.25, 1),
        height 0.25s cubic-bezier(0.25, 0.8, 0.25, 1),
        border-color 0.25s ease,
        background-color 0.25s ease,
        opacity 0.4s ease;
    opacity: 1;
}

/* Cursor hover states */
body.cursor-hover #cursor-dot {
    width: 10px;
    height: 10px;
    background: var(--neon-cyan);
    box-shadow: 0 0 12px var(--neon-cyan-glow);
}
body.cursor-hover #cursor-ring {
    width: 52px;
    height: 52px;
    border-color: var(--neon-cyan);
    background-color: rgba(34, 211, 238, 0.08);
}
body.cursor-hidden #cursor-dot,
body.cursor-hidden #cursor-ring { opacity: 0; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: #2a2a3e; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple-dim); }

/* ============================================================
   AMBIENT BACKGROUND — Hero Nebulae (FASE 2)
   ============================================================ */
.ambient-light {
    position: fixed;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    z-index: 0;
    animation: floatAmbient 22s infinite ease-in-out alternate;
}

/* Purple nebula — top-left */
.light-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.28) 0%, transparent 70%);
    top: -180px; left: -120px;
    opacity: 1;
}
/* Cyan nebula — bottom-right */
.light-2 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.20) 0%, transparent 70%);
    bottom: 0; right: -80px;
    opacity: 1;
    animation-delay: -6s;
}
/* Faint rose nebula — hero centre */
.light-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.10) 0%, transparent 70%);
    top: 20vh; left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    animation-delay: -11s;
}
/* Extra purple glow — mid-left */
.light-4 {
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(155, 89, 255, 0.13) 0%, transparent 70%);
    top: 65vh; left: 10%;
    opacity: 1;
    animation-delay: -3s;
}

@keyframes floatAmbient {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(35px, 45px) scale(1.08); }
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
header {
    position: fixed;
    top: 0; width: 100%;
    padding: 1.1rem 8%;
    background: rgba(7, 7, 9, 0.72);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-bottom: 1px solid rgba(155, 89, 255, 0.10);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}
header.scrolled {
    padding: 0.75rem 8%;
    background: rgba(7, 7, 9, 0.90);
    border-bottom-color: rgba(155, 89, 255, 0.18);
    box-shadow: 0 4px 40px rgba(0,0,0,0.7);
}

/* Logo */
.logo {
    font-size: 1.45rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1100;
}
.logo i {
    color: var(--purple);
    font-size: 1.55rem;
    filter: drop-shadow(0 0 8px var(--purple-glow));
    transition: filter 0.3s;
}
.logo:hover i { filter: drop-shadow(0 0 14px var(--purple-glow)); }

/* Desktop nav */
.nav-links {
    display: flex;
    gap: 2.2rem;
    align-items: center;
}
.nav-links .nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 4px 0;
    transition: var(--transition);
}
.nav-links .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0%; height: 2px;
    background: var(--purple);
    border-radius: 2px;
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--purple-glow);
}
.nav-links .nav-link:hover { color: var(--text-main); }
.nav-links .nav-link:hover::after { width: 100%; }
.nav-discord {
    padding: 0.5rem 1.2rem !important;
    font-size: 0.82rem !important;
}

/* ============================================================
   HAMBURGER BUTTON (Mobile)
   ============================================================ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--border-purple);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
    transition: var(--transition);
}
.hamburger:hover {
    background: var(--purple-soft);
    border-color: var(--purple);
}
.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                opacity   0.25s ease,
                width     0.3s ease;
    transform-origin: center;
}

/* X state */
.hamburger.is-open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .hamburger-line:nth-child(2) { opacity: 0; width: 0; }
.hamburger.is-open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    z-index: 900;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.mobile-overlay.visible { opacity: 1; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
    cursor: none;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    white-space: nowrap;
}

/* Primary */
.btn-primary {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dim) 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(155, 89, 255, 0.30);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 28px rgba(155, 89, 255, 0.55), 0 0 0 1px var(--purple);
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
    border-radius: inherit;
}

/* Outline */
.btn-outline {
    background: rgba(34, 211, 238, 0.04);
    border-color: var(--border-cyan);
    color: var(--neon-cyan);
}
.btn-outline:hover {
    background: rgba(34, 211, 238, 0.10);
    border-color: var(--neon-cyan);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px var(--neon-cyan-glow), 0 0 0 1px var(--neon-cyan);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 5% 5rem;
    position: relative;
    z-index: 2;
}

/* Radial nebula directly behind hero content */
.hero::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(
        ellipse at center,
        rgba(124, 58, 237, 0.10) 0%,
        rgba(34, 211, 238, 0.05) 40%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(60px);
}

.tagline {
    color: var(--purple);
    font-weight: 600;
    letter-spacing: 2.5px;
    font-size: 0.78rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 6px 18px;
    background: var(--purple-soft);
    border-radius: 30px;
    border: 1px solid var(--border-purple);
    box-shadow: 0 0 20px rgba(155, 89, 255, 0.10);
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #ffffff 30%, rgba(155, 89, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero h1 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.7);
    background: none;
    -webkit-text-fill-color: transparent;
    position: relative;
}
.hero h1 span::before {
    content: attr(data-text);
    position: absolute; left: 0; top: 0;
    background: linear-gradient(90deg, var(--purple), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 0%;
    overflow: hidden;
    transition: 1s ease-in-out;
    white-space: nowrap;
    animation: fillText 4s infinite alternate;
}
@keyframes fillText {
    0%, 10%  { width: 0; }
    90%, 100% { width: 100%; }
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 620px;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Stats bar */
.stats-bar {
    display: flex;
    gap: 0;
    background: var(--bg-glass-card);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: 14px;
    border: 1px solid var(--border-purple);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
    transform: translateY(30px);
    opacity: 0;
    animation: fadeUp 1s 0.4s forwards;
}
.stat-item {
    padding: 1.4rem 2.4rem;
    text-align: center;
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: var(--border-subtle);
}
.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 40%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-item h3 span {
    background: var(--purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
}
.stat-item p {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1.2px;
    margin-top: 4px;
}
@keyframes fadeUp { to { transform: translateY(0); opacity: 1; } }

/* ============================================================
   LAYOUT SECTIONS
   ============================================================ */
section {
    padding: 6rem 8%;
    position: relative;
    z-index: 2;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-top: 0.6rem;
    letter-spacing: -0.5px;
}
.section-subtitle {
    color: var(--text-muted);
    margin-top: 12px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================================
   BOTS GRID — NEON GLOW CARDS (FASE 2)
   ============================================================ */
.bots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1.4rem;
}

.bot-card {
    background: var(--bg-glass-card);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition:
        transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
        border-color 0.35s ease,
        box-shadow 0.35s ease;
    overflow: hidden;
    height: 100%;
}

/* Neon glow border on hover */
.bot-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--purple), var(--neon-cyan));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.35s ease;
}
.bot-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--bg-glass-card);
    z-index: -1;
}
.bot-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow:
        0 0 0 1px rgba(155, 89, 255, 0.5),
        0 12px 40px rgba(0,0,0,0.6),
        0 0 30px rgba(155, 89, 255, 0.15),
        inset 0 0 20px rgba(155, 89, 255, 0.04);
}
.bot-card:hover::before { opacity: 1; }

/* Bot logo */
.bot-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.4rem;
}
.bot-logo {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    transition: box-shadow 0.3s;
}
.bot-logo::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(to bottom right, rgba(255,255,255,0.18) 0%, transparent 40%);
    transform: rotate(45deg);
}
.bot-card:hover .bot-logo { box-shadow: 0 4px 20px rgba(155,89,255,0.4); }

/* Logo colour variants */
.logo-1  { background: linear-gradient(135deg, #7c3aed, #4c1d95); }
.logo-2  { background: linear-gradient(135deg, #22d3ee, #0891b2); }
.logo-3  { background: linear-gradient(135deg, #a855f7, #6b21a8); }
.logo-4  { background: linear-gradient(135deg, #f43f5e, #9f1239); }
.logo-5  { background: linear-gradient(135deg, #10b981, #065f46); }
.logo-6  { background: linear-gradient(135deg, #1DB954, #0f7a34); }
.logo-7  { background: linear-gradient(135deg, #f59e0b, #92400e); }
.logo-8  { background: linear-gradient(135deg, #ec4899, #831843); }
.logo-9  { background: linear-gradient(135deg, #64748b, #1e293b); }
.logo-10 { background: linear-gradient(135deg, #eab308, #78350f); color: #111; }

/* Status dot */
.status-dot {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--green);
    text-transform: uppercase;
    background: rgba(52, 211, 153, 0.10);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(52, 211, 153, 0.20);
    letter-spacing: 0.5px;
}
.status-dot i { font-size: 7px; animation: pulse 2s infinite; }
@keyframes pulse {
    0%   { transform: scale(0.95); opacity: 0.5; }
    50%  { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.5; }
}

.bot-card h3 { font-size: 1.3rem; margin-bottom: 0.45rem; }
.bot-card > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.8rem; flex-grow: 1; }
.card-btn { width: 100%; margin-top: auto; }

/* ============================================================
   COMMANDS UI
   ============================================================ */
.cmd-container {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 0;
    background: var(--bg-glass-card);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid var(--border-purple);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.cmd-sidebar {
    background: rgba(10, 10, 15, 0.70);
    padding: 2rem 1.4rem;
    border-right: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

/* Search */
.search-box { position: relative; }
.search-box > i {
    position: absolute;
    left: 14px; top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.85rem;
}
.search-box input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    padding: 11px 12px 11px 38px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    transition: var(--transition);
}
.search-box input::placeholder { color: var(--text-muted); }
.search-box input:focus {
    border-color: var(--purple);
    outline: none;
    box-shadow: 0 0 0 3px rgba(155,89,255,0.15);
    background: rgba(255,255,255,0.06);
}

/* Tabs */
.cmd-tabs { display: flex; flex-direction: column; gap: 4px; }
.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 11px 14px;
    text-align: left;
    border-radius: 8px;
    cursor: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}
.tab-btn i { width: 18px; text-align: center; opacity: 0.7; transition: var(--transition); }
.tab-btn:hover { background: rgba(155,89,255,0.06); color: var(--text-main); }
.tab-btn.active {
    background: rgba(155,89,255,0.12);
    color: var(--text-main);
    border-left-color: var(--purple);
    border-radius: 0 8px 8px 0;
}
.tab-btn.active i { opacity: 1; color: var(--purple); }

/* Content area */
.cmd-content {
    padding: 2.5rem 2.8rem;
    position: relative;
    min-height: 380px;
    background: rgba(10, 10, 16, 0.50);
}
.tab-pane { display: none; animation: fadeIn 0.35s ease; }
.tab-pane.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateX(6px); } to { opacity: 1; transform: none; } }

.tab-pane h3 {
    font-size: 1.3rem;
    margin-bottom: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-subtle);
}

.cmd-list { display: grid; gap: 7px; }
.cmd-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 11px 14px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: var(--transition);
}
.cmd-row:hover {
    background: rgba(155,89,255,0.05);
    border-color: var(--border-purple);
    transform: translateX(4px);
}
.cmd-name {
    background: rgba(155, 89, 255, 0.10);
    color: #c4a8ff;
    padding: 5px 12px;
    border-radius: 6px;
    font-family: 'Space Grotesk', monospace;
    font-weight: 600;
    font-size: 0.87rem;
    min-width: 120px;
    text-align: center;
    border: 1px solid rgba(155,89,255,0.20);
    white-space: nowrap;
}
.cmd-desc { color: var(--text-muted); font-size: 0.92rem; }

/* ============================================================
   PRICING SECTION — NEON GLOW (FASE 2)
   ============================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
    padding-top: 2rem;
    align-items: stretch;
}

.price-card {
    background: var(--bg-glass-card);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 3rem 2.4rem;
    text-align: center;
    position: relative;
    transition:
        transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    /* overflow: hidden removido para não cortar o badge posicionado em top: -14px */
}
.price-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    background: linear-gradient(135deg, var(--purple), var(--neon-cyan));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}
.price-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--bg-glass-card);
    z-index: -1;
}
.price-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow:
        0 0 0 1px rgba(155,89,255,0.45),
        0 20px 50px rgba(0,0,0,0.65),
        0 0 40px rgba(155,89,255,0.20);
}
.price-card:hover::before { opacity: 1; }

/* Popular card */
.price-card.popular {
    border: 1px solid var(--border-purple);
    box-shadow: 0 0 0 1px rgba(155,89,255,0.25), 0 10px 30px rgba(155,89,255,0.12);
    z-index: 2;
    margin-top: 14px; /* espaço para o badge não ficar cortado */
}
.price-card.popular:hover {
    box-shadow:
        0 0 0 1px rgba(155,89,255,0.6),
        0 20px 55px rgba(155,89,255,0.30),
        0 0 50px rgba(155,89,255,0.25);
}

/* Card com gold-badge (10 Bots) */
.price-card:has(.gold-badge) {
    margin-top: 14px; /* espaço para o badge não ficar cortado */
}

/* Badge */
.badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--purple), var(--purple-dim));
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    white-space: nowrap;
    box-shadow: 0 4px 18px rgba(155,89,255,0.45);
    z-index: 10;
}
.gold-badge {
    background: linear-gradient(135deg, var(--gold), #b45309) !important;
    color: #000 !important;
    box-shadow: 0 4px 18px rgba(245,158,11,0.40) !important;
}

.price-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; font-weight: 700; }
.price-val {
    font-size: 3rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1;
    margin: 1.4rem 0 0.5rem;
    background: linear-gradient(135deg, #fff 40%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.price-val span {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 400;
    -webkit-text-fill-color: var(--text-muted);
    background: none;
}
.savings { color: var(--green); font-size: 0.83rem; font-weight: 600; min-height: 20px; margin-bottom: 2rem; }

.features-list {
    text-align: left;
    margin-bottom: 2.4rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}
.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-muted);
}
.features-list li i { color: var(--purple); font-size: 0.85rem; flex-shrink: 0; }
.price-btn { width: 100%; }

/* ============================================================
   TRANSPARENCY BOX
   ============================================================ */
.transparency-box {
    background: var(--bg-glass-card);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border: 1px solid var(--border-purple);
    border-radius: 16px;
    padding: 3.5rem;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    box-shadow: 0 8px 40px rgba(155,89,255,0.08);
}
.transparency-box h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.transparency-box p { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 1rem; line-height: 1.65; }
.transparency-box strong { color: var(--text-main); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 8% 2.5rem;
    background: rgba(5,5,8,0.95);
    text-align: center;
}
.footer-logo {
    font-size: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.2rem;
}
.footer-logo i {
    color: var(--purple);
    filter: drop-shadow(0 0 8px var(--purple-glow));
}
.footer-text { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 5px; }

.socials { display: flex; justify-content: center; gap: 18px; margin-top: 2rem; }
.socials a {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--bg-surface-2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}
.socials a:hover {
    background: var(--purple-soft);
    border-color: var(--purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 24px var(--purple-glow);
    color: var(--purple);
}
.socials a.wpp:hover {
    background: rgba(37,211,102,0.12);
    border-color: #25D366;
    color: #25D366;
    box-shadow: 0 10px 24px rgba(37,211,102,0.30);
}

/* WhatsApp Group icon — badge label on hover */
.social-grupo {
    position: relative;
    gap: 4px;
}
.social-grupo::after {
    content: 'Grupo';
    position: absolute;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%);
    background: #25D366;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}
.social-grupo:hover::after { opacity: 1; }

/* ============================================================
   SCROLL REVEAL (FASE 3 — initial state)
   ============================================================ */
.reveal-item {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity  0.65s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* Staggered delay helpers */
.reveal-item:nth-child(2)  { transition-delay: 0.08s; }
.reveal-item:nth-child(3)  { transition-delay: 0.16s; }
.reveal-item:nth-child(4)  { transition-delay: 0.24s; }
.reveal-item:nth-child(5)  { transition-delay: 0.32s; }
.reveal-item:nth-child(6)  { transition-delay: 0.40s; }
.reveal-item:nth-child(7)  { transition-delay: 0.48s; }
.reveal-item:nth-child(8)  { transition-delay: 0.56s; }
.reveal-item:nth-child(9)  { transition-delay: 0.64s; }
.reveal-item:nth-child(10) { transition-delay: 0.72s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 992px) {
    header { padding: 1rem 5%; }
    header.scrolled { padding: 0.65rem 5%; }

    .cmd-container { grid-template-columns: 1fr; }
    .cmd-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
        padding: 1.4rem;
    }
    .cmd-tabs { flex-direction: row; flex-wrap: wrap; gap: 6px; }
    .tab-btn { border-left: none; border-bottom: 3px solid transparent; border-radius: 8px; padding: 9px 14px; }
    .tab-btn.active { border-left-color: transparent; border-bottom-color: var(--purple); border-radius: 8px; }
    .cmd-content { padding: 1.8rem 2rem; }

    .stats-bar { padding: 1.2rem 2rem; }
    .stat-item { padding: 1rem 1.6rem; }
}

/* Mobile — show hamburger, hide nav-links */
@media (max-width: 768px) {
    /* Show hamburger */
    .hamburger { display: flex; }

    /* Nav: slide-in drawer from right */
    .nav-links {
        position: fixed;
        top: 0; right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        padding: 5rem 2rem 2rem;
        background: rgba(10, 10, 15, 0.96);
        backdrop-filter: blur(24px) saturate(180%);
        -webkit-backdrop-filter: blur(24px) saturate(180%);
        border-left: 1px solid var(--border-purple);
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        z-index: 1050;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: -10px 0 60px rgba(0,0,0,0.7);
    }
    .nav-links.is-open {
        transform: translateX(0);
    }
    .mobile-overlay { display: block; }

    /* Nav links in mobile */
    .nav-links .nav-link {
        font-size: 1.1rem;
        font-weight: 600;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-subtle);
        color: var(--text-muted);
    }
    .nav-links .nav-link::after { display: none; }
    .nav-links .nav-link:hover { color: var(--purple); }
    .nav-discord {
        margin-top: 1.5rem;
        text-align: center;
        padding: 0.9rem 1.4rem !important;
        font-size: 0.9rem !important;
        align-self: center;
        width: 100%;
    }

    /* Layout tweaks */
    section { padding: 4.5rem 5%; }
    .hero { padding: 7rem 5% 4rem; }
    .hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); letter-spacing: -0.5px; }
    .hero p { font-size: 1rem; }
    .hero-cta { gap: 0.9rem; }

    .stats-bar {
        flex-direction: column;
        gap: 0;
        text-align: center;
    }
    .stat-item::after { display: none; }
    .stat-item {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--border-subtle);
    }
    .stat-item:last-child { border-bottom: none; }

    .bots-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }

    .cmd-content { padding: 1.4rem; }
    .cmd-row { flex-direction: column; align-items: flex-start; gap: 6px; }
    .cmd-name { min-width: unset; width: 100%; text-align: left; }

    .transparency-box { padding: 2rem 1.5rem; }
    footer { padding: 3rem 5% 2rem; }

    .section-header h2 { font-size: 1.8rem; }
}

/* Small phones */
@media (max-width: 400px) {
    .hero h1 { font-size: 2rem; }
    .btn { padding: 0.7rem 1.3rem; font-size: 0.8rem; }
}

/* ============================================================
   COMMUNITY INVITE POPUP
   ============================================================ */
.community-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-width: 100vw;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.community-popup-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.community-popup {
    background: var(--bg-glass-card);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border: 1px solid var(--border-purple);
    border-radius: 20px;
    padding: 2.8rem 2.4rem 2.2rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(155, 89, 255, 0.15),
        0 30px 80px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(155, 89, 255, 0.12);
    transform: translateY(30px) scale(0.96);
    transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.community-popup-overlay.is-visible .community-popup {
    transform: translateY(0) scale(1);
}

/* Close button */
.popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.popup-close:hover {
    background: rgba(255,255,255,0.10);
    color: var(--text-main);
    border-color: var(--border-purple);
}

/* Logo */
.popup-logo { margin-bottom: 1.4rem; }

/* Text */
.popup-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    background: linear-gradient(135deg, #fff 40%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.popup-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

/* Action buttons */
.popup-actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.4rem;
}

.popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.95rem 1.6rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
}
.popup-btn i { font-size: 1.2rem; }

/* WhatsApp */
.popup-btn-wpp {
    background: linear-gradient(135deg, #25D366, #128c47);
    color: #fff;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.30);
}
.popup-btn-wpp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.50);
}

/* Discord */
.popup-btn-discord {
    background: linear-gradient(135deg, #5865F2, #3b4ac7);
    color: #fff;
    box-shadow: 0 6px 24px rgba(88, 101, 242, 0.30);
}
.popup-btn-discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(88, 101, 242, 0.50);
}

/* Skip link */
.popup-skip {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.82rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color 0.2s ease;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.popup-skip:hover { color: var(--text-main); }

@media (max-width: 480px) {
    .community-popup { padding: 2.2rem 1.5rem 1.8rem; }
    .popup-title { font-size: 1.3rem; }
}
