/*=============== fonts ===============*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/*=============== Base ===============*/
html{
    font-size: 10px;
}

*{
    font-family: 'Roboto', sans-serif;
}

/*=============== VARIABLES - CSS ===============*/
:root{
    --purple:  #6907AB;
}

/*=============== HEADER & NAV ===============*/

body{
    background-color: #171924;
}

.header{
    width: 100%;
    position: fixed;
    top:0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color:#181818;
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    z-index: 1000;
}

.header-scroll{
    top: 0;
    width: 100%;
    border-radius: 0;
    box-shadow: 0 .1rem .3rem rgba(0, 0, 0, 0.5);
}

.nav__logo{
    display: flex;
    align-items: center;
}

.logo__icon{
    display: flex;
    align-items: center;
}
.icon__code{
    font-size: 4.5rem;
    font-weight: bold;
    color: #309397;
    transition: all 300ms ease-in-out;
}

.logo__hubcode{
    color: #fcfced;
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 1px 1px 1px #309397;
    transition: all 300ms ease-in-out;
}

.icon__code:hover{
    text-shadow: 0 0 5px #309397,
                 0 0 10px #309397,
                 0 0 40px #309397,
                 0 0 60px #309397;
}

.logo__hubcode:hover{
    text-shadow: 0 0 5px #309397,
                 0 0 10px #309397,
                 0 0 40px #309397,
                 0 0 60px #309397;
}

.header__nav{
    display: flex;
    justify-content:space-around;
    align-items: center;
}

.menu__items{
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    margin-right: 10rem;
}

.items__item{
    font-size: 2.5rem;
    color: #dbdbd5;
    text-shadow: 1px 1px 1px #000000;
    margin-right: 4rem;
    letter-spacing: 0.2rem;
    transition: all 0.3s ease-in-out;
}

.items__item:hover{
    color: #c4c45e;
    transform: scale(1.1);
}

.menu__item{
    font-size: 2.5rem;
    color: #dbdbd5;
    text-shadow: 1px 1px 1px #000000;
    letter-spacing: 0.2rem;
    transition: all 0.3s ease-in-out;
}

.menu__item:hover{
    color: #c4c45e;
    transform: scale(1.3);
}

.menu-i{
    font-size: 4rem;
    color: #dbdbd5;
    cursor: pointer;
    text-shadow: 1px 1px 1px #000000;
    display: none;
}

.cerrar{
    display: none;
    /* font-size: 2.5rem;
    color: #dbdbd5;
    text-shadow: 1px 1px 1px #000000; */
}

.btn-wsp{
    position: fixed;
    width: 15rem;
    height: 15rem;
    line-height: 15rem;
    font-size: 10rem;
    color: white;
    background-color: #25D366;
    border-radius: 50%;
    bottom: 30px;
    right: 30px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    z-index: 100;
    transition: all 300ms ease-in-out;
}

.btn-wsp:hover{
    background-color: white;
    color: #25D366;
}



/*=============== main ===============*/

/* === Hero === */

.main{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to top, #09203f 0%, #537895 100%);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
    overflow: hidden;
    position: relative;
}

.main_hero{
    display: flex;
    align-items:flex-start;
    justify-content: center;
    flex-flow: column;
    text-align:start;
    padding-top: 25rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 8rem;
}

.hero__title{
    width: 100%; 
    color: white;
    font-size: 4.5rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 12rem;
    text-shadow: 0 0.3rem 0.5rem rgba(0,0,0, 0.4);
}

.hero__text{
    /* width: 50%; */
    color: white;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 0.3rem 0.5rem rgba(0,0,0, 0.3);
    
}

.hero__button{
    width: 100%;
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.button__a{
    width: 28rem;
    padding: 2rem 1rem;
    text-align: center;
    color: white;
    font-size: 3rem;
    letter-spacing: 2px;
    font-weight: 500;
    cursor: pointer;
    transition: all 300ms ease-in-out;
    border: 4px solid #E17171;
    border-radius: 1rem;
}

.button__a:hover{
    background-color: #E17171;
    border: 4px solid white;

}

.main__hero--imagen{
    position: relative;
    display: flex;
    justify-content:end;
    align-items: center;
    overflow: hidden;
}

.main__hero--img{
    position: relative;
    width: 200vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding:0;
    filter: drop-shadow( 0 0 1rem rgba(0, 0, 0, 0.7));
    
}

/* === Slide === */

@keyframes slide{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-50%);
    }
}

.carrucel{
    width: 100%;
    height: 11rem;
    background-color: #FAF0FF;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    box-shadow: 0px 3px 26px -12px rgba(0,0,0,0.75);
}

.carrucel:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 10%;
    height: 100%;
    background: linear-gradient(to left, rgb(255, 255, 255, 0) , #FAF0FF);
    content: '';
    z-index: 2;
}

.carrucel:after{
    position: absolute;
    top: 0;
    right: 0;
    width: 10%;
    height: 100%;
    background: linear-gradient(to right, rgb(255, 255, 255, 0) , #FAF0FF);
    content: '';
    z-index: 2;
}


/* .carrucel:hover .carrucel__item{
    animation-play-state: paused;
} */

.carrucel__item--slide{
    display: inline-block;
    white-space: nowrap;
    animation: 10s slide infinite linear;
}

.item__tecno{
    font-size: 7rem;
    padding-right: 10rem;
    color: #98919D;
}

/* === service cards === */

.serv{
    background-color: rgb(243, 243, 243);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-flow: column;
}

.serv__title{
    color: black;
    font-size: 5rem;
    font-weight: bold;
    margin-top: 10rem;
    margin-bottom: 5rem;
    text-shadow: 0 0.3rem 0.5rem rgba(0,0,0, 0.3);
}

.serv__subtitle{
    color: black;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 5rem;
    text-shadow: 0 0.3rem 0.5rem rgba(0,0,0, 0.2);
}

.serv__items{
    width: 80%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 10rem;
}

.serv__item{
    width: 23%;
    padding: 2rem 1rem;
    background-color: #FAF0FF;
    border-radius: 5rem;
    box-shadow: 0px 3px 26px -12px rgba(0,0,0,0.75);
    transition: all 300ms ease-in-out;
}

.serv__item--title{
    color: black;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.serv__item--text{
    color: black;
    font-size: 2rem;
    font-weight: 500;
    margin-top: 2rem;
    text-shadow: 0 0.3rem 0.5rem rgba(0,0,0, 0.2);
}

.serv__item--button{
    margin-top: 3rem;
    font-size: 2rem;
    text-shadow: 0 0.3rem 0.5rem rgba(0,0,0, 0.2);
    color: white;
    text-align: center;
    cursor: pointer;
    background-color:#EA0337 ;
    border-radius: 5rem;
    transition: all 300ms ease-in-out;
    width: auto;
    padding: 1rem;
}

.serv__item:hover{
    transform: translateY(-3rem);
    box-shadow: 0px 3px 26px -12px rgba(0,0,0,0.75);
    color: black;
}

.serv__item--button:hover{
    transform: scale(1.1);
    background-color:#EA0337 ;
}

/* === presencia === */

.presencia{
    width: 100%;
    display: flex;
    justify-content:space-around;
    align-items: center;
    flex-flow: row-reverse;
    background-color: #FAF0FF;
    padding-top: 5rem;
    padding-bottom: 5rem;
    padding-right: 5rem;
}

.presencia__text{
    width: 50%;
    display: flex;
    justify-content:right;
    align-items: center;
    flex-flow: column;
}

.presencia__text--title{
    font-size: 5rem;
    margin-bottom: 2rem;
    color: black;
    font-weight: bold;
    text-shadow: 0 0.3rem 0.5rem rgba(0,0,0, 0.3);
}

.presencia__text--subtitle{
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: black;
    font-weight: 400;
    text-shadow: 0 0.3rem 0.5rem rgba(0,0,0, 0.3);
    text-align: center;
}

.presencia__text--text{
    font-size: 2rem;
    margin-bottom: 1rem;
    color: black;
    text-align: center;
}

.presencia__text--list{
    width: 100% ;
    display: flex;
    flex-flow: column;
    text-align: left;
}

.presencia__list--title{
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: black;
    font-weight: bold;
    text-shadow: 0 0.3rem 0.5rem rgba(0,0,0, 0.2);
}



.presencia__list--text{
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: black;
    font-weight: 500;
    text-align: justify;
}
.presencia__imagen{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.presencia__imagen--img{
    width: 100%;
    object-fit: cover;
    mask-image: linear-gradient(black 80%, transparent);
}

/* === Paquetes === */

.paquetes{
    background-color: #171924;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.paquetes__info{
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    color: white;
}

.paquetes__info--title{
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-shadow: 0 0.3rem 0.5rem rgba(0,0,0, 0.3);
}

.paquetes__info--subtitle{
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 0 0.3rem 0.5rem rgba(0,0,0, 0.3);
}

.paquetes__info--text{
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.paquetes__info--text2{
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 5rem;
}
/* ------------------------- */
.main__prices{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 3rem;
    padding-left: 3rem;
    padding-right: 3rem;
}

.prices__price{
    flex-basis: 33%;
    background-color: white;
    padding: 4rem;
    margin-right: 1.5rem;
    border-radius: 1.5rem 0 0 1.5rem;
    text-align: center;
}

.prices__price:last-child{
    border-radius: 0 1.5rem 1.5rem 0;
}

.prices__price--zoom{
    transform: scale(1.1);
    background-color: #E17171;
    border-radius: 1.5rem;
}

.prices__price--zoom .price__subtitle,
.prices__price--zoom .price__number,
.prices__price--zoom .price__detail{
    color: white;
}

.prices__price--zoom .price__detail{
    border-color: #da9393;
}

.prices__price--zoom .price__btn{
    color: #E17171;
    font-size: 2rem;
    background-color: white;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    transition: all 300ms linear;
}

.prices__price--zoom .price__btn:hover{
    color: white;
    background-color: #E17171;
    border: 3px solid white;
}

.price__subtitle{
    font-size: 1.4rem;
    font-weight: 600;
    color: #777;
}

.price__number{
    color: #4F5166;
    font-size: 4.5rem;
    margin-bottom: 2rem;
}

.price__detail{
    font-size: 1.3rem;
    font-weight: 600;
    color: #777AA2;
    padding: 1rem 0;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
}

.price__btn{
    width: 100%;
    margin-top: 3rem;
    
}

.price__btn{
    width: 100%;
    margin-top: 3rem;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: #E17171;
    color: white;
    font-size: 2rem;
    font-weight: 600;
    padding: 0.7rem;
    border-radius: 0.5rem;
    border: 1px solid transparent;
    transition: all 300ms ease-in-out;
}

.price__btn:hover{
    border:1px solid #da9393;
    background-color: transparent;
    color: #E17171;
}

/* === Contacto === */

.contact{
    background-color: #171924;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row;
    padding-top: 15rem;
    padding-bottom: 5rem;
    padding-left: 5rem;
    
}

.contact__info{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    text-align: center;
}

.contact__info--title{
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: rgb(255, 255, 255);
    text-shadow: 0 0.3rem 0.5rem rgba(0,0,0, 0.3);
}

.contact__info--text{
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: rgb(255, 255, 255); 
}

.contact__form{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.contact__form--input{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    padding: 17px 14px;
    margin-bottom: 3rem;
    font-size: 3rem;
    color: rgb(255, 255, 255);
    background-color: #171924;
    border: 4px solid #cfd4f1;
    border-radius: 1rem;
}

.contact__form--textarea{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 17px 14px;
    flex-flow: column;
    font-size: 3rem;
    color: rgb(255, 255, 255);
    background-color: #171924;
    border: 4px solid #cfd4f1;
    border-radius: 1rem;
}

.contact__form--button{
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.7rem 1.4rem;
    margin-top: 2rem;
    font-size: 3rem;
    color: rgb(255, 255, 255);
    background-color: #171924;
    border: 4px solid #E17171;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}

.contact__form--button:hover{
    background-color: #E17171;
    border: 4px solid #cfd4f1;
}

/*=============== FOOTER ===============*/

.footer{
    width: 100%;
    display: flex;
    justify-content:space-around;
    align-items: center;
    background-color: #181818;
    color: white;
    font-size: 1.8rem;
    padding: 5rem 0;
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.footer__atencion--icons{
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 3rem;
    font-size: 3rem;
}

.fa-square-instagram:hover,
.fa-tiktok:hover,
.fa-square-facebook:hover,
.whatsapp-footer:hover{
    transition: all 300ms ease-in-out;
    text-shadow: 0 0 5px #309397,
                 0 0 10px #309397,
                 0 0 40px #309397,
                 0 0 60px #309397;
}



.footer__contact{
    width: 30%;
}

.footer__contact--h2{
    margin-bottom: 2rem;
    
}

.footer__contact--2{
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer__contact--4{
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer__atencion{
    width: 30%;
}

.footer__atencion--h2{
    margin-bottom: 2rem;
    
}

.footer__atencion--2{
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer__atencion--3{
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer__atencion--4{
    font-size: 2rem;
    font-weight: 500;
}

.footer__servicios{
    width: 30%;
}

.footer__servicios--h2{
    margin-bottom: 2rem;
}

.footer__servicios--servicio{
    margin-bottom: 1rem;
    font-weight: 500;
    transition: all 300ms ease-in-out;
}

.footer__servicios--servicio:hover{
    color: #c4c45e;
}

/* ======= Animaciones ======= */

@keyframes to-right {

    0%{
        opacity: 0;
        transform: translateX(-50px);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes to-left {

    0%{
        opacity: 0;
        transform: translateX(50px);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}











