:root{
    --black:#202536;
    --orange:#FF7460;
    --blue-1:#00A19B;
    --blue-2:#A9FFEC20;
    --source:"Source Sans Pro",sans-serif;
    --poppins:"Poppins",sans-serif;

}
header{
    padding:12px;
    position: fixed;
    background-color: transparent;
    width: 100vw;
    height: fit-content;
}
.controler-header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}

.controler-header a.controler-logo{
    max-width: 200px;
    text-decoration: none;
}
.controler-header a.btn-vilamar{
    border-radius: 500px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    color: #fff;
    background-color:var(--orange) ;
    font-size:18px;
    font-family: var(--source);
    font-weight: 400;
    padding:12px 44px;
    text-decoration: none;
    text-align: center;
    display: flex;
    height: fit-content;
    margin: auto 0 auto auto;
    width: fit-content;
}
#paralx{
    overflow-y: scroll;
    scroll-snap-stop: always;
    scroll-snap-type: y mandatory;
    height: 100vh;
    width: 100vw;
}
.paralxed-item{
    height: 100%;
    width: 100%;
    scroll-snap-align: start;
    justify-content: center;
    align-items: center;
    display: flex;
}

ul.paralaxed-dots{
    position: absolute;
    transform: translate(-50%, -50%);
    right: 10%;
    top: 50%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 32px;
}
@media(max-width:992px){
    ul.paralaxed-dots{
        display: none;
    }
}
ul.paralaxed-dots li{
    padding: 0;
    margin: 0;
}
ul.paralaxed-dots li a{
    border-radius: 500px;
    display: flex;

    background-color: #E5FFF9;
    border: 2px solid #fff;
    height: 16px;
    width: 16px;
    transition: 0.3s ease-in-out;

}

ul.paralaxed-dots li a.active{
    background-color: var(--orange);
}

.paralxed-item.hero{
    background-image: url(img/hero.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    
}

.paralxed-item img.app-view{
    max-width: 130%;
}
@media(max-width:992px){
    .paralxed-item img.app-view{
        max-width: 70%;
        margin: 0 auto;
    }
}

.paralxed-item.hero h1{
    color: #fff;
    font-family: var(--source);
    font-size: 110px;
    line-height: 100%;
    font-weight: 600;
    margin-bottom: 12px;
}
.paralxed-item.hero p{
    color: #fff;
    font-family: var(--poppins);
    font-size:44px;
    line-height: 100%;
    font-weight: 300;
}
@media(max-width:992px){
    .paralxed-item.hero h1{
        font-size: 64px;
        padding: 0 24px;
        text-align: center;
    }
    .paralxed-item.hero p{
        font-size: 24px;
        padding: 0 24px;
        text-align: center;

    }
}
.paralxed-item .col-text{
    display: flex;
    flex-direction: column;
    justify-content: start;
    transition:1s ease-in-out;
    opacity: 0;
}
.active.paralxed-item .col-text{
    opacity: 1;

}
.paralxed-item h2{
    font-family: var(--poppins);
    font-size: 48px;
    color: var(--blue-1);
    font-weight: 300;
    margin-top: auto;
    display: flex;
    margin-bottom: 4px;
    position: relative;
    top: -10px;
    width: 100%;
    transition: 1s ease-in-out;
}
@media(max-width:992px){
    .paralxed-item h2{
        font-size: 32px;
    }
}
.active.paralxed-item .col-text h2{
    top: 0;
}
.paralxed-item#sect1 h2::after{
    content: "Productos";
}
@keyframes levitating{
    0%{top: 45%;}
    50%{top: 55%;}
    100%{top: 45%;}
}


.animation-levitating {
    position: relative;
}
@media(max-width:992px){
    .animation-levitating{
        display: none;
    }
}
.animation-levitating img{
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translate(-50%,-50%);
    /* transition: 0.3s ease-in-out; */
    animation-timing-function: ease-out;
    animation-name: levitating;
    animation-duration: 5s;
    animation-delay:3s ;
    animation-iteration-count: infinite;
}

.paralxed-item#sect3 h2::after{
    content: "Infinitas";
}
.paralxed-item h2::after{
    position: absolute;
    bottom: 0px;
    left: 50%;
    opacity: 0;
    z-index: -1;
    line-height: 180px;
    font-size: 200px;
    font-weight: 600;
    font-family: var(--poppins);
    color:#E5FFF9 ;
    transition-delay: 1s;
    transition: 1.5s ease-in-out;
}

@media(max-width:992px){
    .paralxed-item h2::after{
        display: none;
    }
}
.paralxed-item.active h2::after{
    left: 0;
    opacity: 1;
}
.paralxed-item p{
    display: flex;
    font-family:var(--source);
    font-size: 22px;
    font-weight: 300;
    color:var(--black) ;
    margin-bottom: auto;
}

.paralxed-item .col-md-4{
    display: flex;
    flex-direction: column;
}
.paralxed-item img{
    margin: auto 0;
    display: flex;
}

.paralxed-item .item-app{
    display: flex;
    flex-direction: row;
    margin-bottom: 32px;
}
.paralxed-item .item-app:last-of-type{
    margin-bottom: 0;
}

.paralxed-item .item-app img{
    margin-top: 0;
    height: 64px;
    width: 64px;
    margin-right: 16px;
}
@media(max-width:992px){
    .paralxed-item .item-app{
        margin-bottom: 20px;
    }
    .paralxed-item .item-app img{
        height: 40px;
        width: 40px;
    }
}
.paralxed-item .item-app .text-item{
    display: flex;
    flex-direction: column;
}

.paralxed-item .item-app .text-item h3{
    font-family: var(--poppins);
    font-size: 30px;
    font-weight: 300;
    color: var(--blue-1);
    margin-bottom: 8px;
    margin-top: 8px;
}

@media(max-width:992px){
    .paralxed-item .item-app .text-item h3{
        font-size: 24px;
    }
    .paralxed-item p{
        font-size: 18px;
    }
}

#banner-download{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("img/banner-download.png");
    padding: 180px 0;
    overflow: hidden;
    position: relative;
}

#banner-download img.banner-img{
    position: absolute;
    right: 45%;
    padding: 0;
    margin: 0;
    width: 45vw;
}

#banner-download .col-md-5{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#banner-download h2{
    color: #fff;
    font-weight: 300;
    margin-bottom:24px;
    font-family: var(--poppins);
    font-size: 56px;
}

#banner-download p{
    font-size: 24px;
    font-family:var(--source);
    font-weight: 300;
    margin-bottom: 32px;
    color:#fff;
}

#banner-download a ,
#banner-download a img{
    width: 100%;
    height: auto;
    text-decoration: none;
    margin-bottom: 12px;
}
@media(max-width:992px){
    #banner-download img.banner-img{
        display: none;
    }
    #banner-download h2{
        font-size: 36px;
    }
    #banner-download p{
        font-size: 20px;
    }
}

section#logos-banners{
    padding: 64px 0;
}
section#logos-banners p{
    font-family: var(--poppins);
    font-weight: 600;
    color: var(--black);
    margin-bottom:20px;
}
section#logos-banners img{
    height: 100px;
    margin-right: 40px;
}

footer{
    background-color: #1F2537;
    padding: 40px 0 0 0;

}
footer p{
    color: #fff;
    font-size: 20px;
    margin-bottom: 32px;
    margin-top: 24px;
    font-weight: 300;
    font-family:var(--source) ;

}
footer p.title-footer{
    color: #fff;
    font-size: 20px;
    margin-bottom: 8px;
    margin-top: 84px;
    font-weight: 600;
    font-family:var(--source) ;
}
footer ul.redes{
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

footer ul.redes li{
    padding: 0;
    margin: 0;
}

footer ul.redes li a{
    border-radius: 500px;
    position: relative;
    background-color: #ffffff;
    color: var(--black);
    text-decoration: none;
    display: flex;
    height: 48px;
    width: 48px;
    transition: 0.3s ease-in;
}

footer ul.redes li a:hover{
    transform: scale(1.14);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
footer ul.redes li a i{
    position: absolute;
    top: 50%;
    font-size: 22px;
    left: 50%;
    transform: translate(-50%,-50%);
}

footer a.cnt-link{
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 16px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-family: var(--source);
    font-weight: 300;
    align-items: center;
    margin-bottom: 12px;
    padding-left: 32px;
    width: fit-content;
}
footer a.cnt-link::after{
    content: "";
    position: absolute;
    bottom: -2px;
    left: 32px;
    width: 0;
    height: 2px;
    background-color: #ffffff32;
    transition: 0.3s ease-in-out;
}
footer a.cnt-link:hover::after{
    width: calc(100% - 32px);
}

footer a.cnt-link i{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);

    font-size: 18px;
}

footer a.download-btn {
    width: 100%;
    text-decoration: none;
    margin-bottom: 16px;
}
footer a.download-btn img{
    width: 100%;
}


footer .copyright{
    margin-top: 80px;
    width: 100vw;
    height: fit-content;
    padding: 16px;
    text-align: center;
    background-color: #000000;
}

footer .copyright p{
    width: fit-content;
    margin: 0 auto;
    padding: 0;
    font-size: 18px;
}




/* scroll sniping */

.fade-img {
    width: 100%;
    height: 100%;
    top: -250px;
    position: relative;
    opacity: 0;
}

.active .fade-img {
    transition-delay: 4s;
    transition: 1s ease-in-out;
    top: 0;
    opacity: 1;
}

.fade-img-right {
    width: 100%;
    height: 100%;
    right: -250px;
    position: relative;
    opacity: 0;
}
@media(max-width:992px){
    .fade-img,
    .fade-img-right{
        display: none;
    }
}
.active .fade-img-right {
    transition-delay: 4s;
    transition: 1s ease-in-out;
    right: 0;
    opacity: 1;
}

.scroll-scalatet{
    opacity: 0;
    transition: 1s ease-in-out;
    top: 80px;
    position: relative;

}

.active .scroll-scalatet{
    opacity: 1;
    top: 0;
}
.active .scroll-scalatet.ss-1{
    transition-delay: 0.5s;
}

.active .scroll-scalatet.ss-1 img{
    animation-delay: 0.5s;

}
.active .scroll-scalatet.ss-2{
    transition-delay: 1s;
}
.active .scroll-scalatet.ss-1 img{
    animation-delay: 1s;
}
.active .scroll-scalatet.ss-3{
    transition-delay: 1.5s;
}
.active .scroll-scalatet.ss-1 img{
    animation-delay: 1.5s;
}

@keyframes fade-scale{
    0%{transform:scale(1);}
    5%{transform:scale(3);}
    100%{transform:scale(1);}
}
.active .fade-scale img{
    animation-timing-function: ease-in-out;
    animation-name: fade-scale;
    animation-iteration-count: 1;
    animation-duration: 1s;
}
