/* em-breve.css */

body {
    background-color: #0a0a0f;
    color: #eee;
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    /* REMOVEMOS a fumaça daqui, o vídeo vai assumir */
}

.hero-video-wrapper {
    position: fixed; /* Fixo para cobrir a tela inteira */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Joga ele para trás de todo o conteúdo */
}

.hero-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay para garantir a legibilidade */
.hero-video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 15, 0.6);
}


/* --- O CORAÇÃO DA PÁGINA --- */
.container {
    text-align: center;
    padding: 20px;
    margin-bottom: 10%;
}

/* --- A ESTRELA DO SHOW: O NEON PULSANTE --- */
.neon-magico {
    max-width: 90%;
    width: 450px;
    height: auto;
    /* A mágica acontece aqui! Chamando nossa animação 'pulsar' */
    animation: pulsar 2.5s infinite ease-in-out;
}

.tagline {
    font-size: 1.2rem;
    color: #00eaff; /* Azul ciano neon */
    text-shadow: 
        0 0 5px #00eaff,
        0 0 10px #00eaff;
    margin-top: 2rem;
    letter-spacing: 1px;
}

/* --- FORMULÁRIO VIP --- */
.subscribe-form {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 10px; /* Espacinho entre o input e o botão */
}

.email-input {
    background: transparent;
    border: 2px solid rgba(0, 234, 255, 0.5);
    border-radius: 5px;
    padding: 15px;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    width: 250px;
    transition: all 0.3s ease; /* Transição suave */
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.email-input:focus {
    outline: none;
    border-color: #00eaff; /* Borda acende quando clica! */
    box-shadow: 0 0 15px rgba(0, 234, 255, 0.7);
}

.submit-btn {
    background-color: #ff4ecb; /* Rosa neon */
    border: none;
    border-radius: 5px;
    padding: 15px 25px;
    color: #0a0a0f;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    /* O botão brilha mais forte no hover! */
    transform: scale(1.05);
    box-shadow: 
        0 0 10px #ff4ecb,
        0 0 20px #ff4ecb,
        0 0 30px #ff4ecb;
}

/* --- RODAPÉ --- */
footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.domain-name {
    color: #a156ff; /* Roxo elétrico */
    font-size: 1rem;
    text-shadow: 0 0 5px #a156ff;
}

/* --- AS ANIMAÇÕES (KEYFRAMES) --- */
@keyframes pulsar {
    0%, 100% {
        filter: drop-shadow(0 0 8px #ff4ecb);
    }
    50% {
        filter: drop-shadow(0 0 25px #ff4ecb); /* Brilho máximo! */
    }
}

/* --- AJUSTES PARA CELULAR (RESPONSIVO) --- */
@media (max-width: 600px) {
    .neon-magico {
        width: 300px;
    }

    .tagline {
        font-size: 1rem;
    }

    .subscribe-form {
        flex-direction: column; /* Um embaixo do outro no celular */
        align-items: center;
    }

    .email-input {
        width: 80%;
    }
}

/* --- O MODAL MAIS MASSA DA CIDADE --- */
.modal-container {
    display: none; /* Começa escondido */
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
    justify-content: center;
    align-items: center;
    padding: 20px; /* Garante um espacinho nas bordas */
}

.modal-content {
    background-color: #1a1a2e;
    margin: 15% auto;
    padding: 30px;
    border: 2px solid;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    animation: slideIn 0.4s ease-out;
}

/* Estilo para modal de SUCESSO */
.modal-content.success {
    border-color: #00eaff;
    box-shadow: 0 0 20px #00eaff;
}

/* Estilo para modal de AVISO (e-mail repetido) */
.modal-content.warning {
    border-color: #ffe85e;
    box-shadow: 0 0 20px #ffe85e;
}

.close-btn {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover {
    color: #fff;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideIn { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }