/* Estilos por defecto (desktop) */
.desktop-image {
    display: block;
}

.mobile-image {
    display: none;
}

/* Media query para dispositivos móviles */
@media (max-width: 768px) {
    .desktop-image {
        display: none;
    }

    .mobile-image {
        display: block;
    }

    /* Ajustes adicionales para móviles */
    .hero {
        height: 100vh;
    }

    .hero-content {
        bottom: 20%;
        left: 10%;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }

    /* Ajustes para otras secciones en móviles */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .aumenta-content {
        flex-direction: column;
    }

    .aumenta-video video {
        width: 100%;
        height: auto;
    }

    .resultados-content {
        flex-direction: column;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contacto-content {
        flex-direction: column;
    }
}

/* Media query para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Ajustes para tablets */
    .hero-content {
        bottom: 25%;
        left: 12%;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Estilos para el menú de hamburguesa */
.hamburger-menu {
    display: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: 0.4s;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-list.active {
        display: block;
    }

    .nav-list li {
        margin: 10px 0;
    }

    .nav-list li a {
        display: block;
        padding: 10px 20px;
    }

    /* Animación para el menú de hamburguesa */
    .hamburger-menu.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}/* Estilos para el menú de hamburguesa */
.hamburger-menu {
    display: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: 0.4s;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(15, 15, 15, 0.315);
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-list.active {
        display: block;
    }

    .nav-list li {
        margin: 10px 0;
    }

    .nav-list li a {
        display: block;
        padding: 10px 20px;
    }

    
    /* ... (estilos existentes) ... */
    
    /* Media query para pantallas grandes (1440px - 2079px) */
    @media (min-width: 1440px) and (max-width: 2079px) {
        .container {
            max-width: 1400px;
        }
    
        .hero-content {
            bottom: 35%;
            left: 15%;
        }
    
        .cta-button {
            font-size: 1.2rem;
            padding: 1rem 2rem;
        }
    
        .section-title {
            font-size: 3rem;
        }
    
        .section-description {
            font-size: 1.4rem;
        }
    
        .services-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
    
        .service-card {
            padding: 2.5rem;
        }
    
        .aumenta-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
    
        .aumenta-text {
            flex: 1;
            padding-right: 3rem;
        }
    
        .aumenta-video {
            flex: 1;
        }
    
        .aumenta-video video {
            width: 100%;
            height: auto;
        }
    
        .resultados-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
    
        .resultados-text {
            flex: 1;
            padding-right: 3rem;
        }
    
        .resultados-image {
            flex: 1;
        }
    
        .clients-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
    
        .contacto-content {
            display: flex;
            justify-content: space-between;
        }
    
        .contacto-form {
            flex: 1;
            padding-right: 3rem;
        }
    
        .contacto-map {
            flex: 1;
        }
    }
    
    /* Media query para pantallas extra grandes (2080px y superiores) */
    @media (min-width: 2080px) {
        .container {
            max-width: 1800px;
        }
    
        .hero-content {
            bottom: 40%;
            left: 20%;
        }
    
        .cta-button {
            font-size: 1.4rem;
            padding: 1.2rem 2.4rem;
        }
    
        .section-title {
            font-size: 3.5rem;
        }
    
        .section-description {
            font-size: 1.6rem;
        }
    
        .services-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }
    
        .service-card {
            padding: 3rem;
        }
    
        .aumenta-text, .resultados-text {
            padding-right: 4rem;
        }
    
        .clients-grid {
            grid-template-columns: repeat(5, 1fr);
            gap: 3rem;
        }
    
        .contacto-form {
            padding-right: 4rem;
        }
    }
    
    /* ... (estilos existentes del menú hamburguesa) ... */

    /* Animación para el menú de hamburguesa */
    .hamburger-menu.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

