@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Lobster&family=Poppins:wght@300;500&family=Yellowtail&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

:root{
    --main-color:#040714;
    --site-color: #fff;
    --active-color:#0063e5;
    --first-color: #08132f;
    --second-color: #090b13;
    --third-color: #1b202a;
    --six-color: #ffd700;
    --whats-color: #25d366;
    --facebook-color: #3b5998;
    --instagram-color: #3f72fb;
}

body{
    background-color: var(--site-color);
    color: var(--second-color);
}

/*inicio topo*/
.max-width{
    max-width: 1300px;
    padding: 0 10px;
    margin: auto;
}
.navbar .logo a{
    color: #000 /*linear-gradient(to right, rgb(238, 255, 0), #FF0)*/;
    font-size: 35px;
    font-weight: 500;
    font-family:'Poppins', sans-serif;
}



.navbar{
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 14px 0;
    font-family: 'Poppins',sans-serif;
    background-color: var(--site-color);
    border-bottom: solid var(--third-color) 1px;
}

.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .menu li{
    list-style: none;
    display: inline-block;
}

.navbar .menu li a{
    display: block;
    color: var(--second-color);
    font-size: 18px;
    font-weight: 400;
    margin-left: 25px;
}
.menu-btn{
    color: var(--second-color);
    font-size: 25px;
    cursor: pointer;
    display: none;
}

@media(max-width:947px){
    .menu-btn{
        display: block;
        z-index: 999;
    }
    #menu-icon.active::before{
        content: "\f00d";
    }
    .navbar .menu{
        background-color: var(--site-color);
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        text-align: center;
        padding-top: 80px;
        transition: all 0.5s ease-in-out;
    }
    #menu-site.active{
        left: 0;
    }
    .navbar .menu li{
        display: block;
    }
    .navbar .menu li a{
        display: inline-block;
        margin: 13px 0;
        font-size: 25px;        
    }
}

section{
    padding: 30px ;
}

@media(max-width: 690px){
    section{
        padding: 20px 0;
    }
}
.top {
    color:var(--site-color);
    display: flex;    
    background: url("../images/novaCapa.jpg") no-repeat center;
    /*background: linear-gradient(to right, var(--main-color) 25%, rgba(255,255,255,0)), url("../images/capa.jpg") no-repeat center;*/
    height: 50vh;
    min-height:500px ; 

    /* especifica o tamanho da imagem de fundo*/
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Poppins', sans-serif;
    
}

.top .max-width{
    width: 100%;
    display: flex;
}

.top .top-content .text-1{
    font-size: 25px;
}

.top .top-content .text-2{
    font-size: 55px;
    font-weight: 400;
    margin-left: -3px;
}

.top .top-content .text-3{
    font-size: 32px;
    margin: 5px 0;
}

.top .top-content a{
    display: inline-block;
    background: var(--active-color);
    color: var(--site-color);
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 20px;
    font-weight: 300;
    border-radius: 6px;
    border: 2px solid var(--active-color);
    transition: all 0.8s ease;
}

.top .top-content a:hover {
    color: var(--active-color);
    background: none;
}
/*fim topo*/


/*inicio servicos*/

/*conteúdo dos cards*/
.services{
    color: var(--site-color);
    background-color: var(--site-color);
    font-family: 'Lobster', sans-serif;
    margin: 30px ;
}

/*Titulo 'seviços'*/
.services .title{
    color: var(--second-color);
    text-align: center;
    margin: 10px 0;
    font-weight: 400;
    font-size: 35px;
}

.services .serv-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.navbar .redeSocial{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.navbar .redeSocial i{ 
    text-align: center;   
    padding: 0px 15px;  
    cursor: pointer;      
}

.navbar .redeSocial .facebook i{
    font-size: 25px;
    color: var(--facebook-color);
   
}

.navbar .redeSocial .instagram i{
    font-size: 25px;
    color: var(--instagram-color);   
}

.navbar .redeSocial .whatsapp i{
    font-size: 25px;
    color: var(--whats-color);    
}

 
 .navbar  .facebook{
    width: 25%;
    height: 25%;
    -webkit-transition: -webkit-transform .5s ease;
    transition: transform .5s ease;
 }
 
 .navbar .facebook:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
 }

 .navbar  .instagram{
    width: 25%;
    height: 25%;
    -webkit-transition: -webkit-transform .5s ease;
    transition: transform .5s ease;
 }
 
 .navbar .instagram:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
 }

 .navbar  .whatsapp{
    width: 25%;
    height: 25%;
    -webkit-transition: -webkit-transform .5s ease;
    transition: transform .5s ease;
 }
 
 .navbar .whatsapp:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
 }

 @media(max-width:640px){
    .navbar .redeSocial{
        margin-right: 30px;
    }
 }


.services .serv-content .card{
    width: calc(33% - 20px);
    background: var(--main-color);
    text-align: center;
    border-radius: 6px;
    padding: 30px 25px;  
    cursor: pointer;  
    transition: all 0.8s ease;
}

.services .serv-content .card:hover{
    background: var(--second-color);
}

.services .serv-content .card i{
    font-size: 50px;
    color: var(--six-color);
    transition: all 0.3s ease;
}

.services .serv-content .card:hover i{
    color: var(--six-color);
}

.services .serv-content .card .box{
    transition: all 0.8s ease;
}

.services .serv-content .card:hover .box{
    transform: scale(1.05);
}

.services .serv-content .card .text{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}

@media(max-width:947px){
    .services .serv-content .card{
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
}

@media(max-width:1024px){
    .services .serv-content .card{
        width: calc(25% - 10px);
        margin-bottom: 20px;
    }
}
/*fim serviços*/

/*deixar responsivo somente os cards da index, seguindo o caminho das divs*/
@media(max-width:690px){
    .services .serv-content .card{
        width: 100%;
    }
}



/*inicio do serviço premium*/
.premium{
    color: var(--second-color);
    background: var(--site-color);
    font-family: 'Lobster', sans-serif;
}

.premium1{
    color: var(--second-color);
    background: var(--site-color);
    font-family: 'Lobster', sans-serif;
}

.premium1 .premium-content1 .left1{
    width: 25%;
}

.premium1 .premium-content1{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.premium1 .premium-content1 .left1 img{
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
}

.premium1 .title{
    text-align: center;
    margin: 1px 0;
    margin-bottom: 50px;
    font-weight: 400;
    font-size: 40px;
}

.premium .title{
    text-align: center;
    margin: 1px 0;
    margin-bottom: 50px;
    font-weight: 400;
    font-size: 40px;
}

.premium .premium-content .left{
    width: 33.33%;
}

.premium .premium-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.premium .premium-content .left img{
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
}

.premium .premium-content .right{
    width: 55%;
}

.premium .premium-content .right .text{
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 10px;
}

.premium .premium-content .right p{
    text-align: justify;
}

.premium .premium-content .right a{
    display: inline-block;
    background: var(--active-color);
    color: var(--site-color);
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 10px;
    border-radius: 6px;
    border: 2px solid var(--active-color);
    transition: all 0.8s ease;
}

.premium .premium-content .right a:hover{
    color: var(--active-color);
    background:none ;    
}

@media(max-width: 1104px){
    .premium .premium-content .left img{
        width: 350px;
        height: 350px;
    }
}
@media(max-width: 947px){
    .premium .premium-content .column{
        width: 100%;        
    }
    .premium .premium-content .left{
        display:flex ;
        justify-content: center;
        margin: 0 auto 60px;    
    }
    .premium .premium-content .right{
        flex: 100%;
    }
}


@media(max-width: 1104px){
    .premium1 .premium-content1 .left1 img{
        width: 350px;
        height: 350px;
    }
}
@media(max-width: 947px){
    .premium1 .premium-content1 .column{
        width: 100%;        
    }
    .premium1 .premium-content1 .left1{
        display:flex ;
        justify-content: center;
        margin: 0 auto 60px;    
    }
    .premium1 .premium-content1 .right{
        flex: 100%;
    }
}
/*fim do serviço premium*/

/*Inicio do footer*/
footer{
    background: var(--second-color);
    padding: 25px 23px;
    color: var(--site-color);
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

footer span a{
    color: var(--active-color);    
}

footer span a:hover{
    color: var(--site-color);    
}
/*fim do footer*/


/*inicio da página sobre-empresa*/
.about{
    color: var(--second-color);
    background: var(--site-color);
    font-family: 'Poppins', sans-serif;    
}

.about .title{
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
    font-size: 24px;
    padding-top: 50px;
}

.about .about-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom:50px;
    background: var(--site-color);
    border-radius: 6px;
    padding: 30px;
}

.about .about-content .left{
    width: 40%;
}

.about .about-content .left img{
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
}

.about .about-content .right{
    width: 60%;
}

.about .about-content .right .text{
   font-size: 25px;
   font-weight: 400;
   margin-bottom: 10px;
}

.about .about-content .right p{
 text-align: justify;
 }

 @media(max-width: 1104px){
    .about .about-content .left img{
        width: 300px;
        height: 300px;
    }
    .about .about-content .right{
        padding-left: 10px;
    }
 }

 @media(max-width:947px){
    .about .about-content .column{
        width: 100%;
    }
    .about .about-content .left{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }
    .about .about-content .right{
        flex: 100%;
        padding-left:0 ;        
    }
 }
 /*reponsivo margim top sobre a empresa*/
 @media(max-width:640px){
    .about .title{
        margin-top: 50px;
    }
 }

/*fim da página sobre empresa*/


/*inicio da página contato*/
.contact{
    color: var(--site-color);
    background-color: var(--main-color);
    font-family: 'Poppins', sans-serif;
}

.contact .title{
    text-align: center;
    margin-bottom: 50px;
    padding-top: 50px;
    font-weight: 400;
    font-size: 35px;
}

.contact .contact-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.contact .contact-content .column{
    width: calc(50% - 30px);
}

.contact .contact-content .left p{
    text-align: justify;
}

.contact .contact-content .left .icons{
    margin: 10px 0;
}
.contact .contact-content .row{
    display: flex;
    height: 65px;
    align-items: center;
}

.contact .contact-content .row .info{
    margin-left: 30px;
}

.contact .contact-content .row i{
    font-size: 25px;
    color: var(--six-color);
}

.contact .contact-content .row .whats i{
    font-size: 25px;
    color: var(--whats-color);
}

.contact .contact-content .info .head{
    font-weight: 500;
}

.contact .contact-content .info .sub-title{
   color: var(--site-color);
}

.contact .contact-content .text{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact .right form .field,
.contact .right form .fields .field{
    height: 45px;
    width:100%;
    margin-bottom: 15px;
}
.contact .right form .textarea{
    height: 80px;
    width: 100%;
}

.contact .right form .field input,
.contact .right form .field textarea{
    height: 100%;
    width: 100%;
    border-radius: 6px;
    padding: 0px 10px;
    outline: none;
    padding: 0 15px;
    font-family:'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.contact .right form .field input:focus,
.contact .right form .field textarea:focus{
    border-color:var(--active-color) ;
}

.contact .right form .textarea textarea{
    padding-top: 10px;
    resize: none;
}
.contact .right form .button-area{
    display: flex;
    align-items: center;
}

.right form .button-area button{
    background-color: var(--active-color);
    color: var(--site-color);
    display: block;
    width: 160px !important;
    height: 45px;
    outline: none;
    font-size: 18px;
    font-weight: 400;
    border-radius: 6px;
    cursor: pointer;
   flex-wrap: wrap;
   border: 2px solid var(--active-color);
   transition: all 0.3s ease;
}
.right form .button-area button:hover{
    columns: var(--active-color);
    background: none;
}

@media(max-width:947px){
    .contact .contact-content .column{
        width: 100%;
        margin-bottom: 35px;
    }
}

@media(max-width:500px){
    .contact .title{
        margin-top: 50px;
    }
    .contact .right form .fields{
        flex-direction: column;
    }
    .contact .right form .name,
    .contact .right form .email{
        margin: 0;
    }
}



/*fim da página contato*/







