/* ============================================================
   LATINIA · Barra superior Webinar Eficiencia
   Banda promocional a ancho completo · fondo #FC5D38 · texto/botón #0B303A
============================================================ */

.lb-topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 20px;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 24px;
    background: #FC5D38;
    color: #0B303A;
    text-decoration: none;
    line-height: 1.3;
    transition: background 0.2s;
}
.lb-topbar:hover {
    background: #e04c2a;
}

.lb-topbar-text {
    font-size: 15px;
    font-weight: 400;
    color: #0B303A;
    text-align: center;
}
.lb-topbar-text strong {
    font-weight: 700;
}

.lb-topbar-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 22px;
    background: #0B303A;
    color: #FFFFFF;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.lb-topbar:hover .lb-topbar-btn {
    opacity: 0.9;
}

/* Móvil: apilar texto y botón */
@media (max-width: 600px) {
    .lb-topbar {
        flex-direction: column;
        gap: 10px;
        padding: 12px 16px;
    }
    .lb-topbar-text {
        font-size: 14px;
    }
}
