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

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

:root{
    --cor1: #9500A4;
    --cor2: #008ED5;
}

.interface {
    max-width: 1280px;
    margin: 0 auto;
}

.title-section {
    display: flex;
    align-items: center;
}

.txt-title {
    width: 30%;
}

.txt-title h2 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 400;
}

.txt-title h2 span {
    color: var(--cor1);
    font-size: 34px;
    font-weight: 700;
}

.decoration-title {
    width: 70%;
    height: 8px;
    background-color: var(--cor1);
}

/* ESTILO DO SLIDER */

.slider-mobile {
    display: none;
}

.slider-desktop {
    display: block;
}

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: 34%;
    display: flex;
    justify-content: center;
}

.nav-manual .manual-btn {
    border: 1px solid var(--cor1);
    padding: 5px;
    width: 40px;
    border-radius: 10px;
    cursor: pointer;
    transition: .2s;
}

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

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

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

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

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

#radio4:checked~.primeiro {
    margin-left: -75%;
}

.nav-auto div {
    border: 1px solid var(--cor1);
    padding: 5px;
    width: 40px;
    border-radius: 10px;
    cursor: pointer;
    transition: .2s;
}

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

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

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

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

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

#radio4:checked~.nav-auto .auto-btn4 {
    background-color: var(--cor2);
}

/* FIM DO ESTILO DO SLIDE */

/* ESTILO DA SECTION PLANOS */

section.planos {
    padding: 80px 0;
}

/* ESTILO DA SECTION PLANOS */

.planos-content {
    width: 100%;
}

.planos-container {
    margin: 0 auto;
}

.planos-content .planos-line {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    margin-bottom: 20px;
    margin-top: 60px;
}

.planos-box {
    width: 340px;
    max-width: 420px;
    background-color: #fff;
    padding: 60px 20px 40px 20px;
    margin: 0 15px 0 15px;
    border-radius: 40px 0px 40px 0;
    box-shadow: 3px 3px 10px #00000032;

}

.mais-vendido {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 80%;
    padding: 10px 0;
    border-radius: 0 0 20px 20px;
    font-weight: 600;
    background-color: var(--corTema);
    color: #fff;
}

.personalizado {
    background-color: var(--corTema);
}

.personalizado>.vant-planos>.vant-planos-txt>i {
    color: #fff;
}

.personalizado>.vant-planos>.vant-planos-txt>span {
    color: #fff;
}

.personalizado .mensal p {
    color: #fff;
}

.planos-box .mega h3 {
    font-size: 5.5em;
    text-align: center;
    line-height: 60px;
    font-weight: 700;
    color: var(--cor1);
}

.planos-box .mega-p p {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.mensal {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.mensal p {
    display: inline-block;
    color: #a1a1a1;
}

.mensal p:nth-of-type(2) {
    font-size: 30pt;
    font-weight: 800;
}

.mensal p:nth-of-type(3),
.mensal p:nth-of-type(1) {
    font-size: 10pt;
    text-align: left;
    font-weight: 600;
}

.mensal p:nth-of-type(3) {
    text-transform: lowercase;
    line-height: 18px;
}

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

.vant-planos-txt span{
    font-size: 14px;
}

.img-planos {
    width: 100%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-planos img {
    width: 65px;
    margin: 0 5px;
}

.planos-box i {
    color: var(--cor2);
    font-size: 24px;
    margin-right: 20px;
}

.planos-box span {
    color: #4b4b4b;
}

.btn-planos {
    text-align: center;
    margin-top: 20px;
}

.btn-planos button {
    width: 170px;
    height: 40px;
    background-color: var(--cor2);
    border: 0;
    border-radius: 30px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
}

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

.btn-mais-planos {
    text-align: center;
    margin-top: 60px;
}

.btn-mais-planos button {
    border: none;
    background-color: transparent;
    width: 260px;
    font-size: 20px;
    cursor: pointer;
    color: var(--cor1);
    text-decoration: underline;
    font-weight: 700;
    transition: .2s;
}

.btn-mais-planos button i {
    font-size: 28px;
    color: #000;
    margin-left: 10px;
}

.btn-mais-planos button:hover {
    transform: scale(1.05);
}

.obs{
    text-align: center;
    color: #585858;
    font-size: 11px;
    margin-top: 32px;
}

/* FIM DO ESTILO DA SECTION PLANOS */

/* ESTILO DA SECTION VANTAGENS */
section.vantagens {
    padding: 80px 0;
    background-color: #000;
}

section.vantagens .title-section h2 {
    color: #fff;
}

.line-vants {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    margin: 100px 0;
}

.line-vants .vants-box {
    width: 400px;
    max-width: 400px;
    height: 275px;
    background-color: #fff;
    padding: 16px;
    border-radius: 40px 0px 40px 0;
    box-shadow: 0px 8px 0px 0px var(--cor1);
}

.line-vants .vants-box .txt-icon-ajuste {
    display: flex;
    align-items: center;
}

.vants-box .txt-icon-ajuste .icon-vants {
    margin-right: 30px;
    margin-bottom: 30px;
}

.vants-box .txt-icon-ajuste .icon-vants i {
    font-size: 50px;
    color: var(--cor1);
}

.vants-box .txt-icon-ajuste .txt-vants h3 {
    font-size: 20px;
    font-weight: 400;
    margin-top: -20px;
}

.vants-box .txt-icon-ajuste .txt-vants h3 span {
    font-weight: 700;
    color: var(--cor1);
}

.vants-box p {
    color: #4b4b4b;
    text-align: center;
}

/* FIM DO ESTILO DA SECTION VANTAGENS */

/* ESTILO DA PORTAL DO CLIENTE E APP */

section.cliente-app {
    width: 100%;
    padding: 80px 0px 80px 200px;
    margin: 0 auto;
    ;
}

.adjust-client {
    width: 100%;
    display: flex;
    gap: 40px;
    align-items: center;
}

.img-area-cliente {
    width: 50%;
}

.img-area-cliente img {
    width: 60%;
    border-radius: 20px;
}

.img-area-cliente h3 {
    font-size: 28pt;
    margin-top: 10px;
    color: var(--cor1);
}

.img-area-cliente p {
    font-size: 12pt;
    margin-bottom: 20px;
    padding: 0px 8px;
}

.img-area-cliente button {
    width: 280px;
    height: auto;
    padding: 10px;
    border-radius: 30px;
    border: 0;
    cursor: pointer;
    margin-right: 10px;
    font-weight: 500;
    color: #fff;
    font-size: 14pt;
    background-color: var(--cor2);
}

.img-area-cliente button i {
    color: #FFF;
    margin-right: 10px;
    font-size: 22px;
}

.baixe-app {
    width: 55%;
    height: auto;
    background-color: var(--cor1);
    border-radius: 30px 0 0 30px;
    padding: 45px 280px 45px 45px;
}

.baixe-app h3 {
    font-size: 35pt;
    line-height: 45px;
    text-transform: uppercase;
    font-weight: 900;
    color: #FFF;
}

.baixe-app p {
    font-size: 12pt;
    margin: 30px 0;
    color: #FFF;
}

.baixe-app img {
    width: 200px;
    margin-top: 8px;
}

.baixe-app .google-btn {
    width: 150px;
    margin-right: 100px;
    transition: .2s;
}

.google-btn:hover{
    transform: scale(1.1);
}


/* FIM DO ESTILO AREA DO CLIENTE */

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

    /* RESPONSIVO PARA O TÍTULO DAS SECTION */
    .title-section {
        display: block;
    }

    .txt-title {
        width: 100%;
    }

    .txt-title h2 {
        margin-bottom: 30px;
        text-align: center;
    }

    .decoration-title {
        width: 100%;
    }

    /* RESPONSIVO DO SLIDE */
    .slider-desktop {
        display: none;
    }

    .slider-mobile {
        display: block;
    }

    section.slider {
        padding-top: 93px;
    }

    .nav-manual,
    .nav-auto {
        margin-top: 60%;
    }

    /* RESPONSIVO DOS PLANOS */

    .planos-content .planos-line {
        align-items: center;
        gap: 50px;
        flex-direction: column;
    }

    .planos-box {
        width: 320px;
        max-width: none;
    }

    .line-vants {
        margin: 50px 0;
    }

    .planos-page {
        margin-top: 60px;
    }

    /* RESPONSIVO DAS VANTEGENS */
    .line-vants {
        gap: 50px;
        flex-direction: column;
    }

    /* RESPONSIVO DA PORTAL DO CLIENTE */
    section.cliente-app {
        width: 100%;
        padding: 40px 0 0 0;
        text-align: center;
    }

    .adjust-client {
        width: 100%;
        gap: 40px;
        flex-direction: column;
    }

    .img-area-cliente {
        width: 100%;
    }

    .img-area-cliente img {
        width: 80%;
        padding-right: 0;
        min-width: none;
    }


    .baixe-app {
        width: 100%;
        height: auto;
        border-radius: 0;
        padding: 45px;
    }


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

@media screen and (max-width:767px){
    .line-vants .vants-box {
    width: 300px;
    }

    .baixe-app .google-btn{
        margin: auto;
    }
}

@media screen and (min-width:768px) and (max-width:992px){

    .planos-box {
        width: 500px;
    }

    .vant-planos-txt span{
        font-size: 14pt !important;
    }

    .vants-box p{
        font-size: 18px;
    }

    .img-area-cliente p {
    font-size: 14pt;
    }

    .baixe-app p{
        font-size: 16pt;
    }

    .baixe-app img{
        width: 75%;;
        margin-top: 24px;
    }

    .baixe-app .google-btn{
        display: flex;
        align-items: center;
        width: 220px;
        margin: auto;
    }

    .line-meedle a, .line-meedle p{
        font-size: 16pt;
    }

    .line-down p{
        font-size: 16pt !important;
    }

    .line-down img {
    width: 70% !important;
    }
}