/* =========================================
   BANNER CONTADOR VIVE POTOSÍ (ESTILO FINAL CORREGIDO)
   ========================================= */

.vp-contador-banner {
    width: 100%;
    max-width: 1100px;
    margin: 20px auto;
    border-radius: 20px; /* Tu preferencia actual */
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    overflow: hidden;
    color: white;
}

.vp-wrapper {
    display: flex;
    align-items: center;
    justify-content: center; 
    padding: 0 30px;
    height: 95px; 
}

/* --- LOGOS --- */
.vp-logo-evento, .vp-logo-partner {
    height: auto;
    max-height: 55px;
    object-fit: contain;
    flex-shrink: 0;
}

/* --- SECCIÓN CENTRAL --- */
.vp-section-textos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-grow: 1;
}

/* --- BLOQUE DE DESCRIPCIÓN (EL QUE TENÍA EL ERROR) --- */
.vp-desc-wrap {
    display: flex;
    flex-direction: column;
    align-items: center; /* ESTO centra el título y el subtítulo entre sí */
    text-align: center;   /* ESTO asegura que el texto largo no se vea raro */
    justify-content: center;
    min-width: 0;
}

.vp-desc-evento {
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
}

.vp-mas-info {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block; /* Asegura que ocupe su propia línea centradito */
}

/* --- CRONÓMETRO --- */
.vp-seccion-bloques {
    display: flex;
    gap: 8px;
}

.vp-bloque-tiempo {
    background-color: white;
    border-radius: 6px;
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vp-numero-tiempo {
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1;
}

.vp-etiqueta-tiempo {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 1px;
}

/* Divisores laterales */
.vp-divisor {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
    margin: 0 15px;
}

@media (max-width: 900px) {
    .vp-wrapper { height: auto; flex-direction: column; padding: 15px; border-radius: 20px; }
    .vp-section-textos { flex-direction: column; gap: 15px; margin: 15px 0; }
    .vp-divisor { display: none; }
    .vp-desc-evento { font-size: 1.2rem; }
}