*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

.overflow{
    overflow-x: hidden;
}

.container{
    width: 100%;
    padding: 0 2%;
    margin: 0 auto;
    max-width: 1280px;
    overflow-x: hidden;
}

marque{
    color: #1358A8;
}

sublime{
    background-image: url('./images/text.png');
    background-size: cover;
    background-position: center;
    padding: 0 3px;
}

b{
    font-weight: 700;
}

/* SLIDER */

.swiper {
    overflow: hidden;
    background-color: #001D32;
    border-bottom: 2px solid #fff;
    padding: 15px 0;
}

.swiper-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.swiper-slide{
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide img {
    display: inline-block;
    margin: 0 15px;
    max-width: 150px;
    height: 100%;
    object-fit: cover;
}

/* BTN */

.wrapper-btn{
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    img{
        width: 80%;
        margin-top: 30px;
        max-width: 280px!important;
    }
}

.btn{
    padding: 15px 60px;
    border-radius: 30px;
    background: radial-gradient(#1358A8 10%, #072C56 100%);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    width: auto;
    text-decoration: none;
    box-shadow: 0 5px 4px 4px rgba(0,0,0,0.3);
    margin-top: 20px;
    transition: 0.5s;
    cursor: pointer;
    border: 3px solid #fff;
    text-transform: uppercase;
}

.btn:hover{
    transform: scale(1.05);
}

/* WARNING TOP */

.warning-top{
    padding: 20px 0;
    width: 100%;
    background-color: #8D0C0C;
    display: flex;
    align-items: center;
    justify-content: center;

    h6{
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        text-transform: uppercase;
    }

    i{
        color: rgb(255, 255, 35);
        padding: 0 15px;
        animation-name: scale;
        animation-duration: 1s;
        animation-iteration-count: infinite;
        font-size: 20px;
    }
}

@keyframes scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Banner */

.banner{
    width: 100%;
    padding: 50px 0 70px 0;
    background-image: url('./images/banner-2.jpg');
    background-size: cover;
    height: 870px;

    h5{
        font-size: 17px;
        color: #fff;
        padding: 7px 15px;
        border: 1.5px solid #fff;
        border-radius: 10px;
        font-weight: 400;
        display: inline-block;
        text-transform: uppercase;
        margin-top: 15px;
    }

    h1{
        font-size: 37px;
        font-weight: 600;
        line-height: 51px;
        color: #fff;
        text-transform: uppercase;
        margin-top: 25px;
        max-width: 700px;
    }

    > .container > .banner-left > p{
        font-size: 18px;
        color: #fff;
        max-width: 550px;
        margin-top: 25px;
        font-weight: 300;
        margin-bottom: 20px;
    }

    .mobile-ronaldo{
        display: none;
    }

    .wrapper-data{
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .wrapper-logos-banner{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 35px;

        h4{
            font-size: 18px;
            color: #fff;
            font-weight: 400;
        }

        .logos-banner{
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logos-banner img{
            width: 150px;
            padding: 0 15px;
        }
    }

}

.banner-left{
    animation-name: left;
    animation-fill-mode: forwards;
    animation-duration: 1.5s;
    opacity: 0;
    transform: translateX(-100px);
}

@keyframes left{
    0%{
        transform: translateX(-100px);
        opacity: 0;
    }
    100%{
        transform: translate(0,0);
        opacity: 1;
    }
}

.banner-left-top{
    display: flex;
    align-items: center;

    i{
        margin-left: 30px;
        color: #fff;
        font-size: 20px;
    }

    p{
        margin-left: 30px;
        font-size: 18px;
        color: #fff;
        font-weight: 200;

        span{
            font-weight: 600;
        }
    }

    .content-infos{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    img{
        width: 200px;
    }
}

/* Video */

.wrapper-vsl{
    width: 100%;
    background-color: #000;
    padding: 30px 0;

    h2{
        width: 100%;
        text-align: center;
        color: #fff;
        font-size: 33px;
        font-weight: 300;
        margin-bottom: 30px;
        max-width: 700px;
    }

    .video{
        width: 100%;
        max-width: 600px;
        aspect-ratio: 16/9;
        background-color: #0c0c0c;
        border-radius: 10px;
        margin-top: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 3px solid #09376D;

        i{
            font-size: 50px;
            color: #fff;
        }
    }

    .vsl{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
}



/* WRAPPER INFO */

.wrapper-info{
    width: 100%;
    padding: 40px 0 60px 0;
    background-image: url('./images/back-1.png');
    background-size: cover;
    background-position: bottom;
}

.bloco-2{
    padding: 50px 0;
}

.bloco-2 .container{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.bloco-2-left{
    width: 50%;
}

.bloco-2-left h2{
    color: white;
    font-weight: 600;
    font-size: 35px;
}

.bloco-2-left p{
    margin-top: 30px;
    color: white;
    font-size: 16px;
}

.bloco-2-right{
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bloco-2-right .line{
    width: 1px;
    height: 100%;
    background-color: white;
    margin-right: 10%;
    position: relative;
}

.bloco-2-right .line .line-top{
    position: absolute;
    top: 0;
    left: -2px;
    width: 5px;
    background-color: #1358A8;
    height: 50px;
    border-radius: 2px;
}

.bloco-2-left-text{
    height: 85%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.bloco-2-left-text h5{
    color: white;
    font-size: 14px;
    font-weight: 400;
}

/* BLOCO 3 */

.bloco-3{
    width: 100%;
    padding: 30px 0 50px 0;

    .title-bloco-3{
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
    }
}

.bloco-3 .title-bloco-3 h5{
    font-size: 18px;
    color:#1358A8;
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 3px;
    font-weight: 400;
}

.bloco-3 .title-bloco-3 h4{
    color: #fff;
    font-size: 40px;
    font-weight: 600;
}

.wrapper-forcas{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    grid-gap: 20px;

    .wrapper-group-top{
        display: flex;
        align-items: stretch;
        justify-content: space-between;

        .single-forca{
            width: 31% !important;
        }
    }

    .wrapper-group-medium{
        display: flex;
        align-items: stretch;
        justify-content: center;
        margin-top: 15px;

        .single-forca{
            width: 31% !important;
            margin: 0 15px;
        }
    }

    .wrapper-group-bottom{
        display: flex;
        align-items: stretch;
        justify-content: center;
        margin-top: 15px;

        .single-forca{
            width: 31% !important;
        }
    }

    .single-forca{
        width: 100%;
        background-color: #0c0c0c;
        border: 2px solid #1358A8;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding: 25px 20px;
        border-radius: 10px;
        box-shadow: 0 5px 5px 5px rgba(0,0,0,0.25);

        h3{
            font-size: 35px;
            color: #1358A8;
            margin-right: 20px;
        }
    
        h5{
            font-size: 18px;
            color: #fff;
            font-weight: 500;
        }
    }
}

/* FAQ */

.wrapper-local-faq{
    width: 100%;
    background-image: url('./images/background-novo.png');
    background-position: center bottom;
    background-size: cover;
}

.faq{
    padding: 20px 0 100px 0;

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

    h3{
        margin-top: 20px;
        color: #fff;
        font-size: 30px;
        width: 100%;
        text-align: center;
        margin-bottom: 50px;
    }
}

.duvidas-right{
    width: 100%;
    max-width: 900px;
    cursor: pointer;

    h2{
        font-size: 32px;
        color: #fff;
        margin-bottom: 40px;
    }

    .single-duvida{
        width: 100%;
        border-bottom: 1px solid #fff;
        margin-top: 20px;
        padding-bottom: 20px;

        .top-single-duvida{
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .low-single-duvida{
            margin-top: 10px;
            overflow: hidden;
            transition: height 0.3s ease;
            height: 0;
            transition: 0.5s;

            p{
                font-weight: 400!important;
            }
        }

        p{
            font-size: 18px;
            color: #fff;
            margin-left: 10px;
            font-weight: 600;
        }

        i{
            color: #fff;
            font-size: 18px;
            margin-right: 20px;
        }
    }
}

/* Whatsapp */

.whatsapp{
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #1358A8;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    cursor: pointer;
    transition: 0.3s;

    i{
        font-size: 40px;
        color: #fff;
    }
}

.whatsapp:hover{
    scale: 1.1;
}

/* BLOCO 4 */

.bloco-4{
    width: 100%;
    padding: 20px 0;

    .title-bloco-4{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-bottom: 100px;


        h5{
          font-size: 35px;
          color: #fff;
          font-weight: 400;
          letter-spacing: 10%;
          margin-top: 20px;
        }

        h4{
            font-size: 33px;
            color: #fff;
            max-width: 500px;
            text-align: center;
            font-weight: 400;
        }
    }

    .motivos-bloco-4{
        margin-top: 40px;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: space-around;
        position: relative;

        > img{
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
            width: 75%;
            opacity: 45%;
        }

        .single-motivo{
            width: 35%;
            background-color: #0c0c0c;
            border: 2px solid #09376D;
            padding: 50px 40px;
            border-radius: 10px;
            box-shadow: 0 5px 5px 5px rgba(0,0,0,0.30);
            margin-bottom: 100px;
            position: relative;
            z-index: 2;

            h5{
                font-size: 22px;
                color: #fff;
                font-weight: 600;
                margin-top: 10px;
                margin-bottom: 20px;
            }

            p{
                font-size: 15px;
                color: #fff;
                margin-top: 10px;
                font-weight: 400;
            }

            i{
                font-size: 45px;
                color: #1358A8;
                margin-bottom: 15px;
            }
        }
    }
}

/* DEPOIMENTOS */

.depoimentos{
    width: 100%;
    background-color: #0c2e56;
    padding: 50px 0 80px 0;
    
    .container{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    h2{
        font-size: 35px;
        color: #fff;
        font-weight: 400;
        max-width: 700px;
        text-align: center;
    }

    p{
        margin-top: 20px;
        font-size: 16px;
        color: #fff;
        max-width: 600px;
        text-align: center;
    }

    .wrapper-depoimentos{
        width: 100%;
        margin: 50px 0 40px 0;
        display: grid;
        grid-gap: 25px;
        grid-template-columns: 1fr 1fr 1fr;
        max-width: 1080px;

        .single-depoimento{
            aspect-ratio: 9/13;
            width: 100%;
            background-color: #dadada;
            border-radius: 15px;
            box-shadow: 0 5px 20px 10px rgba(0,0,0,0.25);
        }
    }

    .btn{
        width: auto;
    }
}

/* garantia */

.garantia{
    width: 100%;
    padding: 50px 0 100px 0;

    .container{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .left-garantia{
        width: 45%;

        h2{
            font-size: 40px;
            font-weight: 600;
            color: #fff;
            max-width: 450px;
            line-height: 60px;
        }

        p{
            font-size: 18px;
            color: #fff;
            margin-top: 20px;
            line-height: 30px;
        }
    }

    .right-garantia{
        width: 45%;
        display: flex;
        align-items: center;
        justify-content: center;
        
        img{
            width: 65%;
        }
    }
}

/* LOCAL */

.local{
    width: 100%;
    padding: 80px 0;


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

    .titulo-local{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        h2{
            font-size: 28px;
            color: #fff;
        }

        h3{
            font-size: 20px;
            color: #fff;
            margin-top: 20px;
            font-weight: 400;
        }
    }

    img{
        width: 100%;
        max-width: 1000px;
        border-radius: 10px;
        margin-top: 30px;
    }

    .endereco{
        margin-top: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;

        i{
            color: #1358A8;
            font-size: 25px;
            margin-right: 20px;
        }

        p{
            color: #fff;
            font-size: 18px;
            font-weight: 600;
        }
    }
}

/* OFERTA */

.oferta{
    width: 100%;
    background-image: url('./images/bg-garantia.png');
    background-size: cover;
    background-position: 20% bottom;
}

.bloco-5{
    padding: 100px 0;
}

.bloco-5 ul{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    list-style-type: none;

    li{
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 10px 0 15px 0;

        i{
            width: 30px;
            height: 30px;
            border-radius: 5px;
            background-color: #1358A8;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        p{
            width: 70%;
            font-size: 14px;
            font-weight: 500;
            color: #fff;
            margin-left: 15px;
        }
    }
}

.bloco-5 h2{
    font-size: 34px;
    line-height: 50px;
    color: #fff;
    text-align: center;
    font-weight: 400;

    sublime{
        font-weight: 600;
    }
}

.bloco-5 .container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.wrapper-price{
    margin-top: 50px;
    padding: 50px 30px;
    background-color: #0c0c0c;
    border: 1px solid #1358A8;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 400px;
    box-shadow: 0 5px 40px 20px rgba(0,0,0,0.30);
}

.wrapper-planos{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.wrapper-price img{
    margin-bottom: 20px;
}

.wrapper-price h4{
    color: white;
    font-size: 25px;
    margin-bottom: 20px;
    text-align: center;
}

.wrapper-price h1{
    font-size: 70px;
}

.wrapper-price h2{
    font-weight: normal;
}

.wrapper-price span{
    font-size: 36px;
}

.text-line{
    text-decoration: line-through;
    display: inline-block;
}

.wrapper-price > p{
    margin-top: 10px;
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
}

.wrapper-price ul{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}

/* Faixa */

.faixa{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    img{
        width: 100%;
    }
}

/* BLOCO 5 */

.bloco-6{
    padding: 30px 0 50px 0;
    background-image: url('./images/background-bonus.png');
    background-position: center;
    background-size: cover;
}

.bloco-6 .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bloco-6 h2{
    text-align: center;
    color: white;
    font-size: 36px;
    max-width: 550px;
}

.wrapper-box{
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 0 50px;
}

.box{
    background-color: #001D32;
    padding: 40px 20px;
    border-radius: 10px;
    border: 1px solid #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.box h3{
    color: white;
    font-size: 24px;
}

.box p{
    margin-top: 20px;
    color: #dadada;
    font-size: 16px;
    text-align: center;
}

.box h5{
    margin-top: 35px;
    font-size: 16px;
    font-weight: normal;
    color: #4BA0EF;
}

.box i{
    font-size: 40px;
    color: #4BA0EF;
    margin-bottom: 30px;
}

.bloco-6 .btn{
    margin-top: 60px;
}

.bloco-6 p{
    margin-top: 20px;
    color: #fff;
    font-size: 17px;
}



/* APRENDA COM QUEM */

.aprenda-com-quem{
    width: 100%;
    padding: 50px 0 100px 0;

    .container{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        max-width: 1080px;
    }

    h2{
        font-size: 30px;
        max-width: 650px;
        text-align: center;
        color: #fff;
        font-weight: 500;
        margin-bottom: 20px;
    }

    img{
        width: 19%;
    }

    .wrapper-logos{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 20px;
    }
}

/* SOBRE */

.sobre{
    width: 100%;
    padding: 50px 0 100px 0;
    background-image: url('./images/sobre.png');
    background-size: cover;
    background-position: top center;
    min-height: 600px;

    .container{
        overflow-x: clip!important;
    }
}

.sobre > img{
    display: none;
}

.sobre-logo{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 70px;
}

.wrapper-size-sobre{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.sobre-left{
    width: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: center;

    p{
        font-size: 17px;
        color: #fff;
        font-weight: 400;
        padding: 15px;
        background: radial-gradient(#1358A8 10%, #072C56 100%);
        border: 2px solid #fff;
        border-radius: 10px;
        transform: translateY(25%);
    }
}

.sobre-right{
    width: 40%;

    h2{
        font-size: 40px;
        color: #fff;
        font-weight: 600;
    }

    h5{
        font-size: 17px;
        color: #fff;
        padding: 7px 15px;
        border: 1.5px solid #fff;
        border-radius: 10px;
        font-weight: 400;
        display: inline-block;
        text-transform: uppercase;
        margin-top: 15px;
    }

    p{
        font-size: 17px;
        color: #fff;
        margin-top: 20px;
        text-align: justify;
    }

    h4{
        margin: 25px 0 10px 0;
        color: #fff;
        font-size: 17px;
    }
}


/* Vagas */

.vagas{
    width: 100%;
    padding: 60px 0;
    background-image: url('./images/background-depoimentos.png');
    background-position: center;
    background-size: cover;

    .container{
        max-width: 700px;
    }

    .content-vagas{
        background: radial-gradient(#1358A8 10%, #072C56 100%);
        padding: 30px 40px;
        border: 2px solid #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border-radius: 15px;
        box-shadow: 0 10px 35px 15px rgba(0,0,0,0.25);
    }

    .content-vagas i{
        color: #fff;
        font-size: 50px;
    }

    h2{
        font-size: 35px;
        margin-top: 10px;
        color: #fff;
        font-weight: 500;
    }

    p{
        text-align: center;
        color: #fff;
        margin-top: 15px;
    }
}

/* FOOTER */

footer{
    width: 100%;
    padding: 10px 0;
    background-color: #1358A8;

    .container{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    p{
        color: #fff;
    }

    img{
        max-width: 150px;
    }

    .wrapper-icons{
        display: flex;

        i{
            font-size: 30px;
            color: #fff;
            margin: 0 15px;
        }
    }
}

/* ANIMAÇÕES */

/* Animação */

[data-anime]{
    opacity: 0;
    transition: 1s;
}
  
[data-anime="left"]{
    transform: translateX(-100px);
}

[data-anime="right"]{
    transform: translateX(100px);
}

[data-anime="scale"]{
    transform: scale(0.5);
}

[data-anime].animation{
    opacity: 1;
    transform: translate(0,0) scale(1);
}

/* MEDIA SCREEN */

@media screen and (max-width: 1000px){
    .wrapper-box{
        grid-template-columns: 1fr 1fr;
        margin-top: 30px;
    }

    .box{
        margin-top: 40px;
    }
}

@media screen and (max-width: 800px){
    b{
        text-align: center;
        display: inline-block;
    }

    .banner{
        background-image: url('./images/bg-mobile.png');
        background-size: cover;
        background-position: center;
        padding-bottom: 0px !important;

        .container{
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            padding: 0 2%;
        }

        .banner-left{
            width: 100%;
        }

        h5{
            font-size: 14px;
        }

        h1{
            text-align: center;
            font-size: 28px;
            line-height: 38px;
        }

        img{
            width: 100%;
        }

        p{
            text-align: center;
            font-size: 16px!important;
        }
        
        .banner-left-top{

            display: flex;
            flex-direction: column;

            img{
                max-width: 170px;
            }

            .wrapper-data{
                margin: 15px 0;
            }

        }

        .mobile-ronaldo{
            display: block;
        }

        
    }

    .banner-left{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .warning-top{
        width: 100%;
        
        h6{
            font-size: 13px;
            text-align: center;
        }
    }

    /* Infos */

    .bloco-2 .container{
        flex-direction: column;
    }

    .bloco-2-left{
        width: 90%;
    }

    .bloco-2-right{
        width: 90%;
        margin-top: 30px;
    }

    .bloco-2-left-text{
        align-items: flex-start;
    }
    
    .bloco-2 .container{
        align-items: center;
    }

    .bloco-2-left-text h5{
        margin: 10px 0;
    }

    .bloco-2-right .line .line-top{
        position: relative;
        height: 120px;
    }

    /* BLOCO-4 */

    .wrapper-forcas{
        grid-template-columns: 1fr 1fr;
    }

    .bloco-4 .container{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .title-bloco-4{
        margin-bottom: 50px!important;
    }

    .motivos-bloco-4{
        flex-direction: column;
        align-items: center!important;
    }

    .single-motivo{
        margin-bottom: 30px;
        width: 90%!important;
        max-width: 350px;
    }

    .bloco-4{
        margin-top: 30px;
    }

    .bloco-4 .motivos-bloco-4 img{
        display: none;
    }

    /* BLOCO 3 */

    .bloco-3 .title-bloco-3 h4{
        text-align: center;
    }

    .bloco-3 .title-bloco-3 h5{
        text-align: center;
    }

    .wrapper-group-top, .wrapper-group-medium{
        flex-direction: column;
    }

    .wrapper-forcas .wrapper-group-top .single-forca{
        width: 100%!important;
        margin: 10px 0;
    }

    .wrapper-forcas .wrapper-group-medium .single-forca{
        width: 100%!important;
        margin: 10px 0;
    }

    .wrapper-forcas .wrapper-group-bottom .single-forca{
        width: 100%!important;
        margin: 10px 0;
    }

    .wrapper-forcas{
        grid-gap: 0;
    }

    .wrapper-group-bottom, .wrapper-group-medium{
        margin-top: 0!important;
    }


    /* BLOCO 5 */

    .wrapper-planos{
        flex-direction: column-reverse;
        align-items: center;
    }

    /* GARANTIA */

    .garantia .container{
        flex-direction: column;
    
        .left-garantia{
            width: 80%;

            P{
                text-align: center;
            }

            h2{
                text-align: center;
            }
        }

        .right-garantia{
            width: 80%;
            margin-top: 50px;
        }
    }

    

    /* SOBRE */

    .sobre{
        background-image: none;
        padding-top: 0;
        background-color: #09376D;

        .container{
            position: relative;
        }

        > img{
            display: block;
            width: 100%;
        }

        .wrapper-size-sobre{
            flex-direction: column;
            align-items: center;
            justify-content: center;

            .sobre-left{
                position: absolute;
                top: 0;
                left: 50%;
                transform: translate(-50%,-150%);
                width: 90%;
            }

            .sobre-right{
                width: 90%;

                h5{
                    font-size: 15px;
                }
            }


        }
    }

    .btn{
        font-size: 16px;
    }
}

@media screen and (max-width: 700px){
    footer{
        padding: 30px 0;

        .container{
            flex-direction: column;

            p{
                margin: 20px 0;
            }
        }
    }
}

@media screen and (max-width: 650px){
    .depoimentos h2{
        font-size: 30px;
    }

    .depoimentos .wrapper-depoimentos{
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .logos-banner img{
        width: 30%!important;
    }
}


@media screen and (max-width: 600px){
    .wrapper-forcas{
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 550px){
    .wrapper-box{
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .wrapper-logos{
        flex-wrap: wrap;
        max-width: 350px;
    }

   .aprenda-com-quem img{
        width: 40%;
        margin-top: 15px;
   }

   footer{
        img{
            max-width: 110px;
        }

        p{
            font-size: 13px;
        }
   }
}