/* Variáveis CSS - Mesmas do site principal */
:root {
    --bg-primary: #2e2e2e;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #242424;
    --text-primary: #f9f9f9;
    --text-secondary: #e5e5e5;
    --text-muted: rgba(249, 249, 249, 0.7);
    --accent: #f9f9f9;
    --glass-bg: rgba(249, 249, 249, 0.08);
    --glass-border: rgba(249, 249, 249, 0.15);
    --shadow-color: rgba(255, 255, 255, 0.1);
    --border-color: rgba(249, 249, 249, 0.2);
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Hero Section - Gradiente */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, 
        rgba(46, 46, 46, 0.8), 
        rgba(46, 46, 46, 0.85), 
        rgba(46, 46, 46, 0.9)
    );
    overflow: hidden;
}

/* Container Principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Título Principal */
.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 8vw, 9rem);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.8s ease-out;
    text-shadow: 0 0 20px rgba(249, 249, 249, 0.3);
}

.hero-title .glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(249, 249, 249, 0.3),
                     0 0 30px rgba(249, 249, 249, 0.2),
                     0 0 40px rgba(249, 249, 249, 0.1);
    }
    to {
        text-shadow: 0 0 30px rgba(249, 249, 249, 0.5),
                     0 0 40px rgba(249, 249, 249, 0.3),
                     0 0 50px rgba(249, 249, 249, 0.2);
    }
}

/* Subtítulo */
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(249, 249, 249, 0.7);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

/* Botões */
.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.8s ease-out 0.4s both;
}

@media (min-width: 640px) {
    .buttons-container {
        flex-direction: row;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background-color: rgba(249, 249, 249, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 249, 249, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.btn-secondary:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 249, 249, 0.2);
}

.btn i {
    margin-left: 0.75rem;
    transition: transform 0.3s ease;
}

.btn-secondary i {
    margin-left: 0;
    margin-right: 0.75rem;
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-secondary:hover i {
    transform: translateX(-4px);
}

/* Meteors Animation */
.meteors-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.meteor {
    position: absolute;
    background: linear-gradient(45deg, transparent, transparent, rgba(249, 249, 249, 0.4), transparent);
    border-radius: 2px;
    opacity: 0;
    animation: meteor-fall 3s linear infinite;
    transform: rotate(45deg);
}

.meteor:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 4px;
    height: 2px;
    background: #f9f9f9;
    border-radius: 50%;
    box-shadow: 0 0 6px 2px rgba(249, 249, 249, 0.6);
}

.meteor-1 {
    width: 300px;
    height: 2px;
    top: -50px;
    right: -300px;
    animation-duration: 4s;
    animation-delay: 0s;
}

.meteor-2 {
    width: 200px;
    height: 1px;
    top: 10%;
    right: -200px;
    animation-duration: 3.5s;
    animation-delay: 1s;
}

.meteor-3 {
    width: 250px;
    height: 1.5px;
    top: 30%;
    right: -250px;
    animation-duration: 4.5s;
    animation-delay: 2s;
}

.meteor-4 {
    width: 180px;
    height: 1px;
    top: 50%;
    right: -180px;
    animation-duration: 3s;
    animation-delay: 1.5s;
}

.meteor-5 {
    width: 220px;
    height: 1.5px;
    top: 20%;
    right: -220px;
    animation-duration: 4s;
    animation-delay: 0.5s;
}

@keyframes meteor-fall {
    0% {
        opacity: 0;
        transform: translateX(0) translateY(0) rotate(-200deg);
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: translateX(-100vw) translateY(100vh) rotate(-200deg);
    }
}

/* Stars/Particles Animation */
.stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.star {
    position: absolute;
    background: #f9f9f9;
    border-radius: 50%;
    opacity: 0;
    animation: twinkle 4s linear infinite;
}

.star-small {
    width: 1px;
    height: 1px;
    box-shadow: 0 0 6px 1px rgba(249, 249, 249, 0.3);
}

.star-medium {
    width: 2px;
    height: 2px;
    box-shadow: 0 0 8px 2px rgba(249, 249, 249, 0.4);
}

.star-large {
    width: 3px;
    height: 3px;
    box-shadow: 0 0 10px 3px rgba(249, 249, 249, 0.5);
}

/* Posições das Estrelas */
.star-pos-1 { top: 10%; left: 15%; }
.star-pos-2 { top: 20%; left: 80%; }
.star-pos-3 { top: 30%; left: 25%; }
.star-pos-4 { top: 40%; left: 70%; }
.star-pos-5 { top: 50%; left: 10%; }
.star-pos-6 { top: 15%; left: 60%; }
.star-pos-7 { top: 25%; left: 45%; }
.star-pos-8 { top: 35%; left: 85%; }
.star-pos-9 { top: 45%; left: 30%; }
.star-pos-10 { top: 55%; left: 75%; }
.star-pos-11 { top: 60%; left: 20%; }
.star-pos-12 { top: 65%; left: 55%; }
.star-pos-13 { top: 70%; left: 40%; }
.star-pos-14 { top: 75%; left: 90%; }
.star-pos-15 { top: 80%; left: 15%; }
.star-pos-16 { top: 12%; left: 50%; }
.star-pos-17 { top: 22%; left: 35%; }
.star-pos-18 { top: 32%; left: 65%; }
.star-pos-19 { top: 42%; left: 5%; }
.star-pos-20 { top: 52%; left: 95%; }

/* Animações de brilho das estrelas */
.star-1 { animation: twinkle 3s linear infinite; animation-delay: 0s; }
.star-2 { animation: twinkle-slow 5s linear infinite; animation-delay: 1s; }
.star-3 { animation: twinkle-fast 2s linear infinite; animation-delay: 0.5s; }
.star-4 { animation: twinkle 4s linear infinite; animation-delay: 2s; }
.star-5 { animation: twinkle-slow 6s linear infinite; animation-delay: 1.5s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.1; transform: scale(0.8); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

@keyframes twinkle-slow {
    0%, 100% { opacity: 0.05; transform: scale(0.9); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes twinkle-fast {
    0%, 100% { opacity: 0.15; transform: scale(0.7); }
    50% { opacity: 0.9; transform: scale(1.3); }
}

/* Animações de entrada */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

