/* NAVBAR PRINCIPAL */
/* CONTENEDOR PRINCIPAL DEL HEADER */
.navbar-container {
    width: 100%;
}

/* AGRUPACIÓN INTERNA DE ELEMENTOS */
.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 50px;
}

/* LOGO */
.navbar-logo img {
    height: 24px;
}

/* MENÚ DESKTOP */
.navbar-menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

.navbar-menu a {
    text-decoration: none;
    color: white;
    font-weight: 600;
}

/* BOTONES PERSONALIZADOS */
.btn-red {
    background-color: var(--color-danger);
    color: white;
    padding: 3px 13px;
    border-radius: 5px;
    font-weight: bold;

}

.btn-green {
    background-color: var(--progress-color);
    color: white;
    padding: 3px 13px;
    border-radius: 5px;
    font-weight: bold;
}

/* BOTÓN SIEMPRE VISIBLE ENTRE LOGO Y HAMBURGUESA */



/* ÍCONO MENÚ HAMBURGUESA */
.navbar-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
    color: white;
    z-index: 1000;
}

/* VERSIÓN MÓVIL */
@media (max-width: 768px) {

    .navbar-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--color-background-1);
        z-index: 999;
        padding: 2rem;
        align-items: center;
        justify-content: center;
    }

    .navbar-menu.show {
        display: flex;
    }

    .navbar-toggle {
        display: block;
    }
}

/* VERSIÓN DESKTOP */
@media (min-width: 769px) {
    .navbar-toggle {
        display: none;
    }
}

@media (min-width: 769px) {
    .navbar-auth-btn {
        order: 3;
    }
}



