/* ================================
   Estilos del Navbar
   ================================ */
/*
   .navbar {
    background-image: url("../img/fondo_menu.png");
    background-size: cover;
    background-repeat: repeat-x;
    background-color: #000;
    color: #fff;
    padding: 20px;
    position: relative;
    z-index: 1000;
}
*/

.navbar {
    background-image: url("../img/fondo_menu.png");
    background-size: 100%;
    background-repeat: repeat-x;
    background-color: #000;
    color: #fff;
    padding: 20px 20px;
    position: relative;
    z-index: 1000;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#topbanner {
    background-color:#000;
	font-family: 'GloberRegular', sans-serif;
	color: #ffeb3b;
	font-size: 12px;
	margin: 0;
	padding: 0 20px;
}

/* Logotipo */
.logo img {
    height: 50px;
}

/* Icono de Menú */
.menu-icon {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.menu-text {
    margin-right: 12px;
    font-size: 1.1rem;
    font-family: 'GloberRegular', sans-serif;
}

.menu-icon i {
    font-size: 1.5rem;
}

/* Opciones del Menú */
.menu-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    transition: max-height 0.5s ease-out, opacity 0.5s ease;
    opacity: 0;
    z-index: 999;
}

/* Mostrar el menú */
.menu-options.show {
    max-height: 500px;
    opacity: 1;
    transition: max-height 0.5s ease-in, opacity 0.5s ease;
}

/* Enlaces del Menú */
.menu-options a {
    color: #fff;
    padding: 15px 20px;
    text-decoration: none;
    border-top: 1px solid #555;
    display: flex;
    align-items: center;
    transition: background-color 0.3s, color 0.3s;
    font-family: 'GloberRegular', sans-serif;
}

.menu-options a i {
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Efecto al pasar el cursor */
.menu-options a:hover {
    background-color: #555;
    color: #ffcc00;
}

/* Efecto al seleccionar */
.menu-options a:active,
.menu-options a.active {
    background-color: #666;
    color: #ffcc00;
}

/* Responsividad */
@media (min-width: 768px) {
    .menu-options {
        position: static;
        max-height: none;
        display: flex !important;
        flex-direction: row;
        background-color: transparent;
        opacity: 1;
    }

    .menu-options a {
        border: none;
        padding: 10px 15px;
        color: #fff;
    }

    .menu-icon {
        display: none;
    }
}

/* Fondo semitransparente cuando el menú está abierto */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    z-index: 998;
}

.menu-overlay.show {
    opacity: 1;
    visibility: visible;
}