/* Estilos generales del menú móvil */
.mobile-menu-container {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.mobile-menu {
    background: #fff;
    width: 90%;
    max-width: 320px;
    height: 100%;
    padding: 1rem;
    overflow-y: auto;
    position: relative;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    position: absolute;
    top: 10px;
    right: 15px;
    color: #333;
}

/* Botón hamburguesa */
.hamburger-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #333;
    cursor: pointer;
}

/* Navegación */
.mobile-nav ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.mobile-nav a {
    display: block;
    padding: 0.7rem 0;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1rem;
    border-bottom: 1px solid #eee;
}

.mobile-nav li.has-submenu>a {
    position: relative;
}

.mobile-nav li.has-submenu>a i.fa-angle-down {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/* Submenú oculto por defecto */
.submenu {
    display: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
}

.submenu a {
    text-transform: none;
    font-weight: normal;
    font-size: 0.95rem;
    border-bottom: none;
    padding: 0.5rem 0;
    color: #666;
}

/* Estilo similar al cbp-column-title */
.mobile-nav a.cbp-column-title {
    color: #333 !important;
    font-size: 1rem;
    font-style: normal;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: none;
}

.mobile-menu-container.open {
    display: block;
}

.submenu.open {
    display: block;
}

.fa-angle-down {
    transition: transform 0.3s ease;
}

.fa-angle-down.rotated {
    transform: rotate(180deg);
}

.mobile-menu {
    background: #000;
    /* Fondo negro */
    color: #fff;
}

.mobile-nav a {
    color: #fff!important;
    /* Letras blancas en links principales */
    border-bottom: 1px solid #333;
    /* Línea sutil */
}

.mobile-nav a:hover {
    color: #c2bc29;
    /* Color acento al pasar el mouse (igual que el desktop) */
}

.mobile-nav .submenu a {
    color: #ccc;
    /* Letras más claras para submenú */
}

.mobile-nav .submenu a:hover {
    color: #c2bc29;
}
.mobile-menu-container  .close-btn {
    color: #fff!important;
}
.mobile-menu-container {
    background: rgba(0, 0, 0, 0.85);
    /* Fondo overlay oscuro */
}

#contenedor-menu-desktop .elementor-column-wrap.elementor-element-populated {
    padding: 0px !important;
}

#contenedor-menu-desktop a.nav-link {
        padding: 20px;
}
#contenedor-menu-desktop .container.iqitmegamenu-submenu-container a.nav-link {
    padding: 0px!important;
}