@charset "uft-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --corLaranja: #ff7200;
    --corVerde: #00a900;
}

/* ESTILOS GERAIS */

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

.container{
    max-width: 1080px;
    margin: 0 auto;
}

body, html{
    width: 100%;
    height: 100%;
    background-color: #e7e7e7;
    scroll-behavior: smooth;
}

/* ESTILO DO CABEÇALHO */

header{
    width: 100%;
    height: auto;
    background-color: transparent;
    padding: 40px 2%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
}

.ajuste-menu{
    display: flex;
    align-items: center;
}

article.logotipo{
    width: 30%;
}

article.logotipo img{
    width: 100%;
    min-width: 180px;
}

article.menu-desktop{
    width: 70%;
    text-align: right;
}

article.menu-desktop nav a{
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    padding: 10px;
    position: relative;
    transition: 0.2s;
}

article.menu-desktop nav a::after{
    content: "";
    width: 0;
    height: 4px;
    background-color: var(--corLaranja);
    position: absolute;
    top: 40px;
    left: 0;
    transition: 0.2s;
}

article.menu-desktop nav a:hover{
    color: var(--corLaranja);
}

article.menu-desktop nav a:hover::after{
    width: 100%;
}


article.menu-desktop nav a.area-cliente-menu{
    background-color: var(--corLaranja);
}

article.menu-desktop nav a.area-cliente-menu:hover{
    color: #fff;
}

/* ESTILO DO MENU MOBILE */

.menu-mobile{
    width: 100%;
    height: 0;
    padding: 0;
    background-color: #009200;
    position: fixed;
    top: 122px;
    left: 0;
    visibility: hidden;
    transition: .5s ;
    overflow: hidden;
    z-index: 9999;
}

.menu-mobile nav a{
    display: block;
    text-align: center;
    text-decoration: none;
    color: #fff;
    padding: 10px 0;
    font-size: 18pt;
    font-weight: 300;

}

.menu-mobile nav a:hover{
    background-color: var(--corLaranja);
}

#btn-menu{
    background: transparent;
    width: 40px;
    height: 40px;
    outline: none;
    cursor: pointer;
    border: 0;
    transition: .2s;
    display: none;
    position: absolute;
    top:50%px;
    right: 0;
    margin-right: 20px;
}

.linha{
    position: relative;
    top: 3px;
    height: 4px;
    background: #fff;
    width: 40px;
    display: block;
    margin: 8px auto;
    transform-origin: center;
    transition: .2s;
    border-radius: 20px;
} 

#btn-menu.ativo .linha:nth-child(1){
    transform: translateY(12px) rotate(-45deg);
    background-color: #fff;
}

#btn-menu.ativo .linha:nth-child(3){
    transform: translateY(-12px) rotate(45deg);
    background-color: #fff;
}

#btn-menu.ativo .linha:nth-child(2){
    width: 0;
}

/* ESTILO DO SLIDE */

section.slider{
    margin: 0 auto;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.slide-content{
    width: 400%;
    height: auto;
    display: flex;
}

.slide-content input{
    display: none;
}

.slide-box{
    width: 25%;
    height: auto;
    position: relative;
    transition: 1s;
    text-align: center;
}

.slide-box img{
    width: 100%;
}

.nav-manual{
    position: absolute;
    width: 100%;
    margin-top: 40%;
    display: flex;
    justify-content: center;
}

.nav-manual .manual-btn{
    border: 1px solid var(--corLaranja);
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: .2s;
}

.nav-manual .manual-btn:not(:last-child){
    margin-right: 10px;
}

.nav-manual .manual-btn:hover{
    background-color: var(--corLaranja);
}

#radio1:checked ~ .primeiro{
    margin-left: 0;
}

#radio2:checked ~ .primeiro{
    margin-left: -25%;
}

#radio3:checked ~ .primeiro{
    margin-left: -50%;
}

.nav-auto div{
    border: 1px solid var(--corLaranja);
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: .2s;
}

.nav-auto{
    position: absolute;
    width: 100%;
    margin-top: 40%;
    display: flex;
    justify-content: center;
}

.nav-auto div:not(:last-child){
    margin-right: 10px;
}

#radio1:checked ~ .nav-auto .auto-btn1{
    background-color: var(--corLaranja);
}

#radio2:checked ~ .nav-auto .auto-btn2{
    background-color: var(--corLaranja);
}

#radio3:checked ~ .nav-auto .auto-btn3{
    background-color: var(--corLaranja);
}

/* FIM DO ESTILO DO SLIDE */

/* ESTILO DAS VANTAGENS */

section.vantagens{
    width: 100%;
    padding: 80px 2%;
    text-align: center;
}

.title-vant{
    width: 60%;
    margin: 0 auto;
    margin-bottom: 60px;
}

.title-vant h2{
    font-size: 2.2em;
    line-height: 40px;
}

.vantagens-content{
    width: 100%;
    display: flex;
}

.vantagens-content .vant-box{
    padding: 40px 20px;
    width: calc(100% / 3);
    max-width: 340px;
    background-color: #fff;
    margin: 0 20px;
    border-bottom: 4px solid var(--corLaranja);
    box-shadow: 0 10px 10px 1px #0000003a;
}

.vantagens-content .vant-box h3{
    font-size: 18pt;
    margin: 10px 0;
}

/* FIM DO ESTILO DAS VANTAGENS */

/* ESTILO DOS PLANOS */

section.planos{
    width: 100%;
    padding: 40px 2% 90px 2%;
}

.title-planos{
    width: 55%;
    margin-bottom: 60px;
    padding: 0 2%;
}

.title-planos h2{
    font-size: 2.2em;
    line-height: 40px;
}

.planos-content{
    width: 100%;
    display: flex;
}

.planos-content .planos-box{
    width: calc(100% / 4);
    padding: 10px 20px;
    background-color: #fff;
    margin: 0 10px;
    box-shadow: 0 10px 10px 1px #0000003a;
    border-radius: 15px;
    position: relative;
}


.mais-vendido{
    position: absolute;
    top: -40px;
    left: 0;
    z-index: -5;
    text-align: center;
    width: 100%;
    background-color: var(--corLaranja);
    padding: 10px 0 30px 0;
    color: #fff;
    font-weight: 500;
    border-radius: 15px;
}

.planos-content .planos-box .assine-ganhe > p{
    font-size: 18px;
    font-weight: 600;
    color: var(--corLaranja);
    line-height: 30px;
}

.planos-content .planos-box .mega > p{
    font-size: 28pt;
    font-weight: 700;
    color: var(--corVerde);
    line-height: 30px;
}

.planos-content .planos-box .preco-assine-ganhe > p{
    font-size: 30px;
    margin-top: 14px;
}


.vant-planos{
    margin: 30px 0;
}

.vant-planos-txt{
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.vant-planos-txt:not(:last-child){
    border-bottom: 1px solid #ccc;
}

.vant-planos-txt i{
    font-size: 25px;
    margin-right: 10px;
    color: var(--corVerde);
}

.vant-planos-txt span{
    width: 100%;
    font-size: 15px;
}

.btn-planos{
    width: 100%;
    text-align: center;
}

.btn-planos button{
    width: 150px;
    height: 40px;
    background-color: var(--corLaranja);
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    font-size: 18px;
}
/* FIM DO ESTILO DOS PLANOS */

/* ESTILO DA SECTION "DIVERSÃO GARANTIDA" */

section.diversao-garantida{
    width: 100%;
    height: 400px;
    background-image: url(../images/diversao-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 40px 0;
}

article.diversao-txt{
    width: 40%;
    color: #fff;
    position: absolute;
    left: 55%;
}

article.diversao-txt h2{
    font-size: 24pt;
    line-height: 40px;
    margin-bottom: 30px;
}

.box-info-diversao img{
    width: 70px;
    margin-right: 10px;
}

.box-info-diversao{
    display: flex;
    align-items: center;
    font-size: 18px;
    margin-bottom: 35px;
}

/* FIM DO ESTILO "DIVERSÃO GARANTIDA" */

/* ESTILO DO BAIXE O APP */

section.baixe-app{
    width: 100%;
    padding: 40px 2%;
    background-color: var(--corVerde);
    color: #fff;
}

.ajuste-baixe-app{
    display: flex;
    align-items: center;
}

.txt-baixe-app{
    width: 50%;
}

.txt-baixe-app .title-baixe-app h2{
    font-size:60px;
    line-height: 40px;
    font-weight: 800;
}

.title-baixe-app p.controle{
    font-size: 20px;
    margin-bottom: 20px;
}

.txt-baixe-app > img{
    margin-top: 20px;
}

.img-baixe-app{
    width: 50%;
}

.img-baixe-app img{
    width: 100%;
}

/* FIM DO ESTILO BAIXE O APP */

/* ESTILO DO FOOTER */

footer{
    width: 100%;
    background-color: #e7e7e7;
    padding: 20px 2%;
}

.ajuste-footer{
    display: flex;
}

.endereco{
    width: 60%;
}

.redes-sociais,.logo-click-slim{
    width: 20%;
}

.redes-sociais button{
    width: 40px;
    height: 40px;
    background-color: var(--corLaranja);
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    margin: 0 5px;
}

.redes-sociais button i{
    font-size: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-click-slim{
    justify-content: end;
    display: flex;
    align-items: flex-end;
}

.btn-whatsapp{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #2ea100;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}

.btn-whatsapp i{
    color: #fff;
    font-size: 2em;
}

.btn-whatsapp:hover{
    opacity: 1;
}

/* ESTILO DA MENSAGEM DE COOKIES */

.lgpd{
    width: 70%;
    background-color: #fff;
    padding: 20px;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    box-shadow: 0px 0px 12px 0px #0000004a;
    border-radius: 10px;
    display: none;
}

.lgpd div p{
    margin-right: 10px;
}

.lgpd div button{
    width: 90px;
    height: 40px;
    border: 0;
    background-color: var(--corVerde);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.lgpd.mostrar{
    display: flex;
}

@media screen and (max-width: 1030px) {

    header{
        position: fixed;
        top: 0;
        left: 0;
        background-color: var(--corVerde);
    }

    article.menu-desktop{
        display: none;
    }

    #btn-menu{
        display: block;
    }

    .menu-mobile.abrir{
        visibility: visible;
        height: calc(100vh - 122px);
    }

    /* SLIDER */

    section.slider{
        margin: 120px auto;
    }
    

    /* ESTILO DAS VANTAGENS */

    section.vantagens{
        width: 100%;
        padding: 20px 2%;
        text-align: center;
    }

    .title-vant{
        width: 100%;
    }

    .title-vant h2{
        font-size: 2.1em;
    }

    .vantagens-content{
        display: block;
    }

    .vantagens-content .vant-box{
        width: 100%;
        margin: 30px auto;
    }

    /* FIM DO ESTILO DAS VANTAGENS */

    /* ESTILO DOS PLANOS */

    section.planos{
        width: 100%;
        padding: 40px 2% 90px 2%;
    }

    .title-planos{
        width: 100%;
        text-align: center;
    }

    .title-planos h2{
        font-size: 2.1em;
    }

    .planos-content{
        width: 100%;
        display: block;
    }

    .planos-content .planos-box{
        width: 100%;
        max-width: 340px;
        margin: 30px auto;
    }

    .planos-content .planos-box:last-child{
        margin: 80px auto;
    }

    .btn-planos button{
        width: 200px;
        height: 60px;
        font-size: 20px;
    }
    /* FIM DO ESTILO DOS PLANOS */

    /* ESTILO DA SECTION "DIVERSÃO GARANTIDA" */

    section.diversao-garantida{
        width: 100%;
        height: auto;
        background-position: 10%;
        padding: 40px 4%;
    }

    article.diversao-txt{
        width: 100%;
        color: #fff;
        position: static;
    }

    article.diversao-txt h2{
        font-size: 20pt;
        line-height: 40px;
        margin-bottom: 30px;
        text-shadow: 1px 1px 10px #000;
    }

    .box-info-diversao img{
        width: 70px;
        margin-right: 10px;
    }

    .box-info-diversao{
        text-shadow: 1px 1px 5px #830e0e
    }

    /* FIM DO ESTILO "DIVERSÃO GARANTIDA" */

    section.baixe-app{
        width: 100%;
        padding: 40px 2%;
        background-color: var(--corVerde);
        color: #fff;
    }
    
    .ajuste-baixe-app{
        display: block;
    }
    
    .txt-baixe-app{
        width: 100%;
    }
    
    .txt-baixe-app .title-baixe-app h2{
        text-align: center;
        line-height: 55px;
    }
    
    .title-baixe-app p.controle{
        text-align: center;
        font-size: 16px;
    }

    .txt-baixe-app{
        text-align: center;
    }
    
    .img-baixe-app{
        width: 100%;
        text-align: center;
    }
    
    .img-baixe-app img{
        width: 80%;
        margin-top: 20px;
    }
    
    /* FIM DO ESTILO BAIXE O APP */

    footer{
        width: 100%;
        background-color: #e7e7e7;
        padding: 20px 2%;
    }
    
    .ajuste-footer{
        display: block;
    }
    
    .endereco{
        width: 100%;
        text-align: center;
    }

    .endereco address{
        font-size: 14px;
    }

    .endereco p{
        font-size: 12px;
    }
    
    .redes-sociais,.logo-click-slim{
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }
    
    .logo-click-slim{
        display: block;
    }

    /* ESTILO DA MENSAGEM DE COOKIES */

    .lgpd{
        flex-direction: column;
        width: 80%;
        align-items: center;
        font-size: 14px;
    }

    .lgpd p{
        margin-bottom: 20px;
    }
}