:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --success-color: #06d6a0;
    --danger-color: #ef476f;
    --text-color: #ffffff;
    --font-title: 'Bebas Neue', cursive;
    --font-body: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: relative;
    padding: 20px 0;
    z-index: 10;
}

.logo {
    font-family: var(--font-title);
    font-size: 2.5rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
}

/* Hero Section */
.main-content {
    position: relative;
    z-index: 100;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    transform-style: preserve-3d;
}

/* Efeito de vidro fosco moderno */
.hero {
    text-align: center;
    width: 90%;
    max-width: 800px;
    margin: 1rem auto;
    padding: 2.5rem 1.5rem;
    background: rgba(10, 15, 30, 0.95) !important;
    border-radius: 15px;
    backdrop-filter: blur(15px) saturate(180%) contrast(120%) !important;
    -webkit-backdrop-filter: blur(15px) saturate(180%) contrast(120%) !important;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 1001 !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 
                inset 0 1px 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateZ(20px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 150, 0.6), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 0 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin: 0 0 2.5rem 0;
    font-weight: 400;
    line-height: 1.5;
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        rgba(255, 255, 255, 0.8), 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: 0.8s;
    z-index: -1;
}

.btn:hover:before {
    left: 100%;
}

/* Estilos para o botão 'Não quero continuar' */
#continueClt {
    background: #ff6b6b !important;
    border: none !important;
    color: white !important;
    font-weight: normal !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    padding: 12px 25px !important;
    margin: 0 !important;
    border-radius: 4px !important;
    cursor: pointer;
    text-decoration: none !important;
    display: inline-block;
    text-align: center;
    transition: background-color 0.2s ease !important;
    box-shadow: none !important;
    text-shadow: none !important;
    opacity: 0.9;
    font-size: 0.95em;
}

#continueClt:hover {
    background: #ff5252 !important;
    opacity: 1;
    text-decoration: none !important;
}

/* Selo de garantia */
.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 2rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.guarantee-badge i {
    color: #4CAF50;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

/* Efeito de brilho no canto */
.corner-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 255, 150, 0.1), transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: cornerGlow 10s ease-in-out infinite alternate;
}

@keyframes cornerGlow {
    0% { transform: rotate(0deg); opacity: 0.3; }
    100% { transform: rotate(10deg); opacity: 0.5; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 150, 0.6), transparent);
    animation: shine 3s infinite;
}

/* Background Effects */
.stadium-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    z-index: -1;
}

.gold-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(255, 193, 7, 0.08) 0%, transparent 25%),
        radial-gradient(ellipse at center, rgba(255, 215, 0, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    animation: particleGlow 10s ease-in-out infinite alternate;
}

/* Efeito de poeira estelar */
.stardust {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.02) 0%, transparent 20%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.02) 0%, transparent 20%);
    pointer-events: none;
    z-index: 1;
    animation: stardustMove 20s linear infinite;
}

@keyframes stardustMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

@keyframes particleGlow {
    0% { opacity: 0.5; transform: scale(0.95) rotate(0deg); }
    100% { opacity: 0.8; transform: scale(1.05) rotate(2deg); }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1571066811602-716837d0de11?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
    opacity: 0.1;
}

.showcase-3d {
    position: fixed;
    width: 100%;
    height: 100%;
    perspective: 1000px;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    transform-style: preserve-3d;
}

.floating-jerseys {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.jersey {
    position: absolute;
    width: 150px;
    height: 150px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    animation: float 15s ease-in-out infinite;
    animation-delay: var(--delay);
}

.jersey:nth-child(1) { background-image: url('https://via.placeholder.com/150/FF0000/FFFFFF?text=JERSEY1'); }
.jersey:nth-child(2) { background-image: url('https://via.placeholder.com/150/0000FF/FFFFFF?text=JERSEY2'); }
.jersey:nth-child(3) { background-image: url('https://via.placeholder.com/150/FFFF00/000000?text=JERSEY3'); }
.jersey:nth-child(4) { background-image: url('https://via.placeholder.com/150/00FF00/000000?text=JERSEY4'); }
.jersey:nth-child(5) { background-image: url('https://via.placeholder.com/150/FF00FF/FFFFFF?text=JERSEY5'); }

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translate(calc(var(--x) - 10%), calc(var(--y) - 10%)) rotate(0deg);
    }
    50% {
        transform: translate(calc(var(--x) + 10%), calc(var(--y) + 10%)) rotate(5deg);
    }
    100% {
        transform: translate(calc(var(--x) - 10%), calc(var(--y) - 10%)) rotate(0deg);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(6, 214, 160, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(6, 214, 160, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(6, 214, 160, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 0;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .hero {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 2rem 1rem !important;
        border-radius: 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-content {
        padding: 0 !important;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
        margin-bottom: 1.2rem !important;
        line-height: 1.3 !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 2rem !important;
        line-height: 1.5 !important;
    }
    
    .cta-buttons {
        padding: 0 0.5rem !important;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
        font-size: 1rem;
    }
    
    .jersey {
        width: 100px;
        height: 100px;
    }
}
