/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #03426b, #0d7dc8);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    overflow: hidden;
}

.container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1.5s ease-in-out;
    max-width: 500px; /* Largura reduzida */
    width: 90%; /* Responsivo */
}

.logo-container {
    margin-bottom: 1.5rem;
}

.logo {
    max-width: 150px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

h1 {
    font-size: 2.2rem; /* Texto maior */
    margin-bottom: 1rem;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

p {
    font-size: 1.1rem; /* Texto maior */
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.time {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    width: 80px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.time:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.3);
}

.time span {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.time span:last-child {
    font-size: 0.8rem;
    font-weight: normal;
    opacity: 0.8;
}

.contact-button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.contact-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

/* Modal de Contato */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 90%;
    width: 400px;
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
    transition: opacity 0.3s ease;
}

.close-modal:hover {
    opacity: 0.8;
}

.modal h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.modal-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-contact-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: opacity 0.3s ease;
}

.modal-contact-link:hover {
    opacity: 0.8;
}

.modal-contact-link i {
    font-size: 1.2rem;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsividade */
@media (max-width: 600px) {
    .container {
        padding: 1.5rem;
        max-width: 90%; /* Ajuste para telas menores */
    }

    .logo {
        max-width: 120px;
    }

    h1 {
        font-size: 1.8rem; /* Texto maior em telas menores */
    }

    p {
        font-size: 1rem; /* Texto maior em telas menores */
    }

    .time {
        width: 70px;
        padding: 0.8rem;
    }

    .time span {
        font-size: 1.2rem;
    }

    .time span:last-child {
        font-size: 0.7rem;
    }

    .contact-button {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }

    .modal-content {
        width: 90%;
    }
}