.countdown-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #0c4e36 0%, #28a745 100%);
    color: white;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    margin-bottom: 30px;
}

.countdown-header {
    text-align: center;
    margin-bottom: 30px;
}

.countdown-header h2 {
    font-size: 22px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

.countdown-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.countdown-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    margin: 0 15px 20px;
    min-width: 120px;
}

.countdown-value {
    font-size: 24px;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 15px 10px;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.countdown-value::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.countdown-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.event-details {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.event-details p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Animação de pulso para os valores do countdown */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.countdown-value.seconds {
    animation: pulse 1s infinite;
}

/* Responsividade */
@media (max-width: 768px) {
    .countdown-item {
        min-width: 90px;
        margin: 0 10px 15px;
    }

    .countdown-value {
        font-size: 24px;
        padding: 10px 5px;
    }

    .countdown-header h2 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .countdown-item {
        min-width: 70px;
        margin: 0 5px 10px;
    }

    .countdown-value {
        font-size: 22px;
    }
}
