:root {
    --institucional: #028DA4;
    --institucional-oscuro: #212529; /* Más cercano al color del texto en la imagen */
}

.navbar {
    background-color: #f8f9fa; /* fondo blanco real */
    border-bottom: 3px solid var(--institucional);
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* sutil sombra como en la imagen */
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.4rem;
    color: var(--institucional-oscuro);
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 40px;
    margin-right: 10px;
}

.navbar-brand span:first-child {
    color: var(--institucional);
    margin-right: 5px;
    font-weight: bold;
}

.navbar-brand span:last-child {
    color: var(--institucional-oscuro);
}

.navbar-toggler {
    border: none;
    background-color: transparent;
}

.navbar-toggler-icon {
    filter: invert(1);
}

.navbar-nav {
    align-items: center;
}

.nav-link {
    color: var(--institucional-oscuro) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--institucional) !important;
}

/* Botón salir */
.btn-salir {
    background-color: var(--institucional);
    color: white;
    font-weight: bold;
    border: none;
    padding: 6px 20px;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.btn-salir:hover {
    background-color: #026c7a;
}

/* Responsive */
@media (max-width: 992px) {
    .navbar .btn-salir {
        width: 100%;
        margin-top: 10px;
    }

    form.d-flex.align-items-center.ms-3 {
        margin-left: 0 !important;
        width: 100%;
        justify-content: center;
    }
}

.dropdown-menu {
    min-width: 200px;
    font-size: 14px;
}

.dropdown-item:hover {
    background-color: #f1f1f1;
    color: var(--institucional);
}
