
/* ========================================= */
/* MENÚ MÓVIL - VERSIÓN FUNCIONAL */
/* ========================================= */

/* Desktop menu visible por defecto */
.desktop-only {
    display: flex;
}

/* Elementos móviles ocultos por defecto */
.mobile-menu-btn {
    display: none;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 99999;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.mobile-menu-close {
    background: #f0f0f0;
    border: 2px solid #d0d0d0;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-menu-links {
    padding: 20px 0;
}

.mobile-menu-links a {
    display: block;
    padding: 18px 24px;
    color: #1d1d1f;
    text-decoration: none;
    font-size: 17px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-links .mobile-cta {
    margin: 20px 24px;
    padding: 16px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white !important;
    text-align: center;
    border-radius: 10px;
    font-weight: 700;
    border: none !important;
}

.mobile-menu-links .mobile-whatsapp {
    margin: 0 24px 24px;
    padding: 16px;
    background: #25D366 !important;
    color: white !important;
    text-align: center;
    border-radius: 10px;
    font-weight: 700;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none !important;
}

/* ========================================= */
/* RESPONSIVE MÓVIL < 768px */
/* ========================================= */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: block !important;
        background: transparent;
        border: none;
        padding: 10px;
        cursor: pointer;
    }

    nav {
        position: fixed !important;
        top: 0;
        width: 100%;
        z-index: 1000;
    }

    .nav-content {
        padding: 0 15px !important;
        height: 60px !important;
    }

    .logo img {
        height: 45px !important;
    }

    .hero {
        padding: 80px 15px 40px !important;
    }

    section {
        padding: 40px 15px !important;
    }

    h1 {
        font-size: 28px !important;
    }

    h2 {
        font-size: 24px !important;
    }

    [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    .mockup-stats {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .macbook-mockup {
        max-height: 300px !important;
        overflow: hidden !important;
    }

    img {
        max-width: 100% !important;
        height: auto !important;
    }
}
