/* Módulo Banner Promocional con Contador - Theme Specific */
.banner-promocional-contador {
    background: linear-gradient(135deg, #19043d  0%, #370892  100%);
    padding: 15px 0;
    border-top: 3px solid #370892;
    border-bottom: 3px solid #370892;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.banner-text {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.banner-label {
    font-size: 24px;
    font-weight: bold;
    color: #FFFFFF;
    margin-right: 10px;
}

.contador-tiempo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 15px;
}

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

.numero {
    font-size: 28px;
    font-weight: bold;
    color: #000000;
    line-height: 1;
    background: #02fd36;
    padding: 5px 8px;
    border-radius: 5px;
    min-width: 45px;
    display: inline-block;
}

.unidad {
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 2px;
    text-transform: uppercase;
    padding: 1px 3px;
    border-radius: 3px;
}

.separador {
    font-size: 24px;
    font-weight: bold;
    color: #FFFFFF;
    margin: 0 2px;
    padding-bottom: 20px;
}

.banner-mensaje {
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
    margin-left: 10px;
}

.texto-nombre {
    color: #02fd36;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-text {
        flex-direction: column;
        gap: 10px;
    }
    
    .banner-label {
        font-size: 18px;
        margin-right: 0;
    }
    
    .numero {
        font-size: 20px;
        min-width: 35px;
        padding: 3px 5px;
    }
    
    .unidad {
        font-size: 9px;
    }
    
    .separador {
        font-size: 18px;
    }
    
    .banner-mensaje {
        font-size: 14px;
        margin-left: 0;
    }
    
    .contador-tiempo {
        gap: 5px;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .banner-promocional-contador {
        padding: 10px 0;
    }
    
    .numero {
        font-size: 16px;
        min-width: 30px;
    }
    
    .banner-mensaje {
        font-size: 12px;
    }
    
    .banner-label {
        font-size: 16px;
    }
}

/* 
PERSONALIZACIÓN POR PROYECTO:
Para cambiar los colores del banner en diferentes proyectos, 
modifica las siguientes variables:

1. Gradiente de fondo: 
   background: linear-gradient(135deg, #COLOR1 0%, #COLOR2 100%);

2. Bordes:
   border-top: 3px solid #COLOR_BORDE;
   border-bottom: 3px solid #COLOR_BORDE;

3. Colores de texto:
   color: #COLOR_TEXTO;

4. Fondo de números:
   background: rgba(255,255,255,0.3); // Ajustar opacidad según colores
*/
