:root {
    --gold: #c5a059;
    --purple: #1a0b2e;
    --white: #f4f4f4;
    --glass: rgba(255, 255, 255, 0.05);
}

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

body {
    background-color: #050505;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background */
.bg-image {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?q=80&w=1920') no-repeat center center/cover;
    filter: brightness(0.2) grayscale(0.5);
    z-index: -2;
}

.glass-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, transparent 0%, #050505 100%);
    z-index: -1;
}

/* Conteúdo Principal */
.content { text-align: center; padding: 20px; z-index: 1; width: 100%; }

.main-logo {
    width: 150px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.3));
}

h1 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

p { font-weight: 200; color: #aaa; margin-bottom: 40px; font-size: 0.9rem; }

/* Botões Mobile Friendly */
.action-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav-link {
    background: none; border: none; color: var(--white);
    font-family: 'Montserrat'; text-transform: uppercase;
    letter-spacing: 3px; cursor: pointer; opacity: 0.7; transition: 0.3s;
    font-size: 0.8rem;
}

.nav-link:hover { opacity: 1; color: var(--gold); }

/* MODAL GLASSMORPHISM */
.modal {
    display: none; position: fixed; top: 0; left: 0;
    width: 100%; height: 100%; background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px); z-index: 100;
}

.modal-content {
    background: var(--glass);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px; width: 90%; max-width: 400px;
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px; text-align: center;
}

.close-btn {
    position: absolute; top: 15px; right: 20px;
    font-size: 1.5rem; cursor: pointer; color: var(--gold);
}

#modalTitle { font-family: 'Cinzel'; margin-bottom: 10px; color: var(--gold); }

input[type="email"] {
    width: 100%; padding: 12px; margin: 20px 0;
    background: rgba(255,255,255,0.05); border: 1px solid #333;
    color: white; border-radius: 5px; text-align: center;
}

.submit-btn {
    width: 100%; padding: 12px; background: var(--gold);
    border: none; color: #000; font-weight: 600;
    text-transform: uppercase; cursor: pointer; border-radius: 5px;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    h1 { font-size: 1.4rem; letter-spacing: 3px; }
    .action-grid { flex-direction: column; gap: 15px; }
    .divider { display: none; }
}

/* Animações */
.reveal-text { animation: fadeInUp 1s forwards; opacity: 0; }
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }