/* Variáveis para fácil manutenção de cores e fontes */
:root {
    --primary-color: #007BFF; /* Azul Crianet (ajuste se necessário) */
    --primary-hover-color: #0056b3;
    --text-color: #f0f0f0;
    --dark-bg: #121212;
    --font-family: 'Poppins', sans-serif;
}

/* Reset básico e configurações globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--dark-bg);
    display: flex;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 4rem 1rem; /* Adiciona espaçamento vertical e um pouco horizontal */
}

/* Fundo com gradiente animado sutil */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0a192f, #1e3a5f, #0a192f);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    z-index: -1;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Container principal com animação de entrada */
.container {
    width: 100%; /* <<-- ADICIONE ESTA LINHA */
    max-width: 700px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos da Logo */
.logo-container img {
    max-width: 300px; /* Ajuste o tamanho conforme necessário */
    height: auto;
    margin-bottom: 2rem;
}

/* Estilos do conteúdo principal */
.content h1 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.content p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Botão de Call-to-Action */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: var(--primary-hover-color);
    transform: translateY(-3px);
}

/* Rodapé e Ícones Sociais */
.social-footer {
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
}

.social-footer p {
    margin-bottom: 1rem;
    font-weight: 400;
}

.social-icons a {
    margin: 0 10px;
    display: inline-block;
}

.social-icons img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
}

/* Responsividade para telas menores */
@media (max-width: 600px) {
    .container {
        padding: 1.5rem;
    }

    .content h1 {
        font-size: 1.8rem;
    }

    .content p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}
/* Estilos para o cronômetro de exclusão */
.countdown-container {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 1.2rem;
    background: rgba(229, 57, 53, 0.1); /* Fundo vermelho bem sutil */
    border: 1px solid rgba(229, 57, 53, 0.3);
    border-radius: 8px;
}

.countdown-label {
    font-size: 0.9rem;
    font-weight: 400;
    color: #ffcdd2; /* Tom de vermelho claro para o texto */
    margin: 0 0 0.5rem 0; /* Remove a margem padrão do <p> */
}

#countdown-timer {
    font-size: 2rem;
    font-weight: 700;
    color: #ef9a9a; /* Tom de vermelho mais forte */
    letter-spacing: 2px;
}
/* Estilo para a data de exclusão */
#deletion-date {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
    margin-top: 1rem;
    color: #ef9a9a; /* Mesmo tom de vermelho do cronômetro */
}