/* ESTILOS DEL MENÚ NUEVO RADECO - Hamburguesa y Mobile Menu */

.radeco-hamburger-btn {
    position: fixed;
    right: 16px;
    top: 16px;
    z-index: 99998;
    background: transparent;
    border: none;
    width: 42px;
    height: 42px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s ease;
    padding: 0;
    /* OCULTO EN DESKTOP */
    display: none;
}

/* SOLO MOSTRAR EN MOBILE */
@media (max-width: 991px) {
    .radeco-hamburger-btn {
        display: flex;
    }
}

.radeco-hamburger-btn:hover {
    transform: scale(1.05);
}

.radeco-hamburger-btn span {
    width: 22px;
    height: 2.5px;
    background: #1a1a1a;
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

/* Menú Mobile */
.radeco-mobile-menu-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    pointer-events: none;
}

.radeco-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.radeco-mobile-menu-wrapper.open .radeco-menu-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.radeco-mobile-menu-panel {
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 99999;
    pointer-events: auto;
}

.radeco-mobile-menu-wrapper.open .radeco-mobile-menu-panel {
    right: 0;
}

/* Header del menú */
.radeco-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.radeco-menu-logo {
    height: 60px;
    width: auto;
}

.radeco-menu-close {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #1a3d5d;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.radeco-menu-close:hover {
    color: #3b66b5;
}

/* Buscador */
.radeco-menu-search {
    position: relative;
    padding: 15px;
}

.radeco-search-input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 2px solid #3b66b5;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.radeco-search-input:focus {
    border-color: #1a3d5d;
}

.radeco-search-icon {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    color: #3b66b5;
    pointer-events: none;
}

.radeco-search-results {
    position: absolute;
    top: 100%;
    left: 15px;
    right: 15px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    margin-top: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 100000;
}

.radeco-search-results.show {
    display: block;
}

.radeco-search-result-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    color: #1a3d5d;
    display: block;
}

.radeco-search-result-item:hover {
    background: #f5f5f5;
}

/* Navegación */
.radeco-menu-nav {
    padding: 20px 0;
}

.radeco-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.radeco-menu-nav > ul > li {
    border-bottom: 1px solid #f0f0f0;
}

.radeco-menu-nav a {
    display: block;
    padding: 15px 20px;
    color: #1a3d5d;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.radeco-menu-nav a:hover {
    background: #f0f7ff;
    color: #3b66b5;
    padding-left: 25px;
}

/* Submenú */
.radeco-submenu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f9f9f9;
}

.radeco-submenu.open {
    display: block;
}

.radeco-submenu li {
    border: none;
}

.radeco-submenu a {
    padding-left: 40px;
    font-size: 14px;
    color: #4b5563;
}

.radeco-submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.radeco-submenu-toggle i {
    transition: transform 0.3s;
    font-size: 12px;
}

.radeco-submenu-toggle.open i {
    transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 480px) {
    .radeco-mobile-menu-panel {
        max-width: 85%;
    }
}
