/* ==========================================
   X2 COPA 2026 - STYLE PREMIUM METÁLICO
   ========================================== */

/* RESET E VARIÁVEIS */
:root {
    --gold: #FFD700;
    --gold-dark: #B8860B;
    --gold-light: #FFF3C9;
    --black-metal: #0A0A0A;
    --black-soft: #1A1A1A;
    --green-brasil: #009739;
    --yellow-brasil: #FFCC29;
    --blue-brasil: #002776;
    --pix-green: #36C791;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--black-metal);
    color: white;
    overflow-x: hidden;
}

/* ========== SPLASH SCREEN ÉPICA ========== */
.splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at 50% 30%, #0a3a2a, #000000);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: splashEnter 1s ease;
}

.stadium-ambient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/stadium-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    animation: zoomSlow 20s infinite alternate;
}

.confetti-dourado {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 215, 0, 0.1) 0px,
        rgba(255, 215, 0, 0.1) 10px,
        transparent 10px,
        transparent 20px
    );
    pointer-events: none;
    animation: confettiMove 15s linear infinite;
}

.splash-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 600px;
    padding: 40px 20px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(20px);
    border-radius: 60px;
    border: 3px solid var(--gold);
    box-shadow: 0 0 50px rgba(255,215,0,0.4);
    transform: scale(0.9);
    animation: pulseSplash 2s infinite alternate;
}

.trophy-3d i {
    font-size: 100px;
    color: var(--gold);
    filter: drop-shadow(0 0 30px gold);
    animation: rotateTrophy 3s infinite;
}

.parabens {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    animation: blinkText 1.5s infinite;
}

.voce-ganhou {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 10px 0;
}

.camisa-gratis {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, #FFF, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px gold;
    line-height: 1.2;
    margin: 20px 0;
}

.btn-splash {
    background: linear-gradient(145deg, #FFD700, #FFA500);
    border: none;
    border-radius: 60px;
    padding: 25px 50px;
    font-size: 28px;
    font-weight: 900;
    color: black;
    margin-top: 40px;
    cursor: pointer;
    box-shadow: 0 20px 0 #7a5f00, 0 0 50px gold;
    transition: 0.1s;
    animation: shake 1s infinite;
}

.btn-splash:active {
    transform: translateY(15px);
    box-shadow: 0 5px 0 #7a5f00, 0 0 50px gold;
}

/* ========== HEADER METÁLICO ========== */
.header-metallic {
    background: linear-gradient(180deg, #000000, #0a0a0a);
    border-bottom: 3px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.marquee-top {
    background: var(--gold);
    color: black;
    padding: 8px 0;
    overflow: hidden;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-x2 {
    font-family: 'Archivo Black', sans-serif;
}

.logo-x2 .x2 {
    font-size: 48px;
    background: linear-gradient(145deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px gold;
}

.counter-emergency {
    background: black;
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.counter-digits {
    font-size: 48px;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 20px gold;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: radial-gradient(circle at 20% 30%, rgba(255,215,0,0.1) 0%, transparent 50%);
}

.hero-title .big {
    font-size: 72px;
    font-weight: 900;
    display: block;
    line-height: 1.2;
}

.hero-title .highlight {
    font-size: 48px;
    color: var(--gold);
    text-shadow: 0 0 30px gold;
    display: block;
    margin-top: 20px;
}

.btn-gold-pulse {
    background: linear-gradient(145deg, #FFD700, #FFA500);
    border: none;
    border-radius: 60px;
    padding: 25px 50px;
    font-size: 24px;
    font-weight: 900;
    color: black;
    cursor: pointer;
    box-shadow: 0 0 50px gold;
    animation: pulse 1.5s infinite;
    transition: 0.2s;
}

/* ========== ANIMAÇÕES ========== */
@keyframes splashEnter {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes pulseSplash {
    from { box-shadow: 0 0 30px rgba(255,215,0,0.5); }
    to { box-shadow: 0 0 80px rgba(255,215,0,0.8); }
}

@keyframes rotateTrophy {
    0% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
    100% { transform: rotate(-10deg); }
}

@keyframes blinkText {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes zoomSlow {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

/* ========== RESPONSIVO ========== */
@media (max-width: 768px) {
    .hero-title .big {
        font-size: 48px;
    }
    
    .camisa-gratis {
        font-size: 48px;
    }
    
    .btn-splash {
        font-size: 22px;
        padding: 20px 30px;
    }
}