
:root{
    --text-dark: #212121;
    --text-gray: #4E586E;
    --text-light-gray: #BDBDBD;
    --text-gray-white: #f7f7f7;
    --text-white: #FAFAFA;
    --text-blue: #1e90ff;
    --text-darkblue: #461cff;


    --banner-bg: #f1f2f6;
    --footer-bg: #0c2461;
}

h1{
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-dark);
}

h2{
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-dark);
}

h3{
    font-size: 2.5rem;
    font-weight: 700;
}

h4{
    font-size: 1.2rem;
    font-weight: 700;
    color: var();
}

h5{
    font-size: 120%;
    color: var();
}

h6{
    font-size: 100%;
    color: var(--text-blue);
}

p{
    font-size: 1rem;
    color: var(--text-gray);
}


a{
    text-decoration: none;
    font-weight: 500;
}

ul{
    list-style: none;
}

button{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 35px;
    border-radius: 10px;
    border: 2px solid var(--text-dark) ;
    background: transparent;
    width: fit-content;
    min-width: 10rem;
}

.btn-1{
    background: var(--text-blue);
    border: none;
    color: var(--text-white);
    transition: 0.4s;
}

.btn-1:hover{
    background: transparent;
    border: 1px solid var(--text-blue);
    color: var(--text-white);
}

.btn-1:hover a{
    color: var(--text-blue);
}

.btn-1 a{
    color: var(--text-white);
    font-weight: 500;
}

.btn-2{
    background: transparent;
    border: 1px solid var(--text-blue);
    color: var(--text-white);
    transition: 0.4s;
}

.btn-2 a{
    color: var(--text-blue);
    font-weight: 500;
}

.btn-2:hover{
    background: var(--text-blue);
}

.btn-2:hover a{
    color: var(--text-white);
}

.leerMas{
    background: var(--text-gray-white);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border: none;
    border-radius: 50px;
}

.show-info .leerMas{
    background: var(--text-gray-white);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border: none;
    border-radius: 50px;
}

.leerMas a{
    color: var(--text-dark);
}

.leerMas.leerMenos a{
    color: var(--text-dark);
}

.leerMas i{
    margin-left: 1rem;
}

.btn-4{
    border: none;
    background: transparent;
    margin-left: 0;
    padding-left: 0;
}

.cont-mar{
    margin: 5% 0;
}

.cont-pad{
    padding: 0 5%;
}

html{
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    background: var(--banner-bg);
}

body{
    list-style: none;
    text-decoration: none;
    overflow-x: hidden;
    scroll-behavior: smooth;
    min-height: 150vh;
}

@media screen and (max-width: 900px) {
    h1{
        font-size: 3rem;
        font-weight: 700;
        color: var(--text-dark);
    }
    
    h2{
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--text-dark);
    }
    
    h3{
        font-size: 2rem;
        font-weight: 700;
    }
    
}

/*Header*/

header{
    width: 100%;
    height: 7rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0; left: 0;
    right: 0;
    transition: all 0.5s;
    background: var(--text-white);
    padding-left: 2rem;
    padding-right: 2rem;
}

header.sticky{
    height: 5rem;
    box-shadow: 0 0 20px var(--text-light-gray);
    padding: 0 10%;
    background: var(--text-white);
    z-index: 999;
}

header.sticky .logo img{
    width: auto;
    height: 3rem;
}

header .logo{
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

}

header .logo img{
    height: 6rem;
    transition: 0.5s;

}

header nav{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 2rem;
    padding-right: 2rem;
    z-index: 99;
}

header nav img{
    display: none;
}

header nav ul{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

header ul img{
    display: block;
}

header nav ul li{
    width: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-1.5rem);
}

header nav ul li img{
    display: none;
}

header nav ul li a{
    width: 100%;
    color: var(--text-gray);
    transition: 0.1s;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    border-bottom: 1px solid transparent;
}

header nav ul li a:hover{
    color: var(--text-blue);
    border-bottom: 1px solid var(--text-blue);
}


header .buttons{
    width: 25%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;

}

header .buttons .menu_bar{
    display: none;
}

header li{
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

header li a{
    width: 8rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

header li a img{
    width: 1.5rem;
    height: auto;
}

header li a p{
    margin-top: 10%;
    margin-left: 1rem;
    margin-right: 0.5rem;
}

header li a i{
    color: var(--text-gray);
}


/*Submenu Idiomas*/

.menu-idiomas{
    width: 150px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items:center;
    box-shadow: 0px 51px 78px -50px rgba(0,0,0,0.75);
    transition: 0;
    background: transparent;
}

.menu-idiomas:hover{
    margin-top: 30%;
}

.idiomas{
    width: 100%;
    height: 100%;
    display: none;
    transition: 0.6s;
    background: transparent;   
}

.menu-idiomas:hover .idiomas{
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    background: var(--text-white);
}

.menu-idiomas:hover .idiomas:hover + .menu-idiomas{
    margin-top: 30%;
}

.menu-idiomas:hover .idiomas:hover{
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    background: var(--text-white);
}

.idiomas li a{
    height: max-content;
}

#us{
    border-bottom: 1px solid var(--text-blue);
}


header.sticky .menu-idiomas{
    display: none;
}

@media screen and (max-width:1300px) {


    .menu-idiomas{
        display: none;
    }


    header .buttons button{
        display: none;
    }

    header .buttons i{
        font-size: 1.5rem;
        color: var(--text-dark);
        transition: 0.2s ease-in-out;
    }

    header .buttons .menu_bar{
        display: block;
        z-index: 9999999;
    }

    header nav{
        display: none;
    }   

    header nav .logo-mobile{
        display: block;
        width: 15rem;
        margin-left: 1rem;
        margin-bottom: 3rem;
    }
}

@media screen and (max-width:900px) {
    header{
        width: 100%;
        height: 6rem;
    }

    header .logo img{
        height: 4rem;
        transition: 0.5s;
    }

}

@media screen and (max-width: 500px) {

    header{
        width: 100%;
    }



    header .buttons{
        width: fit-content;
    }

    header .logo{
        width: fit-content;
        padding: 0;
    }

}

/*Menu Desplegable*/


.menu-desplegable{
    display: none;
}

#toggleNav{
    cursor: pointer;
}

#nav-check:checked ~ .menu-desplegable{
    position: fixed;
    top: 0; left: 0;
    overflow: hidden;
    z-index: 1000;
}

@media screen and (max-width: 1300px) {

    .menu-desplegable{
        width: 100%;
        max-width: 500px;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: fixed;
        top: 0; left: -100%;
        padding: 1.5rem;
        z-index: 999;
        background: var(--text-white);
        transition: left 0.3s ease; /* Transición para el cambio de posición */
    }

    body.menu-open {
        overflow: hidden;
    }

    .menu-desplegable.open {
        left: 0; /* Mostrar el menú deslizándolo hacia la derecha */
    }

    .menu-desplegable .close{
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        margin-top: 1rem;
    }

    .menu-desplegable .close a{
        width: fit-content;
        height: fit-content;
    }


    .menu-desplegable .close a i{
        font-size: 1.5rem;
        color: var(--text-dark);
    }

    
    .menu-desplegable .logo-mobile{
        width: 15rem;
        height: fit-content;
        margin-bottom: 3rem;
    }

    .menu-desplegable ul{
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 1.5rem;        
        padding-left: 0;
    }

    .menu-desplegable ul li{
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        border: 1px solid var(--text-blue);
        transition: all 0.3s ease-in-out;
    }

    
    .menu-desplegable ul li:hover{
        background: var(--text-blue);
    }

    .menu-desplegable ul li:hover p{
        font: 1.5rem;
        font-weight: 600;
        color: var(--text-white);
    }

    .menu-desplegable ul li:hover i{
        color: var(--text-white);
    }

    /*

    .menu-desplegable ul li.hover{
        background: var(--text-blue);
    }

    .menu-desplegable ul li.hover p{
        font: 1.5rem;
        font-weight: 600;
        color: var(--text-white);
    }

    .menu-desplegable ul li.hover i{
        color: var(--text-white);
    }

    */

    .menu-desplegable ul li a{
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5rem;
    }

    .menu-desplegable ul li a p{
        
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 0;
    }
    

    .menu-desplegable .languages-mobile{
        width: 100%;
        height: fit-content;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 1rem;
    }

    .menu-desplegable .languages-mobile a{
        width: fit-content;
        height: fit-content;
        display: flex;
        flex-direction: row;
        justify-self: center;
        align-items: center;
        color: var(--text-dark);
        border-bottom: 2px solid transparent;
    }

    .menu-desplegable .languages-mobile a.active{
        color: var(--text-blue);
        border-bottom: 2px solid var(--text-blue);
    }
    
}

@media screen and (max-height: 600px) {
    #toggleNav{
        display: none;
    }
}


/*Banner*/

.banner{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 6rem;
    background: var(--banner-bg);
    padding-bottom: 2rem;

}

.banner .cont{
    width: 90%;
    max-width: 1000px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.banner .cont .cont-left .text{
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner .cont-left .buttons{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5%;
}

.banner .banner-img{
    width: 100%;
    min-height: 25rem;
    background: url(../img/slide1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 3rem;
    background-attachment: fixed;
}

.banner .banner-img.ios{
    background-attachment: scroll;
}

@supports (-webkit-touch-callout: none) {
    .banner-img {
      background-attachment: scroll;
      /* Ajusta otras propiedades si es necesario */
    }
}

@media screen and (max-width:900px) {
    .banner{
        margin-top: 6rem;
    }
}
/*

@media screen and (max-width:500px) {
    
    .banner .banner-img{
        background-attachment: scroll;
    }
}

*/

/*Brand Carousel*/


@keyframes slide {
    from{
        transform: translateX(0);
    }

    to{
        transform: translateX(-100%);
    }
}

.brands{
    width: 100%;
    overflow: hidden;
    padding: 4rem 10%;
    background: var(--text-gray-white);
    white-space: nowrap;
    position: relative;
}

.brands::before, .brands::after{
    position: absolute;
    top: 0;
    width: 10rem;
    height: 100%;
    content: "";
    z-index: 2;
}

.brands::before{
    left: 0;
    background: linear-gradient(to left, rgba(255,255,255,0),var(--text-white));
}

.brands::after{
    right: 0;
    background: linear-gradient(to right, rgba(255,255,255,0),var(--text-white));
}

.brands .brands-slide{
    display: inline-block;
    animation: 50s slide infinite linear;
}

.brands .brands-slide img{
    height: 4rem;
    margin: 0 4rem;
}

.brands:hover .brands-slide {
    animation-play-state: paused;
}


/*About Us*/

.about-us{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.about-us .text{
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.about-us .text h2 span{
    color: var(--text-blue);
}

.about-us .text p span{
    color: var(--text-blue);
    font-weight: 500;
}

.about-us .text h2{
    margin-bottom: 2rem;
}

.about-us .right{
    width: 45%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    min-width: 300px;
}

.about-us .right .card{
    width: 400px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border-radius: 25px;
    text-align: center;
    transition: 0.4s all;
    box-shadow: 0px 15px 72px -38px rgba(0,0,0,1);
}

.about-us .right .card:hover{
    box-shadow: 0px 15px 72px -38px rgba(112,161,255,1);
    transform: translateY(-3rem);
}

.about-us .right .card img{
    width: 10rem;
}

    /*Media Querys*/

    @media screen and (max-width: 1050px){

        .about-us{
            flex-direction: column;
            gap: 3rem;
        }

        .about-us .text{
            width: 90%;
            max-width: 600px;
            height: fit-content;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
        }

        .about-us .right{
            width: 90%;
            max-width: 600px;
            height: fit-content;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
        }

        .about-us .right .card{
            width: 100%;
            max-width: 400px;
            min-width: 300px;
        }
    }

    @media screen and (max-width: 900px){
        .about-us .right .card{
            width: 100%;
            min-width: 300px;
            height: fit-content;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 1rem;
            border-radius: 25px;
            text-align: center;
            transition: 0.4s all;
            box-shadow: 0px 15px 72px -38px rgba(0,0,0,1);
        }

        .about-us .right .card img{
            width: 8rem;
        }

        .about-us .right .card h3{
            font-size: 1.6rem;
        }
        
        .about-us .right .card p{
            font-size: 1rem;
        }

    }

/*Servicios*/

.servicios{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10rem;
}

.servicios .tittles-cont{
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.servicios .art-cont{
    width: 95%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.servicios .art-cont article{
    max-width: 30%;
    min-width: 300px;
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
    padding: 2rem;
    border-radius: 25px;
    border-bottom: 1px solid var(--text-gray-white);
    margin-bottom: 4rem;
    transition: all 0.4s;
}

.servicios .art-cont article:hover{
    box-shadow: 0px 15px 72px -38px rgba(112,161,255,1);
    transform: translateY(-2rem);
}

.servicios .art-cont article .text-cont .more-info{
    display: none;
}

.servicios .art-cont article .text-cont .show-info{
    display: block;
}

.servicios .art-cont article .icon-cont{
    width: 100%;
    margin-bottom: 1rem;
}

.servicios .art-cont article .icon-cont .icon{
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    padding: 1rem;
    background: var(--text-gray-white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.servicios .art-cont article .icon-cont .icon i{
    font-size: 1.5rem;
    color: var(--text-blue);
}

.leerMas a{
    color: var(--text-dark);
    text-decoration: none;
}


/*Web Services*/

@media screen and (max-width: 5000px) {
    
.web-services{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.web-services .main-cont{
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.web-services .main-cont .tittles-cont{
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 5rem;
}


.web-services .main-cont .tittles-cont p{
    width: 60%;
}

.web-services .main-cont .info-cont{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
}

.web-services .main-cont .info-cont .img-cont{
    width: 50%;
    max-width: 700px;
    height: fit-content;
    display: grid;
    grid-template-columns: repeat(16,minmax(10px,1fr));
    grid-template-rows: repeat(8,minmax(100px,1fr));
}

.web-services .main-cont .info-cont .img-cont .item-one{
    background: var(--text-gray);
    grid-column-start: 1;
    grid-column-end: 8;
    grid-row-start: 2;
    grid-row-end: 5;
    background: url(../img/web-services/img3.jpg);
    background-size: cover;
    border-radius: 8px;
    filter: blur(1px);
}

.web-services .main-cont .info-cont .img-cont .item-two{
    background: var(--text-gray);
    grid-column-start: 9;
    grid-column-end: 16;
    grid-row-start: 1;
    grid-row-end: 4;
    background: url(../img/web-services/img2.jpg);
    background-size: cover;
    border-radius: 8px;
    filter: blur(1px);
}

.web-services .main-cont .info-cont .img-cont .item-three{
    background: var(--text-gray);
    grid-area: 3/4/8/14;
    background: url(../img/web-services/img4.jpg);
    background-size: cover;
    border-radius: 8px;
    filter: blur(1px);
    z-index: 10;
}

.web-services .main-cont .info-cont .art-cont{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 700px;
}

.web-services .main-cont .info-cont .art-cont article{
    margin-bottom: 1.5rem;
}

.web-services .main-cont .info-cont .art-cont article.oculto{
    display: none;
}

.web-services .main-cont .info-cont .art-cont article h5{
    font-weight: bold;
}

.web-services .main-cont .info-cont .art-cont a{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.web-services .main-cont .info-cont .art-cont a p{
    padding-top: 0.8rem;
    margin-right: 0.5rem;
}


.web-services .main-cont .info-cont .art-cont a i{
    color: var(--text-gray);
}


@media screen and (max-width: 1000px) {
    .web-services .main-cont .info-cont{
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
    }

    .web-services .main-cont .info-cont .img-cont{
        width: 95%;
        max-width: 500px;
        height: auto;
        display: grid;
        grid-template-columns: repeat(16,minmax(10px,1fr));
        grid-template-rows: repeat(8,minmax(100px,1fr));
    }

    .web-services .main-cont .info-cont .art-cont{
        width: 95%;
        max-width: 600px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .web-services .main-cont .info-cont .img-cont{
        display: none;
    }
}

}

/*Web Services 2*/

.web-services2{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 5rem;
    background: var(--text-blue);
    gap: 5rem;
}

.web-services2 .tittles{
    width: 40%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.web-services2 .tittles h3{
    color: white;
    margin-bottom: 1.5rem;
}

.web-services2 .tittles p{
    color: var(--text-gray-white);
    max-width: 500px;
}

.web-services2 .cards{
    width: 55%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.web-services2 .cards article{
    width: 18rem;
    height: 15rem;
    padding: 1rem;
    border-radius: 25px;
    margin-bottom: 1rem;

    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(13px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.web-services2 .cards article h5{
    color: var(--banner-bg);
}

.web-services2 .cards article p{
    color: var(--text-gray-white);
}

@media screen and (max-width: 1250px) {
    
    .web-services2{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 5rem 0;
        background: var(--text-blue);
        gap: 0rem;
    }

    .web-services2 .tittles{
        width: 80%;
        max-width: 700px;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-bottom: 3rem;
    }

    .web-services2 .cards{
        width: 95%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
}


/*Ubicacion*/

.ubicacion{
    width: 100%;
    min-height: 20vh;
    margin-top: 5rem;
}

.ubicacion iframe{
    width: 100%;
    min-height: 10vh;
}



/*Footer*/

footer{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: start;
    padding-top: 2rem;
    padding-left: 10%;
    background-color: rgb(240, 246, 253);
}

footer .col{
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3rem;
}

footer .logo{
    margin-bottom: 3rem;
    width: 200px;
    height: auto;
}

footer h4{
    padding-bottom: 0.5rem;
    color: var(--text-dark);
}

footer p{
    margin: 0 0 8px 0;
    color: var(--text-dark);
}


footer a{
    font-size: 13px;
    text-decoration: none;
    color: var(--text-dark);
    margin-bottom: 10px;
}

footer .copyright{
    width: 100%;
    height: 10%;
    text-align: center;
}

    /*Footer Media Querys*/
