@charset "UTF-8";

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

/*  Mobile First  */
/*  Mobile - iPhone 13 Mini  */
@media (max-width: 1023px){

    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins";
        text-decoration: none;
        list-style: none;
        scroll-behavior: smooth;
        transition: all .1s ease;
    }
    body{background: #000000;
        margin: auto;
        padding: 0;
    }
    :root{
        --cinza: #4A4A4A;
        --laranja: #FFC400;
        --verde: #29A71A;
        --preto: #000000;
        --branco: #FFFFFF;  
        --fontam6: clamp(1.6em, 1.5em + 3vw, 6rem);
        --fontam5: clamp(1.5em, 1.1em + 2.3vw, 5rem);
        --fontam4: clamp(1.3em, 1em + 2vw, 4rem);
        --fontam3: clamp(1.1em, 1em + 1.5vw, 2rem);
        --fontam2: clamp(1.05em, 1em + 1vw, 1.5rem);
        --fontam1: clamp(1em, 1em + 1vw, 1rem);
    }
    /*  Fim do Body  */
    /*  *************************************************** */
    /*  Inicio do Main / Header  */
    header{background: rgba(255, 209, 3, 0);  
        z-index: 999;
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 70px;
        margin: auto;
        padding: 0 5%;
    }
    header.sticky{
        height: 70px;
        background: rgb(0, 0, 0);
        box-shadow: 0px 5px 5px 0px #00000034;
        border-bottom: var(--laranja) solid 5px;
        transition: all .2s ease;
    }
    header.sticky .btn{
        color: rgb(85, 85, 85);
    }
    header.sticky .logotipo{
        font-size: 20px;
        color: var(--laranja);
    }
    header.sticky .logotipo span{
        font-size: 30px;
        color: var(--branco);
    }
    header .menu.active{
        right: 0;
    }
    header .menu .close-btn{
        color: var(--branco);
        position: absolute;
        top: 0;
        left: 50%;
        margin: auto;
        padding: 50px 0px 00px 00px;
    }
    header nav{
        position: fixed;
        background: #000000e6;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        flex-direction: column;
        min-width: 50%;
        height: 100vh;
        top: 0;
        right: -110%;
        padding: 80px 20px;
        transition:  0.5s;
        transition-property: right;
    }
    header nav a {
        display: block;
        font-size: 2rem;
        margin: 5px;
        padding: 0 15px;
        color: var(--laranja);
        font-weight: 500;
    }
    header nav a:hover {
        color: var(--laranja);
    }
    header .button {
        display: none;
    }
    .btn{
        display: block;
        font-size: var(--fontam4);
        color: var(--laranja);
    }
    .logo {background: rgba(102, 51, 153, 0);
        display: flex;
        align-items: center;
        flex-direction: row;
        width: 50%;
        height: 60px;
    }
    .logo a img{background: #28a71a00;
        max-width: 250px;
        width: 90%;
        margin: 10px 0;
    }
    header .logo .logo-txt{
        display: none;
    }
    nav a{ 
        display: none;    
    }
    .menu-diferenciais {
        display: none;
    }
    .menu-trabalhos {
        display: none;  
    }    
    .menu-depoimentos {
        display: none;
    }
    /*  Fim do Header/Nav  */
    /*  *************************************************** */
    /*  Inicio do Main  */

    /*  Fim do Main  */
    /*  *************************************************** */
    /*  Inicio do Home  */
    .home{ background: rgba(0, 0, 0, 0);
        /*background: url(../img/bg1-home-mbl.webp);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;*/
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        height: 100vh;
        margin: auto;
    }
    .home .container{background: rgb(0, 0, 0);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
        text-align: center;
        margin: auto;
        margin-top: 90px;
        padding: 0px 0;
        width: 90%;
        height: 80%;
        border-radius: 10px;
    }
    .home .container aside img{background: rgba(255, 255, 255, 0);
        width: 50%;
        margin: auto;    
        padding: 80px 0 0 0;
        border-radius: 5px;
    }
    .home .container article{/*background: rgba(255, 196, 0, 0.416);*/
        margin: 10px 0;
        padding:10px 10px;
        width: 100%;
        height: 450px;
        text-align: center;
        color: var(--branco);
    /*
        border: 2px solid #ffae00;
        border-radius: 10px;
        box-shadow: 5px 5px 15px 5px rgba(255, 238, 0, 0.551);
    */
    }
    .home .container article h1{      
        font-size: var(--fontam6);
        font-weight: 200;
        line-height: 1; 
        margin: 20px;
    }
    .home .container article h1 span{      
        color: var(--laranja);
    }
    .home .container article h2{
        font-size: var(--fontam2);  
        font-weight: 200;    
    }
    .home .container article h3{
        font-size: var(--fontam3);    
        margin-bottom: 30px;    
    }
    .home .container .btn-wa a{
        color: var(--branco);
    }
    .home .container .btn-wa {
        background: var(--verde);
        border-radius: 7px;
        border: #ffffff solid 3px;
        font-size: var(--fontam2);
        color: var(--branco);
        padding: 10px 10px;
        margin: 50px 0 0;    
    }
    .home .container .btn-phone a{
        color: #FFFFFF;
    }
    .home .container .btn-phone {
        background: var(--azul);
        border-radius: 7px;
        border: #ffffff solid 3px;
        font-size: var(--fontam1);
        color: var(--branco);
        padding: 10px 10px;
        margin: 10px 0px 0px 0px;
    }
    /*  Fim do Home  */
    /*  *************************************************** */
    /*  Inicio do Home2  */
    .home2 { background: rgb(231,231,231);
        background: linear-gradient(0deg, rgb(117, 117, 117) 0%, rgba(0,0,0,1) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        height: 100vh;
        margin: auto;
        padding: 0 50px;
        text-align: center;
        /*background: var(--preto);*/
    }
    .home2 h1{
        color: var(--branco);
        font-size: var(--fontam6);
        font-weight: 200;
        margin: 50px 0;        
    }
    .home2 h1 span{
        color: var(--laranja);
    }
    .home2 p{
        margin-bottom: 30px;
        font-size: var(--fontam3);
        color: var(--branco);
    }
    .home2 a{
        padding: 2px 30px;
        background: black;
        color: white;
        border-radius: 5px;
    }
    .home2 a:hover{
        color: black;
        background: white;
    }
    /*  Fim do Home2  */
    /*  *************************************************** */
    /*  Inicio do Soluções  */
    .solucoes{
        background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(117,117,117,1) 100%);
        display:flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        text-align: center;
        height: auto;
    }
    .solucoes i{
        font-size: 50px;
    }
    .solucoes h1{
        font-size: var(--fontam6);
        color: var(--preto);
        margin-top: 88px;
    }
    .solucoes h1 span{
        color: var(--laranja);
    }
    .solucoes .container{background: rgba(255, 0, 0, 0);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        height:auto;
        margin: auto;  
        padding: 0 10px;  
    }
    .solucoes .container .row-one {background: #28a71a00;
        display:flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        margin: auto;
    }
    .solucoes .container .row-one .box{ background: #ff000000;
        background: var(--branco);
        max-width: 700px;
        width: 90%;
        margin: 30px 0;
        padding: 50px;
        border-radius: 10px;
        border: 2px solid rgba(0, 0, 140, 0.078);
        box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, 0.212);
    }
    .solucoes .container .row-one .box:hover{
        background: var(--laranja);
        transform: translateY(-8px);
    }
    .solucoes .container .row-one .box p{
        margin-bottom: 30px;
    }
    .solucoes .container .row-one .box a{
        margin: 50px;
        padding: 5px 20px;
        border-radius: 5px;
        border: 2px solid var(--preto);
        font-size: 18px;
        color: var(--cinza);
    }
    /*  Fim da Soluções  */
    /*  ************************
    /*  Inicio do Diferenciais  */
    .diferenciais{display: none;
    }
    /*  Fim do Diferenciais  */
    /*  *************************************************** */
    /*  Inicio do Trabalhos  */
    .trabalhos{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background: rgb(255, 255, 255);
        height: 150vh;
        padding: 80px 0 0 0;
    }
    .trabalhos-titulo{
        width: 90%;
        height: 50px;
        margin: auto;
        padding: 15px;
        font-size: var(--fontam4);
        color: var(--cinza);
        text-align: center;
    }
    .trabalhos-titulo h1{
        font-size: var(--fontam4);
        line-height: 1;
        color: var(--cinza);
    }
    .trabalhos-titulo span{
        color: var(--laranja);
    }
    .trabalhos-titulo p{
        margin: 10px 0;
        padding: 0px 0;
        font-size: 18px;
        line-height: 1;
    }
    /*
    .trabalhos .container-galeria{ background: yellow;   
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-items: flex-start;
        gap: 2vw;
        padding: 0 1vw;
        width: 90%;
        height: 80%;
        margin: auto;
    }
    */
    .trabalhos .container-galeria{
        display: flex;
        /*flex-wrap: wrap;*/
        justify-content: space-around;
        align-items: center;
        flex-direction: column;
        gap: 5vw;
        margin-top: 150px;
        padding: 0 1vw;
        width: 90%;
        height: 80%;
        margin: auto;
    }
    .trabalhos .container-galeria .img-galeria{
        width: 85%;
        height: 20vh;
        border: 1px solid #000000;
        box-shadow: 5px 5px 5px #00000078;
        border-radius: 10px;
        flex-grow: 5;
        transition: transform .5s linear;
    }
    .trabalhos .container-galeria .img-galeria:hover{
        transform: scale(1.1);
    }
    .trabalhos .container-galeria .img-galeria img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 5px;
    }
    .trabalhos .container .box{  /*  background: #FFD401;  */
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        width: 90%;
        height: 90%;
        margin: 0px;
        padding: 10px;
        border-radius: 10px;
        border: 5px solid #ffffff;
        box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.326);
    }
    .trabalhos .container .box img{ /*  background: red;  */
        width: 300px;
        height: 0%;
        margin: 0;
        border-radius: 0px;
    }
    .trabalhos .container .box .txt {
        background: var(--branco);
        width: 95%;
        height: 50%;
        margin: 0;
    }
    /*  Fim do Trabalhos  */
    /*  *************************************************** */
    /*  Inicio do Depoimentos  */
    .depoimentos{display: none;}
    /*  Fim do Depoimentos  */
    /*  *************************************************** */
    /*  Inicio do Sobre  */
    .sobre{background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(231,231,231,1) 100%);

        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100vh;
        padding: 5%;
        text-align: center;
    }
    .sobre article h1{
        font-size: var(--fontam6);
        color: var(--cinza);
        line-height: 1;
    }
    .sobre article h2{
        font-size: var(--fontam3);
    }
    .sobre article p{
        margin: 10px 0 50px 0;
        font-size: var(--fontam2);
    }
    .sobre article a{
        background: var(--verde);
        border-radius: 7px;
        border: #ffffff solid 3px;
        font-size: var(--fontam3);
        color: var(--branco);
        margin: 50px 0;
        padding: 10px 30px;
    }
    .sobre aside img{
        display: none;
    }
    /*  Fim do Sobre  */
    /*  *************************************************** */
    /*  Inicio do Contatos  */
    .contatos{background: #4A4A4A;
        background: linear-gradient(180deg, rgba(231,231,231,1) 0%, rgba(0,0,0,1) 100%);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .contatos .contatos-txt p{
        font-size: var(--fontam2);
        color: var(--preto);
        line-height: 1;
        margin-top: 5px;
    }
    .contatos .txt-container{
        margin: 30px;
        font-size: var(--fontam1);
    }
    .contatos .container h1{
        font-size: var(--fontam6);
        line-height: 1;
        margin: 30px 0;
        color: var(--branco);
    }
    .contatos .container p{
        margin: 10px 0;
        font-size: var(--fontam1);
        line-height: .8;
        color: var(--laranja);
    } 
    .contatos .container .redes{display: none;
        font-size: var(--fontam4);
    }
    .contatos .btn-wa a{
        margin: 100px 0;
        padding: 10px 50px;
        background: var(--verde);
        font-size: var(--fontam2);
        color: var(--branco);
        border: 2px solid var(--branco);
        border-radius: 7px;
    }
    /*  Fim do Contatos  */
    /*  *************************************************** */
    /*  Inicio do Footer  */
    footer{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        height: 350px;
        margin: auto;
        padding: 20px;
        font-size: 11px;
        text-align: center;
        color: var(--branco);
        background: black;
    }
    footer .menu-footer a{display: none;
        color: var(--laranja);
    }
    footer img{background: rgba(243, 224, 118, 0);
        margin: 5%;
        width: 50%;     
        border-radius: 5px;
    }
    footer .rodape a{
        color: var(--laranja);
    }
}
