/* ========================================
   zJu4nn Optimizer - Professional CSS
   ======================================== */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #a855f7;
    --primary-light: #c084fc;
    --primary-dark: #7c3aed;
    --accent-pink: #ec4899;
    --accent-cyan: #22d3ee;
    --accent-blue: #3b82f6;
    --bg-dark: #0a0a0f;
    --bg-card: #111119;
    --bg-card-hover: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --text-muted: #6b6b80;
    --border-color: rgba(168, 85, 247, 0.15);
    --glow-purple: rgba(168, 85, 247, 0.4);
    --glow-pink: rgba(236, 72, 153, 0.4);
    --glow-cyan: rgba(34, 211, 238, 0.3);
    --gradient-main: linear-gradient(135deg, var(--accent-pink), var(--primary), var(--accent-cyan));
    --gradient-card: linear-gradient(145deg, rgba(168,85,247,0.08), rgba(34,211,238,0.04));
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--primary-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* === PARTICLES === */
#particles-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* === UTILITIES === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px var(--glow-purple), 0 0 40px rgba(168,85,247,0.1); }
    50% { box-shadow: 0 0 30px var(--glow-purple), 0 0 60px rgba(168,85,247,0.2); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(8px); }
}
@keyframes glow-border {
    0%, 100% { border-color: rgba(168,85,247,0.3); }
    50% { border-color: rgba(236,72,153,0.5); }
}
@keyframes slide-right {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.animate-fade-up { opacity: 0; animation: fadeInUp 0.8s ease forwards; }
.animate-fade-down { opacity: 0; animation: fadeInDown 0.8s ease forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 45px; transition: var(--transition); filter: drop-shadow(0 0 8px var(--glow-purple)); }
.logo-img:hover { transform: scale(1.05); filter: drop-shadow(0 0 15px var(--glow-purple)); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
    background: rgba(168, 85, 247, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gradient-main);
    border-radius: 2px;
}

.btn-nav-cta {
    background: var(--gradient-main);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(168,85,247,0.3);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(168,85,247,0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    width: 28px; height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 120px 24px 80px;
    background: url('Itens do Site/Background mais retangular e com blur.jpg') center/cover no-repeat;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,15,0.3) 0%, rgba(10,10,15,0.7) 50%, var(--bg-dark) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-badge i { color: var(--accent-cyan); }

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.hero-logo-inline {
    height: clamp(50px, 8vw, 80px);
    filter: drop-shadow(0 0 20px var(--glow-purple));
    animation: float 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.typewriter {
    color: var(--accent-cyan);
    font-weight: 600;
    border-right: 2px solid var(--accent-cyan);
    padding-right: 4px;
    animation: blink-cursor 0.7s step-end infinite;
}

@keyframes blink-cursor {
    50% { border-color: transparent; }
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.stat-item { text-align: center; }
.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-suffix {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gradient-main);
    color: white;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--radius-sm);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 25px rgba(168, 85, 247, 0.35);
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(168, 85, 247, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}
.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(168, 85, 247, 0.08);
    transform: translateY(-3px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 1px;
}
.mouse {
    width: 24px; height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.wheel {
    width: 3px; height: 8px;
    background: var(--primary-light);
    border-radius: 2px;
    animation: scroll-wheel 1.5s ease-in-out infinite;
}

/* === SECTIONS === */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-light);
    text-transform: uppercase;
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(168, 85, 247, 0.15);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto;
}

/* === SOBRE === */
.sobre { background: var(--bg-dark); }
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.02rem;
    line-height: 1.8;
}
.sobre-text strong { color: var(--text-primary); }

.features-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.feature-mini-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.feature-mini-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(168,85,247,0.1);
}

.feature-mini-icon {
    width: 42px; height: 42px;
    background: var(--gradient-main);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.feature-mini-item h4 {
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.feature-mini-item div p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.sobre-visual { display: flex; justify-content: center; }
.sobre-card {
    padding: 8px;
    border-radius: var(--radius);
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    animation: pulse-glow 3s ease-in-out infinite;
}
.sobre-img {
    width: 100%;
    max-width: 380px;
    border-radius: 12px;
}

/* === JOGOS SECTION === */
.jogos-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15,15,25,1) 50%, var(--bg-dark) 100%);
    overflow: hidden;
}

.jogos-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.jogos-desc {
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.jogos-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.jogos-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.jogos-features li i {
    color: var(--accent-cyan);
    font-size: 0.85rem;
    width: 22px;
    height: 22px;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.jogos-carousel {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.jogos-track {
    display: flex;
    gap: 16px;
    animation: jogos-scroll 25s linear infinite;
    width: max-content;
}
.jogos-track:hover { animation-play-state: paused; }

@keyframes jogos-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.jogo-card {
    width: 180px;
    height: 260px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}
.jogo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
}
.jogo-card:hover {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(168,85,247,0.2);
}
.jogo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .jogos-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .jogos-text .section-title { text-align: center !important; }
    .jogos-desc { text-align: center; }
    .jogos-features { align-items: center; }
    .jogo-card { width: 150px; height: 220px; }
}

/* === BENCHMARKS === */
.benchmarks {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15,15,25,1) 50%, var(--bg-dark) 100%);
}

.benchmark-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.bench-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-secondary);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.bench-tab-logo {
    height: 22px;
    filter: grayscale(1) brightness(0.7);
    transition: var(--transition);
}

.bench-tab:hover, .bench-tab.active {
    border-color: var(--primary);
    background: rgba(168, 85, 247, 0.1);
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(168,85,247,0.15);
}
.bench-tab:hover .bench-tab-logo, .bench-tab.active .bench-tab-logo {
    filter: none;
}

.bench-content { display: none; }
.bench-content.active { display: block; animation: fadeInUp 0.5s ease; }

.bench-image-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 32px;
    text-align: center;
}
.bench-img {
    max-width: 100%;
    border-radius: 8px;
}

.bench-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bench-highlight-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}
.bench-highlight-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(168,85,247,0.12);
}

.bench-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.bench-compare {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 12px 0 8px;
}
.bench-before {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}
.bench-compare i { color: var(--primary-light); font-size: 0.85rem; }
.bench-after {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-cyan);
}
.bench-gain {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-cyan);
}

/* === ANIMATED BENCHMARK CHARTS === */
.bench-chart-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 32px;
}

.bench-chart-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.legend-dot.avg { background: #3b82f6; }
.legend-dot.low1 { background: #ec4899; }
.legend-dot.low01 { background: #8b5cf6; }

.bench-chart-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bench-chart-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.bench-row-label {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-secondary);
    min-width: 70px;
    text-align: right;
    padding-top: 6px;
}

.bench-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bench-bar {
    height: 28px;
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: center;
    width: var(--bar-width);
    transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-width: 0;
    overflow: visible;
}
.bench-bar.avg { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.bench-bar.low1 { background: linear-gradient(90deg, #ec4899, #f472b6); }
.bench-bar.low01 { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }

.bench-bar.animated {
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.3);
}
.bench-bar.low1.animated {
    box-shadow: 0 0 12px rgba(236, 72, 153, 0.3);
}
.bench-bar.low01.animated {
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.3);
}

.bar-value {
    position: absolute;
    right: -50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.5s ease 1s;
}
.bench-bar.animated .bar-value {
    opacity: 1;
}

@media (max-width: 480px) {
    .bench-row-label { min-width: 50px; font-size: 0.8rem; }
    .bench-bar { height: 22px; }
    .bar-value { font-size: 0.65rem; right: -40px; }
}

/* === PLANOS === */
.planos {
    background: var(--bg-dark);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.plan-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--border-color);
    transition: var(--transition);
}
.plan-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168,85,247,0.3);
    box-shadow: 0 20px 60px rgba(168,85,247,0.12);
}
.plan-card:hover::before {
    background: var(--gradient-main);
}

.plan-card.featured {
    border-color: var(--primary);
    transform: scale(1.04);
    box-shadow: 0 12px 50px rgba(168,85,247,0.2);
}
.plan-card.featured::before {
    background: var(--gradient-main);
    height: 4px;
}
.plan-card.featured:hover { transform: scale(1.04) translateY(-8px); }

.plan-popular-tag {
    position: absolute;
    top: 16px; right: -32px;
    background: var(--gradient-main);
    color: white;
    padding: 4px 40px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(45deg);
    z-index: 2;
}

.plan-badge-type {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(168,85,247,0.1);
    border: 1px solid rgba(168,85,247,0.2);
    border-radius: 50px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.plan-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.plan-old-price {
    display: block;
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 0.9rem;
}
.plan-current-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}
.plan-cents {
    font-size: 1.5rem;
}
.plan-period {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 4px;
    margin-bottom: 28px;
}

.plan-features {
    list-style: none;
    text-align: left;
    flex-grow: 1;
    margin-bottom: 32px;
}
.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.92rem;
}
.plan-features li small {
    display: block;
    color: var(--text-muted);
    font-size: 0.72rem;
}
.plan-features li.included i { color: #4ade80; }
.plan-features li.excluded {
    color: var(--text-muted);
}
.plan-features li.excluded i { color: #f87171; }

.btn-plan {
    display: block;
    padding: 14px 24px;
    background: rgba(168,85,247,0.1);
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    color: var(--primary-light);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: var(--transition);
}
.btn-plan:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 20px rgba(168,85,247,0.3);
}

.btn-plan-featured {
    background: var(--gradient-main);
    border: none;
    color: white;
}
.btn-plan-featured:hover {
    box-shadow: 0 8px 35px rgba(168,85,247,0.4);
    transform: translateY(-2px);
}

.btn-plan-premium {
    background: linear-gradient(135deg, var(--accent-cyan), var(--primary));
    border: none;
    color: white;
}
.btn-plan-premium:hover {
    box-shadow: 0 8px 35px rgba(34,211,238,0.3);
    transform: translateY(-2px);
}

/* === AVALIAÇÕES / REVIEWS SLIDER === */
.avaliacoes {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15,15,25,1) 50%, var(--bg-dark) 100%);
}

.reviews-slider-wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.reviews-slider {
    display: flex;
    gap: 24px;
    animation: slide-right 30s linear infinite;
    width: max-content;
}

.reviews-slider:hover { animation-play-state: paused; }

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px;
    min-width: 360px;
    max-width: 360px;
    transition: var(--transition);
    flex-shrink: 0;
}
.review-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(168,85,247,0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.review-info h4 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 600;
}
.verified-badge {
    width: 16px; height: 16px;
}
.review-stars { display: flex; gap: 2px; margin-top: 4px; }
.review-stars i { color: #fbbf24; font-size: 0.75rem; }

.review-text {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    font-style: italic;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.slider-dots {
    display: flex;
    gap: 8px;
}
.slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}
.slider-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* === FAQ === */
.faq { background: var(--bg-dark); }

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: rgba(168,85,247,0.25); }
.faq-item.active { border-color: var(--primary); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.98rem;
    transition: var(--transition);
}
.faq-question:hover { color: var(--primary-light); }
.faq-question i {
    color: var(--primary-light);
    transition: var(--transition);
    font-size: 0.8rem;
}
.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 300px; }

/* === CONTATO === */
.contato {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15,15,25,1) 100%);
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contato-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition);
}
.contato-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(168,85,247,0.12);
}

.contato-icon {
    width: 64px; height: 64px;
    background: var(--gradient-main);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    margin: 0 auto 20px;
    transition: var(--transition);
}
.contato-card:hover .contato-icon { transform: scale(1.1) rotate(5deg); }

.contato-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.contato-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.btn-contato {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid var(--primary);
    border-radius: 8px;
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
}
.btn-contato:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 20px rgba(168,85,247,0.3);
}

/* === FOOTER === */
.footer {
    background: rgba(5,5,10,1);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-logo {
    height: 50px;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 8px var(--glow-purple));
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; }

.footer-links-group h4 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--text-primary);
}
.footer-links-group a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    padding: 4px 0;
    transition: var(--transition);
}
.footer-links-group a:hover { color: var(--primary-light); padding-left: 4px; }

.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px; height: 40px;
    background: rgba(168,85,247,0.1);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; }

/* === PAGE SECTIONS (FAQ, Termos, Store) === */
.page-section { padding-top: 130px; }

/* Plan Buttons Row */
.plan-buttons {
    display: flex;
    gap: 10px;
    flex-direction: column;
}
.btn-plan-alt {
    display: block;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--text-muted);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-align: center;
    transition: var(--transition);
}
.btn-plan-alt:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
    background: rgba(168,85,247,0.05);
}

/* Store Guarantee */
.store-guarantee {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 60px;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    flex-wrap: wrap;
}
.guarantee-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.guarantee-item i {
    font-size: 1.6rem;
    color: var(--primary-light);
}
.guarantee-item h4 {
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.guarantee-item p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* FAQ Page Specific */
.faq-category-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}
.faq-cat-tab {
    padding: 8px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.faq-cat-tab:hover, .faq-cat-tab.active {
    border-color: var(--primary);
    color: var(--text-primary);
    background: rgba(168,85,247,0.1);
}

.faq-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-light);
    min-width: 32px;
}

.faq-list {
    list-style: none;
    padding: 8px 0 0 24px;
}
.faq-list li {
    position: relative;
    padding: 4px 0 4px 16px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}
.faq-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 12px;
    width: 6px; height: 6px;
    background: var(--primary-light);
    border-radius: 50%;
}

.faq-answer ul + p {
    margin-top: 12px;
}

/* Termos Page */
.termos-content {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.termos-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px;
}
.termos-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.termos-card h3 i {
    color: var(--primary-light);
}

.termos-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.termos-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.termos-item h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent-cyan);
}
.termos-item p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.8;
}

.termos-list {
    list-style: none;
    margin-top: 12px;
}
.termos-list li {
    padding: 6px 0 6px 20px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.termos-list li::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: var(--primary-light);
    font-weight: bold;
}

.termos-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(168,85,247,0.08);
    border: 1px solid rgba(168,85,247,0.2);
    border-radius: var(--radius-sm);
    margin-top: 20px;
}
.termos-notice i {
    color: var(--primary-light);
    font-size: 1.1rem;
    margin-top: 2px;
}
.termos-notice p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .plans-grid { grid-template-columns: repeat(2, 1fr); }
    .plan-card.featured { transform: scale(1); }
    .plan-card.featured:hover { transform: translateY(-8px); }
    .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
    .sobre-visual { order: -1; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .jogos-layout { grid-template-columns: 1fr; gap: 32px; }
    .jogos-text .section-title { text-align: center !important; }
    .jogos-desc { text-align: center; }
    .jogos-features { align-items: center; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: rgba(10,10,15,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 32px 32px;
        transition: 0.4s ease;
        border-left: 1px solid var(--border-color);
        z-index: 999;
    }
    .nav-links.active { right: 0; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }

    .hero { padding: 100px 16px 60px; min-height: 100vh; }
    .hero-title { flex-wrap: wrap; white-space: normal; font-size: clamp(1.8rem, 8vw, 3rem); }
    .hero-logo-inline { height: 45px; }
    .hero-subtitle { font-size: 0.95rem; padding: 0 8px; }
    .hero-badge { font-size: 0.75rem; padding: 6px 14px; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 300px; justify-content: center; }
    .hero-stats { gap: 20px; }
    .stat-number { font-size: 1.8rem; }
    .stat-suffix { font-size: 1.2rem; }
    .stat-divider { display: none; }
    .hero-scroll-indicator { display: none; }

    .section { padding: 60px 0; }
    .section-header { margin-bottom: 40px; }
    .section-title { font-size: clamp(1.3rem, 5vw, 1.8rem); }
    .section-subtitle { font-size: 0.92rem; padding: 0 8px; }
    .container { padding: 0 16px; }

    .sobre-text p { font-size: 0.95rem; }
    .features-mini { grid-template-columns: 1fr; }

    .benchmark-tabs { gap: 8px; }
    .bench-tab { padding: 10px 16px; font-size: 0.85rem; }
    .bench-tab-logo { height: 18px; }
    .bench-highlights { grid-template-columns: 1fr; }
    .bench-chart-wrapper { padding: 20px 16px; }
    .bench-row-label { min-width: 55px; font-size: 0.8rem; }
    .bench-bar { height: 22px; }
    .bar-value { font-size: 0.65rem; right: -42px; }

    .plans-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .plan-card { padding: 32px 24px; }
    .plan-current-price { font-size: 2.5rem; }
    .plan-popular-tag { font-size: 0.6rem; padding: 3px 32px; right: -28px; top: 12px; }

    .review-card { min-width: 280px; max-width: 280px; padding: 24px; }

    .contato-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

    .faq-question { padding: 16px 18px; font-size: 0.9rem; }
    .faq-answer p { padding: 0 18px 16px; font-size: 0.88rem; }

    .footer-top { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .footer-social { justify-content: center; }
    .footer-brand { display: flex; flex-direction: column; align-items: center; }

    .jogo-card { width: 140px; height: 200px; }

    .store-guarantee { flex-direction: column; gap: 20px; padding: 24px; }

    .page-section { padding-top: 100px; }

    .termos-card { padding: 24px 18px; }
    .termos-card h3 { font-size: 1rem; }

    .faq-category-tabs { gap: 8px; }
    .faq-cat-tab { padding: 6px 16px; font-size: 0.82rem; }
    .faq-number { min-width: 28px; font-size: 0.78rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.6rem; gap: 8px; }
    .hero-logo-inline { height: 35px; }
    .hero-subtitle { font-size: 0.88rem; }
    .stat-number { font-size: 1.5rem; }
    .stat-label { font-size: 0.7rem; }
    .section-title { font-size: 1.2rem; }
    .section-tag { font-size: 0.72rem; }
    .review-card { min-width: 250px; max-width: 250px; padding: 20px; }
    .review-text { font-size: 0.85rem; }
    .review-avatar { width: 40px; height: 40px; }
    .plan-current-price { font-size: 2.2rem; }
    .plan-name { font-size: 0.95rem; }
    .bench-tab { padding: 8px 12px; font-size: 0.78rem; gap: 6px; }
    .bench-tab-logo { height: 14px; }
    .bench-chart-legend { gap: 12px; font-size: 0.7rem; }
    .jogos-desc { font-size: 0.9rem; }
    .jogos-features li { font-size: 0.88rem; }
    .jogo-card { width: 120px; height: 170px; border-radius: 10px; }
    .contato-icon { width: 50px; height: 50px; font-size: 1.3rem; }
    .contato-card h3 { font-size: 1.1rem; }
    .btn-contato { font-size: 0.82rem; padding: 8px 20px; }
}
