/*
 * ARQUITETURA DE ESTILO: Power Secury - Página Brevemente (Final com Font Awesome)
 * Cores: #0A2342 (Azul Marinho), #C0C0C0 (Prata), #62ecbc (Ciano Tecnológico - Acento)
 */

/* 1. Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

/* 2. Estilo Global do Corpo: Fundo Sólido */
body, html {
    height: 100%;
    font-family: 'Open Sans', sans-serif; 
    color: #FFFFFF; 
    background-color: #0A2342; 
    display: flex; 
    justify-content: center;
    align-items: center;
    overflow-y: auto; 
    min-height: 100vh;
}

/* 3. Container Principal */
.container {
    text-align: center;
    padding: 20px;
    max-width: 900px; 
    width: 100%;
}

/* 4. Estilo do Logotipo (Glow atualizado) */
.logo-area {
    margin-bottom: 40px;
}

.logo {
    width: 150px; 
    height: auto;
    filter: drop-shadow(0 0 12px rgba(98, 236, 188, 0.6)); 
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05); 
}

/* 5. Conteúdo Principal e Títulos */
.content h1 {
    font-family: 'Montserrat', sans-serif; 
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #FFFFFF; 
    text-shadow: 2px 2px 4px #000000;
}

.content h2 {
    font-size: 1.2em;
    font-weight: 300;
    margin-bottom: 40px;
    color: #C0C0C0; 
}

/* 6. Contagem Regressiva */
.countdown {
    display: flex;
    justify-content: center;
    gap: 30px; 
    margin-bottom: 50px;
}

.time-block {
    background-color: rgba(0, 0, 0, 0.3); 
    padding: 10px 15px;
    border-radius: 4px; 
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 3px solid #62ecbc; 
    min-width: 90px;
    transition: background-color 0.3s;
}

.time-block span {
    display: block;
    font-size: 3.0em; 
    font-weight: 700;
    color: #62ecbc; 
    line-height: 1.1;
    margin-bottom: 5px;
}

/* 7. Formulário de Newsletter e Mensagens */
.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form p {
    margin-bottom: 15px;
    font-weight: 300;
}

.newsletter-form form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.newsletter-form input[type="email"] {
    padding: 12px;
    border: 1px solid #62ecbc; 
    border-radius: 5px;
    width: 300px;
    max-width: 100%;
    background-color: #FFFFFF;
    color: #0A2342;
    font-size: 1em;
}

/* 8. Botão (CTA) */
.btn {
    padding: 12px 25px;
    background-color: #62ecbc; 
    color: #0A2342; 
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease; 
}

.btn:hover {
    background-color: #4cd3a7; 
    transform: translateY(-1px); 
}

/* Estilo para Mensagens de Feedback */
.form-message {
    margin-top: 15px;
    font-weight: bold;
}
.form-message.success {
    color: #62ecbc; 
}
.form-message.error {
    color: #FF0000;
}

/* 9. Rodapé (Contatos e Links) */
.footer {
    margin-top: 60px;
    font-size: 0.85em; 
    opacity: 0.9;
    text-shadow: 1px 1px 2px #000000;
    width: 100%;
    max-width: 900px;
    padding: 0 10px;
}

.footer p {
    margin-top: 5px;
}

.contact-info, .social-links {
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Separador */
.separator {
    color: #C0C0C0; 
    margin: 0 5px;
}

/* Ícone (Font Awesome) */
.icon {
    margin-right: 5px; 
    color: inherit; 
}

.contact-info a, .contact-info span {
    color: #C0C0C0; 
    text-decoration: none;
}

.social-links a {
    color: #62ecbc; 
    text-decoration: none;
    font-weight: bold;
    /* Espaçamento ajustado para três ícones */
    margin: 0 8px; 
    transition: color 0.3s;
}

.social-links a:hover {
    color: #FFFFFF;
}

.footer a {
    color: #C0C0C0; 
    text-decoration: none;
    transition: color 0.3s;
}
.footer a:hover {
    color: #62ecbc; 
}

/* 10. Responsividade (Media Query) */
@media (max-width: 600px) {
    .content h1 {
        font-size: 1.8em; 
    }

    .countdown {
        flex-wrap: wrap; 
        gap: 10px;
    }

    .time-block {
        min-width: 60px;
        padding: 8px 10px;
    }

    .time-block span {
        font-size: 2.0em;
    }

    .newsletter-form form {
        flex-direction: column; 
    }

    .newsletter-form input[type="email"], .btn {
        width: 100%;
        margin-bottom: 5px; 
    }

    .contact-info, .social-links {
        display: flex;
        flex-direction: column; 
        gap: 5px;
    }

    .contact-info a, .contact-info span, .social-links a {
        margin: 0; 
    }

    .separator {
        display: none; 
    }
}