/* ===== CINTA DE MARCA PERSONAL ===== */
.branding-bar {
    width: 100%;
    height: 25px;
    /* Más fina que la de estados */
    background: #ffffff;
    /* Gris casi blanco, muy limpio */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.branding-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.branding-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: #2c3238;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.branding-highlight {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #2d4f95;
    /* Tu azul corporativo */
    text-transform: uppercase;
    letter-spacing: 3px;
}

.branding-divider {
    width: 1px;
    height: 10px;
    background: #dee2e6;
}

/* Animación sutil de opacidad */
@keyframes branding-fade {

    0%,
    100% {
        opacity: 0.4;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(-1px);
    }
}

/* Inversión de color opcional (para que combine con el ticker superior) */
.ticker-section.scrolled+.branding-bar {
    background: #2d4f95;
    border-color: rgba(255, 255, 255, 0.1);
}

.ticker-section.scrolled+.branding-bar .branding-text {
    color: rgba(255, 255, 255, 0.7);
}

.ticker-section.scrolled+.branding-bar .branding-highlight {
    color: #ffffff;
}