﻿:root{
    --cor-principal: #fecc46;
    --cor-secundaria: #2e4899;
    --cor-branca:#fff;
}

/* FONTE DO SITE */
@import url('https://fonts.googleapis.com/css2?family=Barlow&amp;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&amp;display=swap');
body{
    margin: 0;
    padding: 0;
    overflow-x:hidden !important;
}

@keyframes fadeIn{
    0%{
        opacity: 0;
        margin-left: -100%;
    }
    100%{
        opacity: 1;
        margin-left: 0;
    }
}

/* ===== [Menu do site] =====*/
header{
    background-color: var(--cor-principal);
    padding: 10px 30px;
    font-family: 'Poppins';
    position: relative;
    /*overflow-x:hidden !important;*/
}
.site-nav{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo-nav{
    width: 20%;
    font-weight: 800;
    color: var(--cor-secundaria);
    text-transform: uppercase;
    font-size: 25px;
}

.logo-nav img{
    height: 60px;
}

.site-menu{
    width: 60%;
}

.itens-menu{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.site-menu li{
    list-style-type: none;
    margin: 0px 30px;
}

.site-menu li a{
    text-decoration: none;
    color: var(--cor-secundaria);
    font-weight: 600;
    font-size: 18px;
}

.menu-toggle{
    display: none;
}

.linha1, .linha2, .linha3{
    height: 3px;
    background: var(--cor-secundaria);
    width: 25px;
    margin: 5px 0px;
}

.central-button{
    width: 20%;
}

.central-button button{
    background: var(--cor-secundaria);
    color: var(--cor-branca);
    border:none;
    padding: 5px 20px;
    border-radius: 30px;
    font-weight: 500;
    font-size:18px;
    font-family: 'Poppins';
}

.botao-desktop{
    display: block;
}

.botao-mobile{
    display: none;
}

.anima-1{
    animation: fadeIn 1.5s;
    animation-delay: 100ms;
}

.anima-2{
    animation: fadeIn 1.5s;
    animation-delay: 600ms;
}

.anima-3{
    animation: fadeIn .8s;
    animation-delay: 500ms;
}

/* ==== Configuração Mobile ====*/
@media(min-width:320px) and (max-width:575px){
    header{
        padding: 10px 10px;
    }

    .site-nav{
        justify-content: space-around;
    }

    .site-menu{
        order:0;
        background: var(--cor-principal);
        width: 10%;
    }

    .menu-toggle{
        display: block;
    }

    .itens-menu{
        display: block;
        position: absolute;
        top: 50px;
        left: -100%;
        z-index:9999;
        background: var(--cor-principal);
        width: 100%;
        height: 90vh;
    }

    .itens-menu li{
        padding: 20px 0px;
        text-align: center;
    }

    .logo-nav{
        order:1;
        width: 45%;
        display: flex;
        justify-content: center;
    }

    .logo-nav img{
        height: 30px;
    }

    .central-button{
        order: 2;
        width: 45%;
    }

    .central-button button{
        font-size: 13px;
    }

    .botao-desktop{
        display: none;
    }

    .botao-mobile{
        display: flex;
        justify-content: flex-end;
    }
}


/* ==== MOBILE L, TABLET, 1024PX ===== */
@media(min-width: 576px) and (max-width:1023px){
    .menu-toggle{
        display: block;
        width: 10%;
    }

    .site-menu{
        order: 0;
        width: 10%;
    }

    .logo-nav{
        order: 1;
        width: 57%;
        display: flex;
        justify-content: center;
    }

    .itens-menu{
        position: absolute;
        display: block;
        top: 80px;
        left: -100%;
        background: var(--cor-principal);
        width: 100vw;
        height: 90vh;
    }

    .itens-menu li{
        padding: 20px 0px;
        text-align: center;
    }

    .central-button{
        width: 33%;
        order: 2;
    }

}

.esconder{
    display: none;
}

.rotacionar{
    transform: rotate(45deg);
    transition: .3s ease;
}

.rotacionar-inv{
    transform: rotate(-45deg);
    margin-top: -8px;
    transition: .3s ease;
}

.menu-mostrar{
    left:0 !important;
    transition: .5s ease;
}

/* ==== [Banner principal] ==== */
.hero-site{
    height: 90vh;
    background: url(../img/bg-uhd.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    overflow-x:hidden !important;
}

@media (min-width:300px) and (max-width: 767px){
    .hero-site{
        height: 30vh;
        background: url(../img/bg-uhd.jpg);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        width: 100%;
        overflow-x:hidden !important;
    }
    }

@media (min-width:300px) and (max-width: 767px){
.hero-site{
    height: 55vh;
    background: url(../img/bg-mobile.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    overflow-x:hidden !important;
}
}

/* ===== ABA DE PLANOS ===== */
.aba-planos{
    padding: 60px 0px;
    overflow-x:hidden !important;
}


.plano-header{
    font-family: 'Poppins';
}

.plano-header h4{
    text-align: center;
    color: var(--cor-secundaria);
    font-size: 35px;
    font-weight: 700;
}

.plano-header h2{
    text-align: center;
    font-size: 50px;
    font-weight: 700;
    font-style: italic;
    -webkit-text-stroke: 2px var(--cor-secundaria);
    color: #fff;
    margin-top: -10px;
}

/* [card de plano] */
.plano-body{
    padding-top: 40px;
}

.card-plano{
    max-width: 300px !important;
    background: var(--cor-branca);
    padding:20px 30px !important;
    border: 1px solid var(--cor-secundaria);
    border-radius: 35px;
    font-family: 'Poppins';
    margin: 20px 20px;
}

.card-header p{
    color:var(--cor-secundaria);
    text-align: center;
    font-weight: 600;
    padding-top: 40px;
    font-size: 15px;
}

.card-header h4{
    color: var(--cor-secundaria);
    text-align: center;
    font-weight: 800;
    font-size: 45px;
    text-transform: uppercase;
    margin-top: -25px;
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 15px;
}

.card-header h4::after{
    content: "";
    position: absolute;
    display: block;
    width: 70px;
    height: 4px;
    background: var(--cor-secundaria);
    bottom: 0px;
    left: calc(42% - 20px);
}

.plano-caracteristica{
    padding-left: 10px;
    padding-top: 10px;
    padding-right: 10px;
}

.plano-caracteristica li{
    list-style-type: none;
    color: var(--cor-secundaria);
    font-size: 15px;
    font-weight: 500;
    padding-top: 10px;
}

/*
.plano-pricing h4{
    color: #fff;
    text-align: center;
    padding: 40px 0px;
    font-size: 45px;
    font-weight: 700;
}


.plano-pricing span{
    font-size: 20px;
    font-weight: 600;
}

*/

.botao-contratar{
    padding-bottom: 25px;
}

.botao-contratar p{
    text-align: center;
    margin-top: 40px;
}

.botao-contratar button{
    width: 90%;
    padding: 10px 30px;
    border: none;
    border-radius: 30px;
    background: var(--cor-principal);
    font-weight: 600;
    color: var(--cor-secundaria);
    text-transform: uppercase;
    letter-spacing: 0px;
}

@media (min-width:320px) and (max-width:575px){
    .plano-body{
        padding-left: 20px;
        padding-right: 10px;
    }

    .card-plano{
        margin: 20px auto;
        margin-right: 20px !important;
        margin-left: 10px;
    }
}

/* ==== PLANOS CONDOMINIO ==== */

.condominio-div {
    height: 50vh;
    margin: 20px 0px;
    background: url(../img/bg-condominio.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    overflow-x: hidden !important;
    border-radius: 50px;
}

@media(min-width:320px) and (max-width:767px){

    .condominio-div {
    height: 60vh;
    margin: 20px 0px;
    background: url(../img/bg-condominio-mobile.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    overflow-x: hidden !important;
    border-radius: 50px;
}

    .aba-vantagens{
        height: 55vh;
        width: 100%;
        background: url(../img/bg-condominio-mobile.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        overflow-x: hidden !important;  
    }
    .redes-sociais{
        height: 55vh;
        width: 100%;
        background: url(../img/socialMedia-mobile.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        overflow-x: hidden !important;  
    }
}

@media(min-width:768px) and (max-width:1024px){
    .aba-vantagens{
        height: 30vh;
        width: 100%;
        background: url(../img/bg-condominio.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        overflow-x: hidden !important;
    }
     .redes-sociais{
         height: 55vh;
        width: 100%;
        background: url(../img/socialMedia-mobile.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        overflow-x: hidden !important;  
    }
}

/* ===== Aba Vantagens ===== */

@media(min-width:1024px){
.redes-sociais{
        height: 55vh;
        width: 100%;
        background: url(../img/socialMedia.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        overflow-x: hidden !important;  
    }}
.aba-vantagens{
    padding-top: 40px;
}
/*.banner-vantagem {
    height: 50vh;
    width: 100%;
    border-radius: 50px;
    background: url(../img/bg-vant-desk.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    overflow-x: hidden !important;
}*/
 .aba-vantagens{
        height: 60vh;
        width: 100%;
        background: url(../img/bg-vant-desk.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        overflow-x: hidden !important;  
    }

@media(min-width:320px) and (max-width:767px){
    .aba-vantagens{
        height: 60vh;
        width: 100%;
        background: url(../img/bg-vant-mobile.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        overflow-x: hidden !important;  
    }
}

@media(min-width:768px) and (max-width:1024px){
    .aba-vantagens{
        height: 60vh;
        width: 100%;
        background: url(../img/bg-vant-desk.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        overflow-x: hidden !important;
    }
}

/* ===== QUEM SOMOS ===== */

.quem-somos{
    background: var(--cor-principal);
    padding: 40px 0px;
    font-family: 'Poppins';
    color:#2e4899;
    overflow-x:hidden !important;
}

.who-header h2{
    color: transparent;
    font-weight: 700;
    font-style: italic;
    font-size: 50px;
    -webkit-text-stroke: 2px var(--cor-secundaria);
    margin-top: -10px;
}

.who-header{
    padding: 40px 0px;
}

.who-header h4{
    color: var(--cor-secundaria);
    font-size: 35px;
    font-weight: 700;
}

.who-texto p{
    margin-top: 0px;
    margin-right: 200px;
    font-size: 20px;
}

.who-img p{
    text-align: center;
}

.who-img{
    padding-top: 10px;
}

.who-img img{
    height: 400px;
}

@media (min-width:768px) and (max-width:1024px){
    .who-texto p{
        margin-right: 0px;
        margin: 0px 40px;
        margin-top: -30px;
    }

    .who-header h4{
        text-align: center;
    }

    .who-header h2{
        text-align: center;
    }
}

@media (min-width:320px) and (max-width:767px){
    .who-texto p{
        margin: 0px auto;
        margin-left: 20px;
        margin-top: -30px;
        font-size: 17px;
    }

    .who-header h4{
        text-align: center;
    }

    .who-header h2{
        text-align: center;
        margin-top:-20px;
    }

    .whoimgimg{
        margin-top: 40px;
    }
}

/* ===== FAQ ===== */
.faq{
    padding: 40px 0px;
    font-family: 'Poppins';
    overflow-x:hidden !important;
}

.faq-header{
    padding: 30px 0px;
}

.faq-header h4{
    font-weight: 700;
    font-size:35px;
    text-align: center;
    color: var(--cor-secundaria);
}

.faq-header h2{
    color: transparent;
    font-weight: 700;
    font-size: 50px;
    -webkit-text-stroke: 2px var(--cor-secundaria);
    text-align: center;
    margin-top: -20px;
    font-style: italic;
}

.accordeon-ask{
   max-height: 102px;
    overflow: hidden;
}

.pergunta-clicada{
    max-height: 300px !important;
    transition: 1s ease;
}

.pergunta-section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background:var(--cor-secundaria);
    padding: 10px 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.accordeon-acionado{
    border-radius: 15px 15px 0px 0px !important;
}

.resposta-acionada{
    border-radius: 0px 0px 15px 15px !important;
}

.pergunta-icone{
    width: 5%;
    color: #fff;
    font-size: 35px;
}

.accordeon-icone{
    width: 3%;
    color: #fff;
    font-size: 35px;
    -webkit-text-stroke: 2px #fff;
}

.icon-rotate{
    transform: rotate(180deg);
}

.pergunta{
    width: 92%;
    color: #fff;
    font-size: 20px;
}

.resposta{
    padding: 10px 30px;
    border: 1px solid var(--cor-secundaria);
}

.mostrar-resposta{
    display: block !important;
}

@media(min-width:768px) and (max-width:1024px){
 .perguntas-corpo{
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     
 }
 
 .pergunta{
     font-size: 18px;
     padding-left:30px;
 }
}

@media(min-width:320px) and (max-width: 767px){
    .pergunta-section{
        padding:5px 10px;
    }
    
    .pergunta{
        font-size: 14px;
        padding-left:10px;
        padding-right:10px;
        width:84%;
    }
    
    .pergunta-icone{
        font-size:20px;
        width:7%;
    }
    
    .accordeon-icone{
        font-size:20px;
        width:7%;
    }
    
    .pergunta-clicada{
    max-height: 350px !important;
    transition: 1s ease;
    }
    
    .resposta{
        display:none;
    }
}


/* ===== RODAPÉ ===== */
footer{
    font-family: 'Poppins';
    background: var(--cor-principal);
    padding-top: 50px;
    padding-bottom: 0px;
    overflow-x:hidden !important;
}

footer li{
    list-style-type: none;
    padding: 5px 0px;
    font-weight: 500;
}

footer li a{
    text-decoration: none;
    color: var(--cor-secundaria);
}

.footer-logo img{
    margin-top: 20px;
    height: 80px;
}

.footer-logo h4{
    font-size:14px;
    padding-left: 10px;
    font-weight: 400;
    color: var(--cor-secundaria);
    margin-top: -10px;
}

.footer-menu h4{
    color: var(--cor-secundaria);
    font-size: 20px;
    font-weight: 600;
}

.footer-contatos h4{
    color: var(--cor-secundaria);
    font-size: 20px;
    font-weight: 600;
}

.creditos-corpo{
    margin-top: 60px;
    background: var(--cor-secundaria);
    padding: 40px 0px;
}

.site-creditos{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.marca-empresa{
    color:var(--cor-branca);
    font-size: 15px;
    font-weight: 200;
}

.arte-de-marte{
    color: var(--cor-branca);
    font-weight: 200;
    font-size: 15px;
}

.arte-de-marte a{
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

@media (min-width:768px) and (max-width:1024px){
    .footer-logo img{
        margin-top: 0px;
    }

    .footer-logo h4{
        font-size: 12px;
    }

    .footer-menu li a{
        font-size: 14px;
    }

    .footer-contatos li a{
        font-size: 14px;
    }
}

@media (min-width:320px) and (max-width:767px){
    .footer-logo{
        margin: 40px 0px;
    }

    .footer-logo p{
        text-align: center;
    }

    .footer-logo h4{
        margin: 0px auto;
    }

    .footer-menu{
        margin: 40px 0px;
    }

    .footer-menu h4{
        padding-left: 10px;
    }

    .footer-menu li{
        padding-left: 10px;
    }

    .footer-contatos{
        margin: 40px 0px;
    }

    .footer-contatos h4{
        padding-left: 10px;
    }

    .footer-contatos li{
        padding-left: 10px;
    }

    .creditos-corpo{
        padding-top:20px;
        margin-top: 0px;
    }

    .site-creditos{
        flex-direction: column;
        justify-content: center;
        padding: 0px 0px;
    }

    .marca-empresa{
        font-size: 11px;
        padding-left: 10px;
        margin: 20px 0px;
    }

    .marca-empresa p{
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .arte-de-marte{
        font-size: 11px;
    }

    .arte-de-marte p{
        text-align: center;
        padding: 0;
        margin: 0;
    }
        
}


/* ===== Botão Flutuante ===== */
.botao-whatsapp{
    position: fixed;
    right: 20px;
    bottom: 15px;
}

.botao-whatsapp img{
    height: 60px;
}

.botao-speedtest{
    position: fixed;
    right: 20px;
    bottom: 80px;
    background: #fff;
    border-radius: 100%;
    padding: 2px;
}

.botao-speedtest img{
    height: 55px;
}

@media (min-width:320px) and (max-width:767px){
    .botao-speedtest{
        bottom: 90px;
    }
    
    .botao-speedtest img{
        height: 65px;
    }

    .botao-whatsapp img{
        height: 70px;
    }
}

/* ==== AVALIAÇÕES GOOGLE ==== */
.av-card{
    width: 300px !important;
    margin: 10px !important;
    border: 1px solid var(--cor-secundaria);
    border-radius: 30px;
    text-align: center;
    padding: 40px 20px !important;
    font-family: 'Poppins';
    font-size: 15px;
    margin-top: 30px !important;
    color: var(--cor-secundaria);
}

.img-user{
    height: 100px;
    margin-bottom: 20px;
}

.img-estrelas{

}

.av-texto{
    font-weight: 300;
}

.nome-cliente{
    font-weight: 700;
}
