/* ============================= */
/* 📱 RESPONSIVE MOBILE */
/* ============================= */

@media (max-width: 768px) {

    /* Contenedor general */
    .container {
        gap: 15px;
    }

    /* Header */
    .menu ul {
        flex-direction: column;
        align-items: center;
    }

    .logo img {
        height: 50px;
    }

    /* Sección transformacion */
    .transformacion-section .contenido {
        flex-direction: column;
        gap: 30px;
    }

    .transformacion-section .imagen img {
        width: 100%;
        max-width: 100%;
        border-radius: 20px;
    }

    .transformacion-section h2 {
        font-size: 2rem;
        text-align: center;
    }

    .transformacion-section .redes-sociales {
        gap: 30px;
    }

    /* Info section */
    .info-container {
        flex-direction: column;
        align-items: center;
    }

    .separator {
        display: none;
    }

    /* Solutions */
    .content {
        flex-direction: column;
        text-align: center;
    }

    .solutions-section {
        padding: 40px 20px;
    }

    .text-content h2 {
        font-size: 30px;
    }

    /* Imagen sección */
    .imagen-container img {
        height: auto;
    }

    /* Testimonios */
    .contenedor-cuadros {
        flex-direction: column;
        align-items: center;
    }

    /* Logros */
    .contenido,
    .contenido1 {
        flex-direction: column;
    }

    .imagen-logros img,
    .imagen-logros1 img {
        width: 100%;
        height: auto;
    }

    .fila {
        flex-direction: column;
    }

    /* Empresas */
    .seccion-empresas {
        flex-direction: column;
    }

    .contenido-izquierdo,
    .contenido-derecho {
        width: 100%;
    }

    .empresa {
        width: 100%;
    }

    /* Hero */
    .hero-content h1 {
        font-size: 2rem;
        text-align: center;
    }

    .hero-content p {
        text-align: center;
    }

    .feature-box {
        width: 100%;
    }

    /* Steps */
    .step {
        width: 100%;
    }

    /* Cards */
    .cards,
    .cards1 {
        flex-direction: column;
        align-items: center;
    }

    .card,
    .card1 {
        width: 90%;
    }

    /* Contacto */
    .titulo-contacto4 {
        font-size: 2rem;
        text-align: center;
    }

    /* FAQ */
    .faq-section {
        flex-direction: column;
    }

}

/* ============================= */
/* 🍔 MENU HAMBURGUESA */
/* ============================= */

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        margin-right: 5vw;
    }

    .menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;

        max-height: 0;
        overflow: hidden;

        transition: max-height 0.3s ease;
    }

    .menu.active {
        max-height: 300px;
    }

    .menu ul {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }

    .menu ul li {
        width: 100%;
        text-align: center;
    }

    .menu ul li a {
        display: block;
        width: 100%;
    }

    /* Ocultar ingreso o moverlo */
    .ingreso {
        display: none;
    }
    
    .hero{
      top : 25vw ;
      padding : 30vw 20px;
    }
}
