/* Estilos para o countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.countdown-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Animação para os números */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.countdown-number.pulse {
    animation: pulse 0.5s ease-in-out;
}

/* Mensagem de evento iniciado */
.event-started-message {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 30px;
    font-weight: 500;
    display: inline-block;
    animation: fadeIn 1s ease;
}

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

/* Informação de data do evento */
.event-date-info {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 8px 16px;
    margin-top: 20px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    gap: 8px;
    transition: all 0.3s ease;
}

.event-date-info i {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.event-date-info:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 767px) {
    .countdown {
        gap: 10px;
    }
    
    .countdown-number {
        font-size: 2rem;
        width: 60px;
        height: 60px;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .countdown-number {
        font-size: 1.5rem;
        width: 50px;
        height: 50px;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
}
