/* Estilos gerais */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #007BFF;
    color: #2E2E2E;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    overflow: hidden;
    position: relative;
}

/* Efeito de fundo com gradiente e animação */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #007BFF, #003F7D, #007BFF);
    background-size: 200% 200%;
    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 {
    background-color: #F2F4F7;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    width: 90%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

h1 {
    font-size: 2.5em;
    color: #2E2E2E;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.timer-box {
    background-color: #007BFF;
    padding: 20px;
    border-radius: 10px;
    width: 100px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.timer-box:hover {
    transform: translateY(-5px);
}

.timer-box span {
    display: block;
    font-size: 2.5em;
    font-weight: 600;
    color: #e0e0e0;
}

.timer-box label {
    font-size: 0.9em;
    text-transform: uppercase;
    color: #b0c4de;
}

.contact-info {
    font-size: 0.9em;
    color: #a0a0a0;
    line-height: 1.4;
}

.featured {
    color: #FF7A3D;
}

/* Responsividade */
@media (max-width: 600px) {
    body {
        overflow: auto;
        scroll-behavior: smooth;
    }

    h1 {
        font-size: 2em;
    }

    .timer {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .timer-box {
        width: 150px;
    }
}