@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* 
    #f1d669 - amarelo
    #14aeda - Azul
*/

@-webkit-keyframes flip {
    0% {
        -webkit-transform: rotateY(0deg);
                transform: rotateY(0deg);
    }
    100% {
        -webkit-transform: rotateY(360deg);
                transform: rotateY(360deg);
    }
}

@keyframes flip {
    0% {
        -webkit-transform: rotateY(0deg);
                transform: rotateY(0deg);
    }
    100% {
        -webkit-transform: rotateY(360deg);
                transform: rotateY(360deg);
    }
}

:root{
    --cor-amarela: #f1d669;
    --cor-azul: #14aeda;
}

*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

img{
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
}

a,
a:hover,
a:active,
a:visited {
    text-decoration: none;
    color: inherit;
}

body{
    font-family: "Montserrat";
    background-color: #000;
    color: #fff;
    line-height: 1;
    position: relative;
}

@media(max-width: 992px){
    .bg1{
        background: #000000 url(../img/v2/mobbg.png) center center/cover no-repeat local;
    }
    
    .bg2{
        background: #000000 url(../img/v2/bg2.png) center center/cover no-repeat local;
    }
    
    .bg3{
        background: #000000 url(../img/v2/bg3.png) center center/cover no-repeat local;
    }
    
    .bg4{
        background: #000000 url(../img/v2/bg4.png) center center/cover no-repeat local;
    }
}

@media(min-width: 992px){
    .bg1{
        background: #000000 url(../img/v2/bg1.png) center center/cover no-repeat fixed;
    }
    
    .bg2{
        background: #000000 url(../img/v2/bg2.png) center center/cover no-repeat fixed;
    }
    
    .bg3{
        background: #000000 url(../img/v2/bg3.png) center center/cover no-repeat fixed;
    }
    
    .bg4{
        background: #000000 url(../img/v2/bg4.png) center center/cover no-repeat fixed;
    }
}


header{
    max-width: 1244px;
    margin: 0 auto;
    text-align: center;
    margin-top: 20px;
    h1{
        font-weight: bold;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        font-size: 22px;
        small{
            font-weight: 500;
            color: var(--cor-amarela);
            font-size: 19px;
        }
    }
}


.overlay--left{
    position: absolute;
    left: 0;
    top: -93px;
    width: 100%;
    height: 100%;
    z-index: 4;
}

.overlay--right{
    position: absolute;
    right: 0;
    top: -93px;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.overlay--left,
.overlay--right{
    max-width: 900px;
    pointer-events: none;
}

main{
    margin-top: 60px;
}

.video_container{
    position: relative;
    width: 100%;
    max-width: 1244px;
    margin: 0 auto;
}

.video_container::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 99.3%;
    z-index: 3;
    
    background: rgb(0,0,0);
    background: -o-linear-gradient(350deg, rgba(0,0,0,.95) 40%, rgba(0,0,0,0) 100%);
    background: linear-gradient(100deg, rgba(0,0,0,.95) 40%, rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);

    border-radius: 20px;
}

.video_container video{
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    opacity: .4;
}

.video_container .text{
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 25px;
    max-width: 48%;
    font-size: 40px;
    z-index: 5;
}

.video_container .text h2{
    color: #fff;
}

.video_container .text h2 span{
    color: var(--cor-amarela);
}

@media(min-width: 992px){
    .coin-area{
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
}

.coin-area{
    position: relative;
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 58%;
    max-width: 1244px;
    margin: 60px auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 27px;
}

.coin-area img{
    width: 162px;
    -webkit-animation: flip 2s infinite linear;
            animation: flip 2s infinite linear;
    margin-right: 20px;
}

.coin-area span{
    color: var(--cor-amarela);
}

.experiences{
    position: relative;
    z-index: 5;
    border-radius: 0;
    padding: 60px 0;
    width: 100%;
    margin-bottom: 40px;
    background-color: #fff;
    color: #25262C;
}

.experiences::before{
    content: "";
    position: absolute;
    height: 66px;
    width: 100%;
    background-color: #fff;
    top: -27px;
    left: 0;
    z-index: 999;
    -webkit-transform: skew(-2deg) rotate(-2deg);
        -ms-transform: skew(-2deg) rotate(-2deg);
            transform: skew(-2deg) rotate(-2deg);
}

.experiences::after{
    content: "";
    position: absolute;
    height: 66px;
    width: 100%;
    background-color: #fff;
    bottom: -27px;
    left: 0;
    z-index: 999;
    -webkit-transform: skew(-2deg) rotate(-2deg);
        -ms-transform: skew(-2deg) rotate(-2deg);
            transform: skew(-2deg) rotate(-2deg);
}

.experiences .wrap{
    max-width: 1244px;
    margin: 0 auto;
    
}

.experiences  h2{
    max-width: 60%;
    color: #25262C;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 40px;
}

.experiences .experiences__list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 64%;
    margin: 0 auto;
    text-align: center;
    gap: 40px;
}

.experiences .experiences__list .experiences__item{
    -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
            box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px;
    border-radius: 10px;
    background-color: #f9f9f9;
}

.experiences .experiences__list img{
    width: 100px;
    height: 100px;
    margin: 0 auto;
    margin-bottom: 20px;
}


.experiences .experiences__list p{
    font-weight: bold;
    color: #25262C;
    line-height: 1.2;
}

div.cta{
    margin-top: 40px;
}

div.cta a{
    background-color: var(--cor-azul);
    color: #fff;
    display: block;
    max-width: 300px;
    font-size: 21px;
    font-weight: 600;
    line-height: 50px;
    text-align: center;
    margin: 0 auto;
    border-radius: 20px;
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

div.cta a:hover{
    opacity: .95;
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}


@media(max-width: 767px){
    .video_container video{
        height: 200px;
    }

    .video_container .text{
        max-width: 70%;
        font-size: 16px;
    }

    .coin-area{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin: 10px;
        margin-top: 60px;
        margin-bottom: 60px;
        width: 100%;

        font-size: 19px;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
    }

    .experiences{
        padding: 10px;
    }

    .experiences > h2{
        margin: 0;
        margin-bottom: 40px;
        max-width: 100%;
        font-size: 20px;
    }

    .experiences .experiences__list{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 20px;
        max-width: 100%;
    }

    main{
        /* margin: 0 10px; */
    }

    header{
        margin-bottom: 20px;
    }

    .coin-area img{
        margin: 0;
        width: 106px;
        margin-bottom: 10px;
    }
}

.other-video {
    position: relative;
    margin: 230px 0;
}
.other-video img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    left: 0;
    z-index: 1;
}
.other-video img.linha_esquerda {
    left: 0;
    top: -111px;
    height: 75px;
    width: auto;
}
.other-video img.linha_direita {
    right: 0;
    bottom: -111px;
    height: 75px;
    width: auto;
    left: unset;
}
.other-video img.play {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    cursor: pointer;
}
.other-video img.linha_tras {
    width: 1090px;
    height: auto;
    left: 50%;
    top: 7%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}
.other-video img.triangulo_direito {
    width: 60px;
    height: auto;
    left: unset;
    right: 118px;
    top: -120px;
}
.other-video img.triangulo_esquerdo {
    width: 60px;
    height: auto;
    top: unset;
    bottom: -120px;
    left: 118px;
}
.other-video .wrap {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 3;
    margin-top: 40px;
    margin-bottom: 40px;
}
.other-video .wrap video {
    width: 100%;
    border-radius: 40px;
}
.other-video .wrap iframe{
    height: 560px;
    width: 100%;
    border-radius: 30px;
}
@media (max-width: 992px) {
    .other-video .wrap iframe{
        height: 195px;
        width: 100%;
        border-radius: 30px;
    }
    div.cta {
        margin-bottom: 40px;
   }
    .experiences h2 {
        margin-top: 40px;
        max-width: 100%;
   }
    .experiences .experiences__list {
        max-width: 80%;
   }
    .video_container {
        padding: 0 10px;
        overflow: hidden;
   }
    .other-video {
        margin: 170px 0;
   }
    .other-video .wrap {
        padding: 0 15px;
        margin: 0;
   }
    .other-video img.linha_esquerda {
        top: -53px;
        height: 30px;
   }
    .other-video img.linha_direita {
        right: 0;
        height: 24px;
        bottom: -60px;
   }
    .other-video img.triangulo_direito {
        width: 30px;
        right: 20px;
        top: -100px;
   }
    .other-video img.triangulo_esquerdo {
        width: 30px;
        left: 20px;
        bottom: -100px;
   }
    .other-video img.play {
        width: 100px;
        height: 100px;
        top: 50px;
   }
}