/* countdown-redirect.css - Estilos reutilizables */
.countdown-redirect {
    text-align: center;
    padding: 20px;
    margin: 15px 0;
}

.countdown-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.countdown-item {
    background: #2c3e50;
    color: white;
    padding: 12px 8px;
    border-radius: 5px;
    min-width: 70px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.countdown-number {
    font-size: 24px;
    font-weight: bold;
    display: block;
    line-height: 1;
}

.countdown-label {
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 5px;
    opacity: 0.9;
}

.urgency-note {
    font-style: italic;
    color: #e74c3c;
    margin-top: 10px;
    font-weight: 500;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 480px) {
    .countdown-timer {
        gap: 5px;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 10px 5px;
    }
    
    .countdown-number {
        font-size: 20px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
}