
/* Menú móvil desplegable */
.mobileMenuDropdown {
    display: none;
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 59, 92, 0.1);
    z-index: 999;
    max-height: calc(100vh - 85px);
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobileMenuDropdown.active {
    transform: translateY(0);
}

.mobileNav {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.mobileNav li {
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
}

.mobileNav li:last-child {
    border-bottom: none;
}

.mobileNav a {
    color: #003B5C;
    font-size: 16px;
    font-weight: 600;
    display: block;
    transition: all 0.3s ease;
}

.mobileNav li.active a,
.mobileNav a:hover {
    color: #82C341;
    padding-left: 10px;
}

.mobileSocial,
.mobileContact {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.mobileSocial h4,
.mobileContact h4 {
    color: #003B5C;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.socialIcons {
    display: flex;
    gap: 15px;
}

.socialIcons a {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #003B5C;
    transition: all 0.3s ease;
}

.socialIcons a:hover {
    background: #82C341;
    color: white;
    transform: translateY(-2px);
}

.mobileContact p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

.mobileContact p i {
    color: #82C341;
    margin-right: 8px;
}

.ctaDonate {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #FFC72C 0%, #82C341 100%);
    color: white;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ctaDonate:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(130, 195, 65, 0.3);
}

.ctaDonate i {
    margin-right: 8px;
}

/* Overlay para cerrar menú */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Ajustes responsive */
@media (max-width: 1024px) {
    .optionsMenu {
        display: none;
    }

    .btnMob {
        display: flex;
    }

    .mobileMenuDropdown {
        display: block;
    }

    .logo svg {
        width: 150px;
        height: 50px;
    }

    .ctaAyuda {
        padding: 10px 20px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .logo svg text {
        display: none;
    }

    .logo svg {
        width: 50px;
    }

    .cMenu {
        padding: 15px 15px;
    }
}

/* Animación del botón hamburguesa */
.btnMob.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.btnMob.active span:nth-child(2) {
    opacity: 0;
}

.btnMob.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Header scroll effect */
.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 59, 92, 0.15);
    padding: 10px 0;
}

/* Skip to content (Accesibilidad) */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #003B5C;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}
