/* PANTALLA DE CARGA */
.video-bg {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
}

#video-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: black;
    z-index: 99999;
    overflow: hidden;
}

#video-loader video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#video-loader.fade-out {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

body.loading main {
    visibility: hidden;
}

/* Código del video de Background */
#background-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

#background-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fin Código del video de Background */

/* HERO */
.hero_pagina {
    color: #ffffff;
    width: 100%;
    margin-inline: auto;
    font-family: "Montserrat", sans-serif;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: row;
    gap: 6rem;
}

.hero_titulo {
    font-size: 4.2rem;
    font-weight: 300;
}

.hero_titulo b {
    font-weight: 550;
}

.hero_texto {
    line-height: 1.2;
    text-align: right;
    font-size: 1.4rem;
    font-weight: 500;
    font-family: "Space Grotesk", sans-serif;
}

.hero_texto span {
    display: inline-block;
    background: linear-gradient(to right,
            rgb(255, 255, 255) 50%,
            rgb(37, 37, 37) 50%);
    background-size: 200% 100%;
    background-position-x: 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

/* SLIDER SECTION */
.slider_titulo h3 {
    color: #0cc0df;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
}

.slider_wrapper {
    width: 100%;
    max-width: 940px;
    overflow: hidden;
    margin: 0 auto;
    padding-inline: 0px;
    padding-block: 35px;
    position: relative;
    margin-top: -30px;
}

.slider_track {
    display: flex;
    transition: transform 0.8s ease-in-out;
    will-change: transform;
}

.slider_opiniones {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 95%;
    margin: auto;
}

.botones_responsive {
    display: none;
}

.slider_opiniones img {
    width: 50px;
}

.card_opinion {
    flex: 0 0 auto;
    width: calc(100% - 60px);
    max-width: 850px;
    margin-inline: auto;
    transform: scale(0.65);
    transition: transform 0.6s ease;
    color: #ffffff;
    align-items: center;
    justify-content: center;
    height: 440px;
    border: 1px solid #ffffff;
    border-radius: 50px;
    display: flex;
    gap: 5rem;
    flex-direction: row;
}

.card_opinion.active {
    transform: scale(1);
}

.card_opinion.clone {
    visibility: hidden;
}

.logos_clientes {
    width: 280px;
    height: 320px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.logos_clientes_only{
    width: 80%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-inline: auto;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.logos_clientes_only img{
    margin-inline: auto;
    width: 120px;
    height: 70px;
    object-fit: contain;
}

.logos_clientes img {
    width: 110px;
    height: 50px;
    object-fit: contain;
}

.opinion_cliente {
    width: 380px;
    font-family: "Montserrat", sans-serif;
    font-size: 1.4rem;
    line-height: 1.4;
}

.opinion_cliente p {
    width: 95%;
}

.opinion_cliente img {
    width: 10px;
}

.comillas_cierre img {
    margin-left: auto;
}

.flecha_izquierda img {
    width: 15px;
    transform: rotate(225deg);
}

.flecha_derecha,
.flecha_izquierda {
    width: 70px;
    height: 70px;
    justify-content: center;
    align-items: center;
    border: 1px solid #ffffff;
    border-radius: 50%;
    padding: 25px;
    transition: all 0.6s ease-in-out;
    display: flex;
    cursor: pointer;
}

.flecha_izquierda:hover {
    transform: scale(1.2);
}

.flecha_derecha:hover {
    transform: scale(1.2);
}

.flecha_derecha img {
    margin-inline: auto;
    width: 15px;
    transform: rotate(45deg);
}

/** PLANTILLA PROYECTO **/
.hero_imagen_proyecto img {
    width: 100vw;
    height: 110vh;
    object-fit: cover;
    transform: translateY(0);
    transition: all 1.5s ease-in-out;
    z-index: 9999;
    position: relative;
}


.descripcion_proyecto {
    justify-content: center;
    margin-block: 150px 50px;
    width: 90%;
    max-width: 1200px;
    margin-inline: auto;
    color: #ffffff;
    display: flex;
    flex-direction: row;
}

.descripcion_proyecto img {
    width: 15px;
}

.nombre_proyecto h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 450;
    font-size: 3rem;
}

.nombre_proyecto h4 {
    font-family: "Space Grotesk", sans-serif;
    margin-bottom: 60px;
    color: #0cc0df;
    font-size: 2rem;
}

.nombre_proyecto {
    max-width: 500px;
    margin-left: 5%;
}

.caracteristicas_proyecto {
    max-width: 500px;
    margin-left: auto;
}

.nombre_proyecto p {
    width: 95%;
    padding-bottom: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 1.3rem;
    line-height: 1.4;
}

.servicios {
    width: 80%;

    flex-direction: row;
    gap: 1rem;
    justify-content: space-between;
}

.servicio_container {
    margin-block: 10px;
    display: flex;
    flex-direction: row;
    border: 1px solid #ffffff;
    border-radius: 20px;
    padding-inline: 18px;
    padding-block: 5px;
    width: auto;
    font-size: 1.3rem;
    font-weight: 500;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.servicio_container:hover {
    transform: translateY(-5px);
}

.servicio_container b {
    color: #0cc0df;
    font-weight: 600;
}

.servicio_container img {
    width: 10px;
    margin-right: 5px;
}

.fecha_proyecto h4 {
    color: #0cc0df;
    font-family: "Space Grotesk", sans-serif;
    font-size: 2rem;
    margin-bottom: 50px;
}

.fecha_proyecto p {
    width: 80%;
    padding-bottom: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 1.3rem;
    line-height: 1.4;
}

.videos_demostracion {
    align-items: center;
    justify-content: center;
    width: 90%;
    gap: 5rem;
    margin-inline: auto;
    display: flex;
    flex-direction: row;
    color: #ffffff;
}

.videos_demostracion a {
    display: flex;
    flex-direction: row;
    border: 1px solid #ffffff;
    justify-content: center;
    align-items: center;
    margin-block: 20px;
    width: 250px;
    margin-inline: auto;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.4rem;
    gap: 1rem;
    padding-block: 15px;
    border-radius: 20px;

}

.videos_demostracion video {
    border-radius: 20px;
    border: 1px solid #0cc0df;
    width: 500px;
    height: 300px;
    object-fit: cover;
}

.videos_movil{
    margin-inline: auto;
}
.videos_movil video {
    width: 300px;
    height: auto;
    object-fit: cover;
}

.boton_videos img {
    position: relative;
    will-change: left;
    border: none;
    border-radius: 0px;
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
    animation: flecha_boton 1s ease-in-out infinite;
}

@keyframes flecha_boton {

    0%,
    100% {
        left: 0;
    }

    50% {
        left: -3px;
    }
}

.video_principal {
    margin-top: 50px;
    width: 80%;
    max-width: 1100px;
    margin-inline: auto;
    overflow: hidden;
    border-radius: 20px;
}

.video_principal video {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border: 1px solid #0cc0df;
    border-radius: 20px;
}

.video_principal_movil{
    display: flex;
    width: 100%;
    margin-inline: auto;
    justify-content: center;
    align-items: center;

}

.video_principal_movil video{
    margin-inline: auto;
    width: 400px;
    height: auto;
    max-height: none;
        border: 1px solid #0cc0df;
    border-radius: 20px;
}



.otros h4 {
    margin-top: 100px;
    font-size: 3.5rem;
    font-weight: 450;
    text-align: center;
    font-family: "Space Grotesk", sans-serif;
    color: #ffffff;
}

.otros_seccion {
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    display: flex;
    width: 80%;
    gap: 3rem;
    max-width: 1100px;
    margin-inline: auto;
    flex-direction: row;
}

.slider_logos_wrapper {
    overflow: hidden;
    width: 900px;
    border-radius: 50px;
    border: 1px solid #ffffff;
    padding-block: 15px;
    margin: auto;
    align-items: center;
    justify-content: center;
}

.container_logos {
    display: flex;
    gap: 90px;
    transition: transform 0.5s ease-in-out;
    padding-inline: 50px;
}

.container_logos>div {
    flex: 0 0 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container_logos img {
    width: 100px;
    height: 50px;
    object-fit: contain;
}

/* FINAL SECTION */
.siguiente_proyecto_titulo {
    color: #ffffff;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 300;
    width: 100%;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}

.siguiente_proyecto_titulo h3 {
    font-weight: 400;
    font-size: 3.8rem;
    margin: 0;
    white-space: nowrap;
}

.titulo_siguiente {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.scroll {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    will-change: transform;
}

.siguiente_proyecto_titulo b {
    color: #0cc0df;
    font-weight: 400;
}

.siguiente_proyecto_titulo img {
    position: relative;
    width: 15px;
    height: 15px;
    object-fit: contain;
    margin-block: 20px;
    margin-inline: auto;
    transform: rotate(135deg);
    will-change: bottom;
    animation: flecha_abajo 1s infinite ease-in-out;
}

@keyframes flecha_abajo {

    0%,
    100% {
        bottom: 0;
    }

    50% {
        bottom: -5px;
    }
}

.movil {
    display: none;
}

body.bloquear-scroll {
    overflow: hidden;
}

.siguiente_imagen {
    width: 60%;
    margin: 40px auto 0 auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 2.5s ease;
    aspect-ratio: 16 / 9;
}

.siguiente_imagen img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    transition: all 2.5s ease-in-out;
}

.siguiente_imagen.expandir {
    width: 100vw;
    height: 110vh;
    border-radius: 0;
    top: 0;
    z-index: 9999;
    position: relative;
    transform: translateY(var(--desplazamiento));
    aspect-ratio: auto;
}

.siguiente_imagen.expandir img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.bloque_scroll {
  height: 10px;
  background: transparent;
}

/* FOOTER SECTION */
.linea_footer {
    border-bottom: 1px solid #ffffff;
    margin-bottom: 80px;
}

.footer_contenido {
    display: flex;
    gap: 5rem;
    flex-direction: row;
}

.footer_contenido h4 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 50px;
}

.footer_contenido img {
    width: 35px;
    height: 35px;
}

.footer_contenido a {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.4;
    transition: all 0.4s ease;
}

.footer_contenido a:hover {
    color: #0cc0df;
}

.footer_contenido b {
    color: #0cc0df;
    font-weight: 600;
}

.quick_links {
    margin-top: -5px;
    width: 250px;
}

.pagina_activa {
    color: #0cc0df;
}

.encuentranos_footer {
    width: 450px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 400;
}

.formulario_footer {
    width: 700px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    font-weight: 400;
}

.formulario_footer p {
    width: 100%;
}

.formulario_email {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    margin-bottom: 20px;
}

.formulario_email img {
    width: 12px;
    margin-left: 5px;
}

.formulario_email button {
    font-family: "Space Grotesk", sans-serif;
    border: 1px solid #ffffff;
    border-radius: 20px;
    color: #ffffff;
    font-size: 1.4rem;
    width: 25%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in-out;
}

.formulario_email button:hover {
    background-color: #0cc0df;
}

.contacto {
    background-color: #ffffff;
    font-size: 1.3rem;
    padding-left: 15px;
    padding-block: 5px;
    border-radius: 20px;
    width: 60%;
}

.redes_footer {
    margin-top: auto;
}

.redes_footer img {
    margin-block: 10px;
}

.flecha_redes img {
    position: relative;
    will-change: top;
    margin-inline: auto;
    width: 15px;
    transform: rotate(315deg);
    animation: flecha 1s ease-in-out infinite;
}

@keyframes flecha {

    0%,
    100% {
        top: 0;
    }

    50% {
        top: -5px;
    }
}


.nexxu_footer img {
    width: 60px;
    margin-block: 20px;
    margin-inline: auto;
}

.nexxu_footer {
    margin-top: 80px;
    margin-bottom: -100px;
    text-align: center;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.4rem;
}

/* PLANTILLA SERVICIOS SECCION */
.plantilla_servicio {
    width: 90%;
    margin-inline: auto;
}

.plantilla_servicio h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 3.8rem;
    font-weight: 400;
    margin-bottom: 50px;
    color: #0cc0df;
}

.plantilla_servicio p {
    width: 90%;
    font-size: 1.5rem;
}

.plantilla_servicio h3 {
    font-size: 1.5rem;
}

.plantilla_servicio img {
    width: 500px;
    margin-top: -50px;
}

.proyectos_servicio {
    max-width: 1100px;
    margin-inline: auto;
}
.proyectos_servicio h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 3.2rem;
    font-weight: 400;
    margin-bottom: 50px;
    color: #0cc0df;
    text-align: center;
}

.projects-service {
    width: 90%;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
}

.servicio_container_pagina {
    display: flex;
    flex-direction: row;
}

.servicios-project-card{
    gap: 0px;
}

.servicio-project-card {
    margin-left: 0px;
    margin-right: 10px;
}

.servicio-project-card a{
    font-size: 1.2rem;
    padding: 5px 15px;
}

.servicio-project-card p{
    font-size: 1.2rem;
    padding: 5px 15px;
}

.servicio-project-card button {
    padding: 5px 15px;
    font-size: 1.2rem;
}

.servicio-project-card img {
    width: 10px;
}

.card-service {
    background-color: rgba(20, 20, 20, 0.3);
    padding-top: 10px;
    padding-bottom: 20px;
    padding-inline: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.card-service.hidden {
    display: none;
}

#paginacion {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 20px;
    margin-inline: auto;
    align-items: center;
    width: 100%;
    font-family: "Space Grotesk", sans-serif;
    font-size: 2rem;
    font-weight: 600;
}

.btn-pagina {
    width: 60px;
    height: 60px;
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
}

.btn-pagina.activa {
    background-color: #0cc0df;
    color: #000000;
    border-radius: 50%;
}

@media (min-width: 300px) and (max-width: 399px) {

    .hero_pagina {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero_titulo {
        font-size: 3.4rem;
        line-height: 1.4;
    }

    .hero_texto {
        font-size: 1.8rem;
        text-align: left;
        width: 100%;
        margin-top: 0px;
    }

    /** SLIDER OPINIONES **/
    .slider_wrapper {
        overflow: hidden;
    }

    .card_opinion {
        flex-direction: column;
        height: auto;
        padding: 3rem 1.5rem;
        gap: 2.5rem;
        width: 85%;
        max-width: 320px;
        margin-inline: auto;
    }

    .opinion_cliente {
        width: 95%;
        font-size: 1.1rem;
    }

    .logos_clientes {
        width: 100%;
        height: auto;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
    }

    .logos_clientes_only{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        justify-items: center;
    }

    .logos_clientes_only img{
        width: 100px;
        height: 70px;
    }

    .logos_clientes img {
        width: 80px;
        height: auto;
    }

    .slider_opiniones {
        flex-direction: column;
        align-items: center;
    }

    .slider_wrapper {
        order: 1;
    }

    .botones_responsive {
        width: 95%;
        margin-inline: auto;
        display: flex;
        justify-content: center;
        margin-top: -30px;
        order: 2;
        gap: 5rem;
    }

    .flecha_izquierda,
    .flecha_derecha {
        display: none;
    }

    .botones_responsive .flecha_izquierda,
    .botones_responsive .flecha_derecha {
        display: flex;
    }

    .flecha_izquierda,
    .flecha_derecha {
        width: 60px;
        height: 60px;

    }

    .footer_contenido {
        width: 95%;
        margin-inline: auto;
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .encuentranos_footer {
        width: 90%;
    }

    .footer_contenido h4 {
        margin-bottom: 5px;
    }

    .formulario_email {
        display: flex;
        flex-direction: column;
    }

    .contacto {
        width: 100%;
    }

    .formulario_email button {
        width: 40%;
        margin-right: auto;
    }

    .formulario_footer {
        width: 95%;
    }

    .redes_footer {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        margin-top: 0px;
    }

    .redes_footer img {
        width: 50px;
        height: 50px;
        padding-block: 5px;
    }

    .flecha_redes img {
        width: 30px;
        height: 30px;
        transform: rotate(225deg);
        margin-top: 20px;
        animation: flecha_responsive 1s ease-in-out infinite;
    }

    @keyframes flecha_responsive {

        0%,
        100% {
            left: 0;
        }

        50% {
            left: -5px;
        }
    }

    /* PLANTILLA PROYECTO */
    .descripcion_proyecto {
        display: flex;
        flex-direction: column;
    }

    .nombre_proyecto {
        margin-bottom: 5rem;
        margin-left: 0%;
        margin-inline: auto;
    }

    .nombre_proyecto h4 {
        margin-bottom: 1rem;
    }

    .fecha_proyecto h4 {
        margin-bottom: 1rem;
    }

    .fecha_proyecto p {
        width: 95%;
    }

    .caracteristicas_proyecto {
        margin-inline: auto;
    }

    .videos_demostracion {
        display: flex;
        flex-direction: column;
    }


    .videos_demostracion video {
        width: 300px;
        height: 240px;
        object-fit: cover;
        margin-inline: auto;
    }

    .videos_movil video {
        width: 90%;
        height: auto;
        object-fit: cover;
        margin-inline: 5%;
    }

    .boton_videos img {
        width: 15px;
        height: 15px;
        object-fit: contain;
        margin-inline: 0px;
    }

    .video_principal {
        width: 95%;
        margin-inline: auto;
    }

    .video_principal img {
        width: 100%;
        height: 250px;
    }

    .otros h4 {
        font-size: 3rem;
    }

    .hero_imagen_proyecto img{
        width: 100vw;
        height: 100vh;
        object-fit: fill;
    }

    .siguiente_imagen {
        width: 85%;
        height: 80vh;
    }

    .siguiente_imagen.expandir {
        width: 100vw;
        height: 100vh;
    }
    
    .siguiente_imagen.expandir img {
        width: 100%;
        height: 100%;
        object-fit: fill;
    }

    .siguiente_imagen img {
        width: 100%;
        height: 100%;
        object-fit: fill;
    }
    
    .siguiente_proyecto_titulo h3 {
        font-size: 3rem;
    }

    .flecha_derecha,
    .flecha_izquierda {
        display: none;
    }

    .otros_seccion {
        width: 93%;
    }

    .movil {
        display: block;
    }

    .escritorio {
        display: none;
    }

    /* PLANTILLA SERVICIOS SECCION */
    .plantilla_servicio h2 {
        font-size: 2.6rem;
        line-height: 1.4;
    }

    .proyectos_servicio h3 {
        font-size: 2.5rem;
        line-height: 1.4;
    }

    .projects-service {
        width: 100%;
        margin-inline: auto;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 5rem;
    }

    .servicio-project-card a {
        font-size: 8px;
        padding: 5px 10px;
        gap: 3px;
    }

    .servicio-project-card p {
        font-size: 8px;
        padding: 5px 10px;
    }

    .servicio-project-card button {
        padding: 5px 15px;
        font-size: 1rem;
    }

    .container_logos {
        gap: 60px;
    }

    .servicio_container_pagina {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }

    .texto_servicio p {
        line-height: 1.4;
    }

    .imagen_servicio {
        width: 100%;
        margin-block: 10px;
    }

    .imagen_servicio img {
        width: 100%;
        transform: scale(0.95);
    }

}

@media (min-width: 400px) and (max-width: 767px) {
    .container {
        padding-inline: 16px;
    }

    .hero_pagina {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero_titulo {
        font-size: 3.6rem;
        line-height: 1.4;
    }

    .hero_texto {
        font-size: 1.8rem;
        text-align: left;
        width: 100%;
        margin-top: 0px;
    }

    /** SLIDER OPINIONES **/
    .slider_wrapper {
        overflow: hidden;
    }

    .card_opinion {
        flex-direction: column;
        height: auto;
        padding: 3rem 1.5rem;
        gap: 2.5rem;
        width: 85%;
        margin-inline: auto;
    }

    .slider_titulo h3 {
        font-size: 2.2rem;
    }

    .opinion_cliente {
        width: 95%;
        font-size: 1.3rem;
    }

    .logos_clientes {
        width: 100%;
        height: auto;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
    }

    .logos_clientes_only{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        justify-items: center;
    }

    .logos_clientes_only img{
        width: 100px;
        height: 70px;
    }

    .logos_clientes img {
        width: 80px;
        height: auto;
    }

    .slider_opiniones {
        flex-direction: column;
        align-items: center;
        margin-inline: 10px;
    }

    .slider_wrapper {
        order: 1;
    }

    .botones_responsive {
        width: 95%;
        margin-inline: auto;
        display: flex;
        justify-content: center;
        margin-top: -30px;
        order: 2;
        gap: 5rem;
    }

    .flecha_izquierda,
    .flecha_derecha {
        display: none;
    }

    .botones_responsive .flecha_izquierda,
    .botones_responsive .flecha_derecha {
        display: flex;
    }

    .flecha_izquierda,
    .flecha_derecha {
        width: 70px;
        height: 70px;

    }

    .footer_contenido {
        width: 95%;
        margin-inline: auto;
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .footer_contenido h4 {
        margin-bottom: 5px;
    }

    .formulario_email {
        display: flex;
        flex-direction: column;
    }

    .contacto {
        width: 100%;
    }

    .encuentranos_footer {
        width: 90%;
    }

    .formulario_email button {
        width: 40%;
        margin-right: auto;
    }

    .formulario_footer {
        width: 95%;
    }

    .redes_footer {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        margin-top: 0px;
    }

    .redes_footer img {
        width: 50px;
        height: 50px;
        padding-block: 5px;
    }

    .flecha_redes img {
        width: 30px;
        height: 30px;
        transform: rotate(225deg);
        margin-top: 20px;
        animation: flecha_responsive 1s ease-in-out infinite;
    }

    @keyframes flecha_responsive {

        0%,
        100% {
            left: 0;
        }

        50% {
            left: -5px;
        }
    }

    /* PLANTILLA PROYECTO */
    .descripcion_proyecto {
        display: flex;
        flex-direction: column;
    }

    .nombre_proyecto {
        margin-bottom: 5rem;
        margin-left: 0%;
        margin-inline: auto;
    }

    .nombre_proyecto h4 {
        margin-bottom: 1rem;
    }

    .fecha_proyecto h4 {
        margin-bottom: 1rem;
    }

    .fecha_proyecto p {
        width: 95%;
    }

    .caracteristicas_proyecto {
        margin-inline: auto;
    }

    .videos_demostracion {
        display: flex;
        flex-direction: column;
    }


    .videos_demostracion video {
        width: 380px;
        height: 260px;
        object-fit: cover;
        margin-inline: auto;
    }

    .videos_movil video {
        width: 90%;
        height: auto;
        object-fit: cover;
        margin-inline: 5%;
    }

    .boton_videos img {
        width: 15px;
        height: 15px;
        object-fit: contain;
        margin-inline: 0px;
    }

    .video_principal {
        width: 95%;
        margin-inline: auto;
    }

    .video_principal img {
        width: 100%;
        height: 250px;
    }

    .otros h4 {
        font-size: 3rem;
    }

    .siguiente_imagen {
        width: 85%;
        height: 80vh;
    }
    .hero_imagen_proyecto img{
        width: 100vw;
        height: 100vh;
        object-fit: fill;
    }

    .siguiente_imagen.expandir {
        width: 100vw;
        height: 100vh;
    }
    
    .siguiente_imagen.expandir img {
        width: 100%;
        height: 100%;
        object-fit: fill;
    }

    .siguiente_imagen img {
        width: 100%;
        height: 100%;
        object-fit: fill;
    }

    .siguiente_proyecto_titulo h3 {
        font-size: 3rem;
    }

    .flecha_derecha,
    .flecha_izquierda {
        display: none;
    }

    .otros_seccion {
        width: 88%;
    }

    .movil {
        display: block;
    }

    .escritorio {
        display: none;
    }

    /* PLANTILLA SERVICIOS SECCION */
    .plantilla_servicio h2 {
        font-size: 2.8rem;
        line-height: 1.4;
    }

    .proyectos_servicio h3 {
        font-size: 2.5rem;
        line-height: 1.4;
    }

    .projects-service {
        width: 100%;
        margin-inline: auto;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 5rem;
    }

    .servicio_container_pagina {
        display: flex;
        flex-direction: column-reverse;
    }

    .texto_servicio p {
        line-height: 1.4;
    }

    .imagen_servicio {
        width: 100%;
        margin-block: 10px;
    }

    .imagen_servicio img {
        width: 100%;
        transform: scale(0.95);
    }


}

@media (min-width: 768px) and (max-width:1199px) {
    .hero_pagina {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .hero_titulo {
        font-size: 5rem;
        line-height: 1.2;
    }

    .hero_texto {
        text-align: left;
        width: 100%;
        font-size: 2rem;
    }

    .slider_titulo h3 {
        font-size: 3rem;
        width: 95%;
        margin-inline: auto;
    }

    .slider_wrapper {
        padding-block: 55px;
    }

    .slider_opiniones {
        width: 100%;
        gap: 2rem;
    }

    .card_opinion {
        display: flex;
        flex-direction: column;
        height: auto;
        gap: 4rem;
        padding-block: 3rem;
        margin-block: 50px;
    }

    .logos_clientes {
        width: 90%;
        height: auto;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
    }

    .logos_clientes_only{
        width: 90%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        justify-items: center;
    }

    .opinion_cliente {
        width: 85%;
        margin-inline: auto;
    }

    .footer_contenido {
        display: flex;
        flex-direction: column;
    }

    .footer_contenido h4 {
        margin-bottom: 20px;
        font-size: 2.5rem;
    }

    .quick_links a {
        font-size: 1.4rem;
    }

    .encuentranos_footer {
        width: 90%;
        font-size: 1.4rem;
    }

    .formulario_footer p {
        width: 90%;
        font-size: 1.2rem;
    }

    .contacto {
        width: 80%;
    }

    .redes_footer {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        margin-top: 0px;
    }

    .redes_footer img {
        width: 70px;
        height: 70px;
        margin-block: 5px;
        padding-block: 10px;
    }

    .flecha_redes img {
        width: 40px;
        height: 40px;
        transform: rotate(225deg);
        margin-top: 20px;
        animation: flecha_responsive 1s ease-in-out infinite;
    }

    @keyframes flecha_responsive {

        0%,
        100% {
            left: 0;
        }

        50% {
            left: -5px;
        }
    }

    /* PLANTILLA PROYECTO */
    .descripcion_proyecto {
        width: 95%;
        display: flex;
        flex-direction: column;
    }

    .nombre_proyecto {
        margin-bottom: 5rem;
        margin-left: 0%;
        width: 90%;
        max-width: 750px;
        margin-inline: auto;
    }

    .nombre_proyecto p {
        width: 90%;
        font-size: 1.5rem;
    }

    .nombre_proyecto h4 {
        margin-bottom: 1rem;
    }

    .fecha_proyecto h4 {
        margin-bottom: 1rem;
    }

    .fecha_proyecto p {
        width: 90%;
        font-size: 1.5rem;
    }

    .caracteristicas_proyecto {
        margin-inline: auto;
        width: 90%;
        max-width: 750px;
    }

    .videos_demostracion {
        gap: 2rem;
    }

    .videos_demostracion video {
        width: 350px;
        height: 240px;
        object-fit: cover;
        margin-inline: auto;
    }

    .boton_videos img {
        width: 15px;
        height: 15px;
        object-fit: contain;
        margin-inline: 0px;
    }

    .video_principal {
        width: 95%;
        margin-inline: auto;
    }

    .video_principal img {
        width: 90%;
        margin-inline: auto;
        height: 400px;
    }

    .otros h4 {
        font-size: 3.4rem;
    }

    .container_logos {
        gap: 70px;
    }

    .siguiente_imagen {
        width: 85%;
        height: 80vh;
    }

    .siguiente_proyecto_titulo h3 {
        font-size: 3.4rem;
    }

    .otros_seccion {
        width: 90%;
        max-width: 750px;
    }

    .movil {
        display: block;
    }

    .escritorio {
        display: none;
    }

    /* PLANTILLA SERVICIOS SECCION */
    .projects-service {
        width: 100%;
    }

    .imagen_servicio {
        width: 100%;
        margin-block: auto;
        justify-content: center;
        align-items: center;
    }

    .imagen_servicio img {
        width: 100%;
        transform: scale(1);
    }

    .servicio-project-card p {
        padding: 5px 10px;
        font-size: 10px;
    }

    .servicio-project-card a {
        padding: 5px 10px;
        font-size: 10px;
    }

    .servicio-project-card button {
        padding: 5px 10px;
        font-size: 10px;
    }

}

@media (min-width: 1400px){
    .container_logos{
        gap: 70px;
    }
}