/* Barra superior */
.top-bar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    z-index: 1050;
    color: #fff;
    /* Fondo oscuro semitransparente */
    background: rgba(0, 0, 0, 0.6);
    /* Efecto blur */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* Opcional: línea clara para separar */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff; /* texto blanco para contraste */
}

/* Sección izquierda */
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-logo {
    height: 60px;
}

.top-bar-texts {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
}

.top-bar-item {
    max-width: 115px;
    white-space: break-spaces;
}

.top-bar-separator {
    border: 1px solid white;
    height: auto;
    align-self: stretch;
}

/* Sección derecha */
.top-bar-right {
    font-size: 2rem;
}
