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

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

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

body,html{
    height: 100%;
    overflow-x: hidden;
    background-color: rgb(239, 239, 239);
}

/* VARIÁVEIS */

:root{
    --corVerde: #00A7A1;
    --corVerde2: #f27618;
    --corCinza: #f27618;
    --corTema: #00A7A1;
    --corButton: #E30614;
    --corTexto: #E30614;
}

/* ESTILO DO HEADER */

header{
    width: 100vw;
    height: 100%;
    background-image: url(imagens/header-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-mobile{
    display: none;
}

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

.btn-central button{
    height: 2.4em;
    padding: 10px 20px;
    background-color: var(--corVerde);
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    cursor: pointer;
    transition: .3s;
    border: 0;
}

.btn-central button:hover{
    background-color: var(--corVerde2);
}

.btn-central button i{
    margin-right: 10px;
}

/* HEADER > LOGOTIPO */

.logo{
    max-width: 350px;
    margin-left: 50px;
}

.logo img{
    width: 100%;
}

/* HEADER > 100% FIBRA */

.img-header{
    margin-top: 60px;
    margin-left: 80px;
    max-width: 380px;
}

.img-header img{
    width: 80%;
}

/* FIM DO ESTILO DO HEADER */

/* ESTILO DAS VANTAGENS */

section.vantagens{
    padding: 60px 0;
}

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

.vant-content .vant-box{
    width: 200px;
    height: 200px;
    padding: 30px 5px;
    background-color: #fff;
    text-align: center;
    color: #fff;
    border-radius: 15px;
    margin: 0 10px;
    box-shadow: 3px 3px 10px #00000032;
    border-bottom: 2px solid var(--corCinza);
}

.vant-content .vant-box i{
    font-size: 60px;
    margin-bottom: 20px;
    color:var(--corVerde);
}

.vant-content .vant-box p{
    font-size: 16px;
    font-weight: 600;
    color: var(--corVerde);
}
/* FIM DO ESTILO DAS VANTAGENS */

/* ESTILO DA SECTION PLANOS */

section.planos{
    width: 100vw;
    padding: 100px 0 30px 0;
    margin-top: -70px;
    /* background-color: #ffffff; */
}

.txt-planos{
    width: 70%;
    margin: 0 auto 40px auto;
    text-align: center;
    font-size: 30px;
    /* font-style: italic; */
    font-weight: 700;
    color: var(--corCinza);
}

.txt-planos span{
    color: var(--corVerde);
}

/* ESTILO DOS PLANOS */

.planos-content{
    width: 100%;
}

.planos-container{
    margin: 0 auto;
}

.planos-content .planos-line{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 20px;
}

.planos-box{
    width: 320px;
    max-width: 420px;
    background-color: #fff;
    padding: 60px 20px 40px 20px;
    margin: 0 15px 0 15px;
    border-radius: 20px;
    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: 5em;
    text-align: center;
    line-height: 60px;
    font-weight: 700;
    color: var(--corTema);
}

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

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

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

.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;
    font-size: 14px;
}

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

.img-planos img{
    margin: 0 10px;
}

.planos-box i{
    color: var(--corTema);
    font-size: 25px;
    margin-right: 10px;
}

.planos-box .mais-vendido span{
    color: #fff;
}

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

.btn-planos button{
    width: 170px;
    height: 40px;
    background-color: var(--corTema);
    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);
}

/* FIM DO ESTILO DOS PLANOS */

/* ESTILO DO SERVIÇOS */

.servicos-enlace{
    width: 100%;
    padding: 120px 0 0 0;
}

.ajuste-servicos{
    display: flex;
    align-items: center;
    justify-content: center;
}

.servicos-box{
    width: 33.33%;
    height: 340px;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    background-color: #0095DA;
    text-align: center;
    position: relative;
}

.servicos-box .img-servicos{
    margin-top: -70px;
    margin-bottom: 20px;
}

.img-txt-box-servicos h3{
    font-size: 22px;
    color: #fff;
    margin-bottom: 20px;
}

.img-txt-box-servicos p{
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}

.img-txt-box-servicos .btn-servicos-box button{
    padding: 5px 30px;
    background-color: transparent;
    border: 3px solid #fff;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: .2s;
    font-weight: 600;
}

.img-txt-box-servicos .btn-servicos-box button:hover{
    transform: scale(1.05);
    background-color: #fff;
    color: #0095DA;
}

/* FIM ESTILO DO SERVIÇOS */

/* ESTILO DO FOOTER */

footer{
    width: 100%;
    border-top: 2px solid var(--corTema);
    padding: 20px 0;
}

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

.endereco-numero{
    width: 50%;
}

.endereco-numero .footer-line{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.endereco-numero .footer-line p{
    font-size: 16px;
}

.endereco-numero .footer-line i{
    margin-right: 10px;
    font-size: 24px;
    background-color: var(--corTema);
    width: 40px;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
}

.redes-sociais{
    width: 25%;
    text-align: center;
}

.redes-sociais button{
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 26px;
    margin: 0 5px;
    border-radius: 10px;
    background-color: var(--corTema);
    border: 0;
    cursor: pointer;
    transition: .3s;
}

.redes-sociais button i{
    color: #fff;
}

.redes-sociais button:hover{
    transform: scale(1.05);
}

.logotipo-click{
    width: 25%;
    text-align: right;
}

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

    /* ESTILO DO HEADER */

    header{
        width: 100%;
        height: 220px;
        background-image: none;
        background-color: #fff;
    }

    .bg-mobile{
        display: block;
        width: 100%;
        height: 350px;
        padding: 20px;
        margin-bottom: 60px;
        background-image: url(images/mobile-bg.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .bg-mobile h1{
        text-align: center;
        font-size: 18px;
        font-weight: 800;
        color: var(--corTema);
    }

    .bg-mobile h1 span{
        font-size: 32px;
        color: var(--corVerde);
    }
 
    /* HEADER > LOGOTIPO */
    
    .logo{
        max-width: 220px;
        margin: 30px auto;
        width: 70%;
    }

    .logo img{
        width: 100%;
    }
    
    /* HEADER > 100% FIBRA */
    
    .img-header{
        display: none;
    }

    /* FIM DO ESTILO DO HEADER */

    /* ESTILO DAS VANTAGENS */

    .vant-content{
        flex-direction: column;
    }

    .vant-content .vant-box{
        margin: 10px 0;
    }

    /* FIM DO ESTILO VANTAGENS */

    /* ESTILO DOS PLANOS */

    section.planos{
        width: 100vw;
        padding: 0;
        margin: 0;
    }

    .planos-content{
        width: 100%;
        display: flex;
        /* flex-direction: column; */
        align-items: center;
        justify-content: space-around;
        overflow: hidden;
    }
    
    .planos-container{
        padding-left: 0;
    }
    
    .btn-select-plano{
        width: 100%;
        margin-bottom: 20px;
        display: block;
    }
    
    .btn-select-plano > article{
        width: 100%;
    }

    .txt-planos{
        width: 100%;
        font-size: 25px;
    }  

    .planos-content .planos-line{
        flex-direction: column;
    }

    .planos-box{
        width: 320px;
        max-width: 320px;
        margin: 30px auto;     
    }

    /* FIM DO ESTILO DOS PLANOS */

    section.telefone-fixo{
        padding: 60px 0;
        text-align: center;
    }

    .price-tell{
        justify-content: center;
    }

    /* ESTILO DO SERVIÇOS */

    .servicos-enlace{
        width: 100%;
        padding: 30px 0 0 0;
    }

    .ajuste-servicos{
        flex-direction: column;
    }

    .servicos-box{
        width: 100%;
        height: auto;
        padding: 30px 0;
    }

    .servicos-box .img-servicos{
        margin-top: 0;
    }

    /* FIM ESTILO DO SERVIÇOS */

    /* ESTILO DO FOOTER */

    footer{
        width: 100%;
        border-top: 2px solid var(--corTema);
        padding: 20px 0;
    }

    .ajuste-footer{
        flex-direction: column;
    }

    .endereco-numero{
        width: 100%;
    }

    .redes-sociais{
        width: 100%;
        margin: 40px 0;
    }

    .logotipo-click{
        width: 100%;
        text-align: center;
    }
}