/* ============================================
   VEGASMODS — STYLE DARK GAMING THEME
   ============================================ */

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #16162280;
    --accent: #00e5ff;
    --accent-glow: rgba(0, 229, 255, 0.3);
    --accent2: #7c3aed;
    --accent2-glow: rgba(124, 58, 237, 0.3);
    --green: #22c55e;
    --red: #ef4444;
    --gold: #facc15;
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.06);
    --radius: 16px;
    --radius-sm: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #040810;
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============ OCEAN BACKGROUND ============ */
.ocean-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(0, 80, 120, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 150, 200, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(0, 60, 100, 0.2) 0%, transparent 60%),
        linear-gradient(180deg, #040810 0%, #061520 40%, #0a1e2e 70%, #051018 100%);
}

.ocean-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 60%, rgba(0, 229, 255, 0.03) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 40%, rgba(124, 58, 237, 0.03) 0%, transparent 40%);
    animation: oceanShift 12s ease-in-out infinite alternate;
}

@keyframes oceanShift {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* ============ LOGO WATERMARK ============ */
.logo-watermark {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-image: url('../img/logo.svg');
    background-repeat: repeat;
    background-size: 120px;
    opacity: 0.02;
}

/* ============ PARTICLES (BUBBLES) ============ */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), rgba(0, 229, 255, 0.08));
    border: 1px solid rgba(0, 229, 255, 0.08);
    opacity: 0.3;
    animation: floatBubble linear infinite;
}

@keyframes floatBubble {
    0% { transform: translateY(100vh) translateX(0) scale(0.3); opacity: 0; }
    10% { opacity: 0.3; }
    50% { transform: translateY(50vh) translateX(15px) scale(0.8); }
    90% { opacity: 0.2; }
    100% { transform: translateY(-10vh) translateX(-10px) scale(1); opacity: 0; }
}

/* ============ NAVBAR ============ */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(10, 10, 15, 0.85);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 40px;
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.4));
    transition: filter 0.3s ease;
}

.logo:hover .logo-icon {
    filter: drop-shadow(0 0 14px rgba(0, 229, 255, 0.7));
}

.footer-logo-icon {
    width: 28px;
    height: 28px;
    vertical-align: middle;
    margin-right: 6px;
    filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.3));
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
}

.accent {
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--accent);
}

.btn-nav {
    background: linear-gradient(135deg, #00e5ff, #7c3aed, #ff3cac);
    background-size: 200% 200%;
    animation: btnGradientShift 3s ease infinite;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.4), 0 0 15px rgba(124, 58, 237, 0.3);
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.btn-nav:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 229, 255, 0.5), 0 0 25px rgba(124, 58, 237, 0.4);
}

@keyframes btnGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    text-align: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.2; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.4; transform: translateX(-50%) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.badge-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(48px, 8vw, 90px);
    font-weight: 900;
    letter-spacing: 6px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 40%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 20px transparent); }
    100% { filter: drop-shadow(0 0 40px var(--accent-glow)); }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-weight: 400;
}

.hero-tagline {
    font-size: 14px;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
    opacity: 0.85;
}

.hero-shields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    text-align: left;
    margin-bottom: 40px;
}

/* ============ HERO CTA BUTTON ============ */
.btn-hero {
    display: inline-block;
    background: linear-gradient(135deg, #00e5ff, #7c3aed, #ff3cac, #00e5ff);
    background-size: 300% 300%;
    animation: btnGradientShift 4s ease infinite, btnHeroPulse 2s ease-in-out infinite;
    color: #fff;
    padding: 20px 56px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 6px 35px rgba(0, 229, 255, 0.45), 0 0 60px rgba(124, 58, 237, 0.25), 0 0 20px rgba(255, 60, 172, 0.2);
    border: 1px solid rgba(0, 229, 255, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    50% { transform: translateX(100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

@keyframes btnHeroPulse {
    0%, 100% { box-shadow: 0 6px 35px rgba(0, 229, 255, 0.45), 0 0 60px rgba(124, 58, 237, 0.25), 0 0 20px rgba(255, 60, 172, 0.2); }
    50% { box-shadow: 0 8px 45px rgba(0, 229, 255, 0.6), 0 0 80px rgba(124, 58, 237, 0.35), 0 0 30px rgba(255, 60, 172, 0.3); }
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 50px rgba(0, 229, 255, 0.6), 0 0 100px rgba(124, 58, 237, 0.3), 0 0 40px rgba(255, 60, 172, 0.25);
}

.shield-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.shield-item:hover {
    border-color: rgba(0, 229, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.shield-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 229, 255, 0.1);
    color: #00e5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.shield-icon svg {
    width: 22px;
    height: 22px;
}

.shield-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 4px;
}

.shield-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============ SECTION COMMON ============ */
.section-title {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 50px;
    color: #fff;
}

/* ============ FEATURES ============ */
.features-section {
    position: relative;
    z-index: 1;
    padding: 100px 40px;
    background: rgba(6, 16, 28, 0.7);
    backdrop-filter: blur(2px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: rgba(0, 229, 255, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 40px var(--accent-glow);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-icon.icon-blue {
    background: rgba(96, 165, 250, 0.15);
    color: #60a5fa;
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.1);
}

.feature-icon.icon-green {
    background: rgba(52, 211, 153, 0.15);
    color: #34d399;
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.1);
}

.feature-icon.icon-yellow {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.1);
}

.feature-icon.icon-red {
    background: rgba(248, 113, 113, 0.15);
    color: #f87171;
    box-shadow: 0 0 20px rgba(248, 113, 113, 0.1);
}

.feature-icon.icon-purple {
    background: rgba(192, 132, 252, 0.15);
    color: #c084fc;
    box-shadow: 0 0 20px rgba(192, 132, 252, 0.1);
}

.feature-icon.icon-cyan {
    background: rgba(0, 229, 255, 0.15);
    color: #00e5ff;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============ DEVICES ============ */
.devices-section {
    position: relative;
    z-index: 1;
    padding: 100px 40px;
}

.devices-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto 30px;
}

.device-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 36px;
    text-align: center;
    min-width: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.device-card:hover,
.device-card.active {
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-4px);
}

.device-card.active {
    background: rgba(0, 229, 255, 0.05);
}

.device-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: transform 0.3s ease;
}

.device-card:hover .device-icon {
    transform: scale(1.1);
}

.device-icon.icon-blue {
    background: rgba(96, 165, 250, 0.15);
    color: #60a5fa;
}

.device-icon.icon-green {
    background: rgba(52, 211, 153, 0.15);
    color: #34d399;
}

.device-icon.icon-purple {
    background: rgba(192, 132, 252, 0.15);
    color: #c084fc;
}

.device-card h3 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.device-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.device-status {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.device-status.available {
    background: rgba(34, 197, 94, 0.15);
    color: var(--green);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.device-status.soon {
    background: rgba(250, 204, 21, 0.1);
    color: var(--gold);
    border: 1px solid rgba(250, 204, 21, 0.2);
}

.device-card.disabled {
    opacity: 0.35;
    pointer-events: auto;
    cursor: not-allowed;
    filter: grayscale(0.4);
    position: relative;
}

.device-card.disabled::after {
    content: '🚫';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: var(--radius);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.device-card.disabled:hover::after {
    opacity: 1;
}

.device-card.disabled:hover {
    opacity: 0.5;
}

.device-card.disabled .device-status.soon {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border-color: rgba(255, 255, 255, 0.1);
}

.devices-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 50px;
}

/* ============ PRICING ============ */

/* --- Produto Único Container --- */
.product-single {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px solid rgba(0, 229, 255, 0.15);
    border-radius: var(--radius);
    overflow: visible;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 60px rgba(0, 229, 255, 0.05);
}

/* === BADGE 50% OFF === */
.discount-badge-circle {
    position: absolute;
    top: -28px;
    right: -28px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444, #f59e0b, #ef4444);
    background-size: 200% 200%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: 3px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 25px rgba(239, 68, 68, 0.6), 0 0 40px rgba(245, 158, 11, 0.4), 0 0 80px rgba(239, 68, 68, 0.2);
    animation: discountWobble 3s ease-in-out infinite, discountPulse 2s ease-in-out infinite, discountGradient 3s ease infinite;
    transform: rotate(-12deg);
}

.discount-badge-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.discount-badge-sub {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 3px;
    line-height: 1;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Badge inline 50% OFF */
.discount-inline-badge {
    display: inline-block;
    background: #ef4444;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 6px;
    margin-left: 10px;
    letter-spacing: 1.5px;
    vertical-align: middle;
    animation: inlineBadgePulse 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
}

@keyframes inlineBadgePulse {
    0%, 100% { box-shadow: 0 0 15px rgba(239, 68, 68, 0.5); }
    50% { box-shadow: 0 0 25px rgba(239, 68, 68, 0.8), 0 0 40px rgba(239, 68, 68, 0.3); }
}

.limited-time-badge {
    display: inline-block;
    color: #fbbf24;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.8px;
    vertical-align: middle;
    margin-left: 4px;
    animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes discountWobble {
    0%, 100% { transform: rotate(-12deg) scale(1); }
    25% { transform: rotate(-6deg) scale(1.08); }
    50% { transform: rotate(-15deg) scale(1); }
    75% { transform: rotate(-9deg) scale(1.05); }
}

@keyframes discountPulse {
    0%, 100% { box-shadow: 0 4px 25px rgba(239, 68, 68, 0.6), 0 0 40px rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 6px 35px rgba(239, 68, 68, 0.8), 0 0 60px rgba(245, 158, 11, 0.6), 0 0 100px rgba(239, 68, 68, 0.3); }
}

@keyframes discountGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.product-header {
    text-align: center;
    padding: 40px 30px 30px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(0, 229, 255, 0.04) 0%, transparent 100%);
}

.product-badge-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    border-radius: var(--radius-sm);
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}

.product-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.product-antiban {
    display: inline-block;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--green);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.product-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 12px;
}

/* --- Seletor de Planos (estilo cards horizontais) --- */
.plans-selector {
    padding: 30px 30px 36px;
}

.plans-selector-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 24px;
}

.plans-row {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.plan-card {
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 20px 22px;
    padding-top: 28px;
    min-width: 110px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-card-badge {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.2;
    padding: 4px;
    border-radius: 50%;
    text-transform: uppercase;
    z-index: 2;
    transform: rotate(12deg);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: rotate(12deg) scale(1); }
    50% { transform: rotate(12deg) scale(1.1); }
}

.plan-card-badge.popular {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: #fff;
    border: 2px solid rgba(59, 130, 246, 0.6);
    box-shadow: 0 2px 15px rgba(59, 130, 246, 0.5), 0 0 25px rgba(6, 182, 212, 0.3);
}

.plan-card-badge.best {
    background: linear-gradient(135deg, #f59e0b, #ef4444, #f59e0b);
    background-size: 200% 200%;
    animation: badgePulse 2s ease-in-out infinite, badgeGoldShift 3s ease infinite;
    color: #fff;
    border: 2px solid rgba(245, 158, 11, 0.6);
    box-shadow: 0 2px 15px rgba(245, 158, 11, 0.5), 0 0 25px rgba(239, 68, 68, 0.3);
}

@keyframes badgeGoldShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.plan-card:hover {
    background: rgba(0, 229, 255, 0.05);
    border-color: rgba(0, 229, 255, 0.2);
    transform: translateY(-3px);
}

.plan-card.active {
    border-color: var(--accent);
    background: rgba(0, 229, 255, 0.06);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
}

.plan-card-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.plan-card.active .plan-card-name {
    color: var(--accent);
}

.plan-card-price {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
}

.plan-card.active .plan-card-price {
    color: #fff;
}

.plan-card-duration {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* --- Detalhes do Plano Selecionado --- */
.plan-details {
    text-align: center;
    padding: 30px 20px 0;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.plan-details-pricing {
    margin-bottom: 20px;
}

.plan-details-old {
    display: block;
    font-size: 16px;
    color: var(--red);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.plan-details-new {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--accent);
    text-shadow: 0 0 40px var(--accent-glow);
    letter-spacing: 2px;
}

.plan-details-info {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
}

.plan-details-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}

.plan-badge-tag {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.plan-badge-tag.antiban {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--red);
}

.plan-badge-tag.discount {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--green);
}

.btn-comprar {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--accent), #0090b0);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 229, 255, 0.3);
}

.btn-comprar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(0, 229, 255, 0.45);
}

/* --- Modal Checkout PIX --- */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-overlay.open {
    display: flex;
}

.modal-box {
    position: relative;
    background: linear-gradient(145deg, #12121a, #1a1a2e);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: var(--radius);
    padding: 40px 36px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 0 80px rgba(0, 229, 255, 0.1);
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 22px;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.modal-close:hover {
    color: var(--red);
}

.modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 8px;
    text-align: center;
}

.modal-plan-info {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.modal-plan-info strong {
    color: var(--accent);
}

/* --- Formulário Checkout --- */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.form-group input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 15px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-group input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.btn-gerar-pix {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    margin-top: 6px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(34, 197, 94, 0.3);
}

.btn-gerar-pix:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.4);
}

.pix-icon {
    font-size: 20px;
}

/* --- PIX Resultado --- */
.pix-result {
    text-align: center;
}

.pix-success-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.pix-result h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: var(--green);
    margin-bottom: 12px;
}

.pix-instructions {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.pix-code-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pix-code-box code {
    flex: 1;
    font-size: 12px;
    color: var(--accent);
    word-break: break-all;
    text-align: left;
}

.btn-copy-pix {
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-copy-pix:hover {
    background: rgba(0, 229, 255, 0.2);
}

.pix-timer {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 10px;
}

.pix-note {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============ RESPONSIVE — Produto Único ============ */
@media (max-width: 768px) {
    .product-title {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .product-header {
        padding: 24px 16px 20px;
    }

    .plans-selector {
        padding: 20px 12px 28px;
    }

    .plans-row {
        flex-wrap: wrap;
    }

    .plan-card {
        min-width: calc(33% - 10px);
        flex: 1 1 calc(33% - 10px);
        padding: 16px 12px;
    }

    .plan-card-price {
        font-size: 22px;
    }
}

@media (max-width: 400px) {
    .plan-card {
        min-width: calc(50% - 8px);
        flex: 1 1 calc(50% - 8px);
    }
}

.price-row {
    margin-bottom: 24px;
}

.price-old {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 10px;
}

.price-new {
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
    text-shadow: 0 0 30px var(--accent-glow);
}

.lifetime .price-new {
    color: var(--gold);
    text-shadow: 0 0 30px rgba(250, 204, 21, 0.3);
}

.plan-modules {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.module-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    color: var(--text-muted);
}

.module-tag.highlight {
    background: rgba(0, 229, 255, 0.06);
    border-color: rgba(0, 229, 255, 0.15);
    color: var(--accent);
}

.lifetime .module-tag.highlight {
    background: rgba(250, 204, 21, 0.06);
    border-color: rgba(250, 204, 21, 0.15);
    color: var(--gold);
}

.price-features {
    list-style: none;
    text-align: left;
    max-width: 260px;
    margin: 0 auto 16px;
}

.price-features li {
    padding: 6px 0;
    font-size: 13px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.price-features li:last-child {
    border-bottom: none;
}

/* ============ STOCK / SCARCITY ============ */
.stock-info {
    margin-bottom: 16px;
    text-align: center;
}

.stock-bar {
    display: block;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    margin-bottom: 8px;
    overflow: hidden;
}

.stock-fill {
    display: block;
    height: 100%;
    background: var(--green);
    border-radius: 3px;
    transition: width 1s ease;
}

.stock-bar.warn .stock-fill {
    background: linear-gradient(90deg, #f59e0b, var(--red));
}

.stock-bar.critical .stock-fill {
    background: var(--red);
    animation: stockPulse 1.5s ease-in-out infinite;
}

@keyframes stockPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.stock-text {
    font-size: 12px;
    color: var(--text-muted);
}

.stock-text.urgent {
    color: var(--red);
    font-weight: 600;
}

.sold-count {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 16px;
    opacity: 0.8;
}

.btn-buy {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    padding: 14px 0;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--accent-glow);
    width: 100%;
    text-align: center;
}

.lifetime .btn-buy {
    background: linear-gradient(135deg, var(--gold), #f59e0b);
    color: #000;
    box-shadow: 0 4px 20px rgba(250, 204, 21, 0.3);
}

.btn-buy:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px var(--accent-glow), 0 0 60px var(--accent-glow);
}

.price-secure {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ============ COUNTER ============ */
.counter-section {
    position: relative;
    z-index: 1;
    padding: 80px 40px;
    background: rgba(6, 16, 28, 0.7);
    backdrop-filter: blur(2px);
}

.counter-box {
    text-align: center;
}

.counter-number {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 900;
    color: var(--accent);
    text-shadow: 0 0 40px var(--accent-glow);
}

.counter-number::after {
    content: '';
}

.counter-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-top: 8px;
    color: #fff;
}

.counter-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ============ REVIEWS ============ */
.reviews-section {
    position: relative;
    z-index: 1;
    padding: 100px 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 28px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: rgba(0, 229, 255, 0.15);
    transform: translateY(-3px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.review-header strong {
    display: block;
    font-size: 15px;
    color: #fff;
}

.stars {
    display: flex;
    gap: 3px;
    font-size: 0;
    line-height: 0;
}

.stars svg {
    width: 14px;
    height: 14px;
}

.review-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
}

/* ============ FAQ ============ */
.faq-section {
    position: relative;
    z-index: 1;
    padding: 100px 40px;
    background: rgba(6, 16, 28, 0.7);
    backdrop-filter: blur(2px);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: rgba(0, 229, 255, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-toggle {
    font-size: 22px;
    color: var(--accent);
    transition: transform 0.3s;
    font-weight: 300;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============ RESELLER ============ */
.reseller-section {
    position: relative;
    z-index: 1;
    padding: 80px 40px;
}

.reseller-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(145deg, rgba(250, 204, 21, 0.05), rgba(124, 58, 237, 0.05));
    border: 1px solid rgba(250, 204, 21, 0.15);
    border-radius: var(--radius);
    padding: 50px 40px;
    backdrop-filter: blur(10px);
}

.reseller-box h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin-bottom: 14px;
    color: var(--gold);
}

.reseller-box p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.btn-reseller {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #f59e0b);
    color: #000;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(250, 204, 21, 0.3);
}

.btn-reseller:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(250, 204, 21, 0.4);
}

/* ============ TERMOS DE USO (Collapsible no Footer) ============ */
.btn-terms-toggle {
    display: inline-block;
    margin-top: 14px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 11px;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s;
    font-family: 'Inter', sans-serif;
    opacity: 0.6;
}

.btn-terms-toggle:hover {
    color: var(--accent);
}

.terms-collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.terms-collapsible.open {
    max-height: 2000px;
}

.terms-collapsible .terms-content {
    padding: 24px 0 0;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.terms-collapsible .terms-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
}

.terms-collapsible .terms-intro {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.terms-collapsible h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    margin: 20px 0 6px;
}

.terms-collapsible p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 6px;
}

.terms-collapsible ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 8px;
}

.terms-collapsible ul li {
    font-size: 12px;
    color: var(--text-muted);
    padding: 3px 0 3px 16px;
    position: relative;
    line-height: 1.6;
}

.terms-collapsible ul li::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: var(--accent);
}

.terms-collapsible strong {
    color: var(--text);
}

.terms-collapsible .terms-declaration {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 12px;
    color: var(--text);
}

/* ============ FOOTER ============ */
.footer {
    position: relative;
    z-index: 1;
    padding: 60px 40px 30px;
    background: rgba(4, 8, 16, 0.9);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #fff;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: #fff;
}

.footer-col p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.footer-link {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============ URGÊNCIA / CLICKBAIT ============ */
.hero-urgency {
    font-size: 15px;
    color: #fbbf24;
    margin-bottom: 20px;
    animation: urgencyPulse 2s ease-in-out infinite;
    letter-spacing: 0.3px;
}

@keyframes urgencyPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.plan-urgency-text {
    text-align: center;
    font-size: 14px;
    color: #f87171;
    margin: 10px 0 0;
    animation: urgencyPulse 2.5s ease-in-out infinite;
}

.btn-comprar-sub {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
    letter-spacing: 0.3px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .navbar {
        padding: 14px 20px;
    }

    .nav-links {
        display: none;
    }

    .btn-nav {
        font-size: 11px;
        padding: 8px 16px;
    }

    .hero {
        padding: 100px 16px 50px;
    }

    .hero-shields {
        grid-template-columns: 1fr;
    }

    .features-section,
    .devices-section,
    .reviews-section,
    .faq-section,
    .reseller-section,
    .counter-section,
    .footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .devices-grid {
        flex-direction: column;
        align-items: center;
    }

    .device-card {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        letter-spacing: 3px;
    }

    .price-new {
        font-size: 34px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
