@charset "UTF-8";

/* CSS - Rafael Branco | Ano: 2019 */

select,
option,
textarea,
input[type="submit"],
input[type="text"],
input[type="text"]::placeholder{
    font-family: 'Montserrat', sans-serif;
}


.cases-show{
    display: block;
}

.cases-hide{
    display: none;
}


/* banner */
/*.banner{*/
    /*background: url(../img/banner.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;*/

/*    background-color: #282828;*/

/*    background-color: rgba(0, 0, 0, 0.6);*/
/*    height: 700px;*/
/*    height: 500px;*/
/*}*/

/*.banner video{ */
/*    min-width: 100%;*/
/*    position: relative;*/
/*    position: fixed;*/
/*    top:-4%;*/
/*    z-index: -999;*/
/*}*/

/*.banner .content-banner{*/
/*    margin: 0 240px 0 0;*/
    /* padding: 134px 0 0 0; */
/*    float: right;*/
/*    padding: 60px 0 0 0;*/
/*    width: 367px;*/

/*    position: relative;*/
/*    z-index: 10;*/
/*}*/

/*.banner .content-banner h1{*/
/*    color: #FFFFFF;*/
/*    font-family: 'Space Grotesk';*/
/*    font-style: normal;*/
/*    font-weight: 700;*/
/*    font-size: 50px;*/
/*    line-height: 120.1%;*/
/*    letter-spacing: -0.02em;*/
/*}*/

/*.banner .content-banner h1 span{*/
/*    color: #FFF500;*/
/*    font-family: 'Autography';*/
/*    font-style: normal;*/
/*    font-weight: 400;*/
/*    font-size: 97.7987px;*/
/*    line-height: 120.1%;*/
/*    letter-spacing: -0.02em;*/
/*}*/

/*.banner .content-banner .btn-banner{*/
/*    border: 3px solid #FFF500;*/
/*    border-radius: 10px;*/

/*    color: #FFFFFF;*/
/*    font-family: 'Montserrat';*/
/*    font-style: normal;*/
/*    font-weight: 600;*/
/*    font-size: 20px;*/
/*    line-height: 24px;*/
/*    letter-spacing: -0.02em;*/

/*    margin-top: 40px;*/
/*    text-align: center;*/
/*    line-height: 64px;*/
/*    height: 64px;*/
/*    width: 188px;*/
/*}*/

/*.banner .content-banner .btn-banner:hover{*/
/*    background-color: #FFF500;*/
/*    color: #000;*/
/*}*/
/* banner */

/* Estilos base do banner - mantendo a identidade visual */
        .banner {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1563986768609-322da13575f3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80') no-repeat center center;
            background-size: cover;
            height: 700px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .banner .conteudo {
            width: 90%;
            max-width: 1110px;
            margin: 0 auto;
            position: relative;
            display: flex;
            justify-content: center;
        }
        
        /* Novos estilos para o banner reformulado */
        .content-banner {
            max-width: 800px;
            position: relative;
            z-index: 10;
            padding: 40px;
            background: rgba(40, 40, 40, 0.85);
            border-radius: 15px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 245, 0, 0.3);
            animation: fadeIn 1.5s ease-in-out;
            text-align: center;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }
        
        .content-banner h1 {
            color: #FFFFFF;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 3.2rem;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        .content-banner h1 span {
            color: #FFF500;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 3.8rem;
            display: block;
            margin-top: 10px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .content-banner h1 span::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: #FFF500;
            border-radius: 2px;
        }
        
        .content-banner p {
            color: #E0E0E0;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.3rem;
            line-height: 1.7;
            margin-bottom: 30px;
            max-width: 100%;
        }
        
        .btn-banner {
            display: inline-block;
            border: 3px solid #FFF500;
            border-radius: 10px;
            color: #FFFFFF;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            text-align: center;
            padding: 16px 40px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            background: rgba(255, 245, 0, 0.1);
        }
        
        .btn-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #FFF500;
            transition: all 0.4s ease;
            z-index: -1;
        }
        
        .btn-banner:hover {
            color: #000;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 245, 0, 0.3);
        }
        
        .btn-banner:hover::before {
            left: 0;
        }
        
        .banner-features {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            color: #FFF500;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
        }
        
        .feature-item i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: #FFF500;
            font-size: 2rem;
            animation: bounce 2s infinite;
            z-index: 10;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }
        
        /* Responsividade */
        @media (max-width: 1200px) {
            .conteudo {
                width: 90%;
                padding: 0 20px;
            }
            
            .content-banner {
                max-width: 700px;
            }
            
            .content-banner h1 {
                font-size: 2.8rem;
            }
            
            .content-banner h1 span {
                font-size: 3.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .banner {
                height: 600px;
            }
            
            .content-banner {
                padding: 30px 20px;
                max-width: 90%;
            }
            
            .content-banner h1 {
                font-size: 2.2rem;
            }
            
            .content-banner h1 span {
                font-size: 2.5rem;
            }
            
            .content-banner p {
                font-size: 1.1rem;
            }
            
            .btn-banner {
                padding: 14px 30px;
                font-size: 1rem;
            }
            
            .banner-features {
                flex-direction: column;
                gap: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .banner {
                height: 500px;
            }
            
            .content-banner h1 {
                font-size: 1.9rem;
            }
            
            .content-banner h1 span {
                font-size: 2.1rem;
            }
            
            .content-banner p {
                font-size: 1rem;
            }
            
            .scroll-indicator {
                bottom: 20px;
            }
        }

/* sobre nós  */
#sobre-nos{
    background-color: #282828;
    padding: 90px 0 0 0;
}

#sobre-nos .left{
    float: left;

    width: 36%;
    /* width: 354px;*/
}

#sobre-nos .left h2{
    color: #FFF500;

    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;

    letter-spacing: -0.02em;
}

#sobre-nos .left h1{
    color: #FFFFFF;

    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 64px;
    letter-spacing: -0.02em;
}

#sobre-nos .right{
    float: right;

    width: 64%;
    /*  width: 710px;*/
}

#sobre-nos .right p{
    color: #868686;

    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    /* or 150% */
    letter-spacing: -0.02em;

    margin: 55px 0 35px 0;
}

#sobre-nos .right span{
    color: #FFF500;

    display: table;

    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;

    letter-spacing: -0.02em;
}

#sobre-nos .right span:hover .line-hover{
    display: block;
}

#sobre-nos .right span i{
    color: #FFF500;
    margin-left: 15px;
}
/* sobre nós  */


/* nossas areas  */
#nossas-areas{
    background-color: #282828;
    padding: 110px 0 110px 0;
}

#nossas-areas .left{
    float: left;
    width: 39%;
}

#nossas-areas .left h1{
    color: #FFF500;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: -0.02em;
}

#nossas-areas .left .line-nossas-areas{
    background: #383838;

    margin: 30px 0 55px 0;

    height: 2px;
    width: 100%;
}

#nossas-areas .left ul{
    
}

#nossas-areas .left ul li{
    background-repeat: no-repeat;
    background-position: left;

    color: #FFFFFF;
    cursor: pointer;
    list-style: none;

    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    font-size: 39.1312px;
    line-height: 50px;
    letter-spacing: -0.02em;

    margin-bottom: 85px;
    padding-left: 50px;
}

#nossas-areas .left .link-nossas-areas{
    display: table;
    height: 62px;
}

#nossas-areas .left .link-nossas-areas span{
    color: #FFF500;
    float: left;
    display: table;

    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: -0.02em;

}

#nossas-areas .left .link-nossas-areas i{
    color: #FFF500;
    float: right;
    font-size: 38px;
    line-height: 56px;

    margin-left: 13px;
}

#nossas-areas .left .link-nossas-areas:hover .line-hover{
    display: block;
}

#nossas-areas .right{
    float: right;
    width: 61%;
}

#nossas-areas .right .itens-nossas-areas{
    margin-top: 120px;
}

#nossas-areas .right .itens-nossas-areas .item{
    /*background: #D9D9D9;*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    float: left;

    margin: 0 2% 25px 2%;
    height: 304px;
    width: 46%;
}
/* nossas areas  */

/* orcamento */
#orcamento{
    background-color: #282828;
    padding: 50px 0 130px 0;
}

#orcamento .left{
    float: left;

    width: 45%;
}

#orcamento .left img{
    max-width: 100%;
}

#orcamento .right{
    float: right;

    padding: 40px 0 0 0;
    width: 45%;
}

#orcamento h1{
    color: #FFFFFF;

    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 64px;
    /* identical to box height */

    letter-spacing: -0.02em;


    margin-bottom: 25px;
}

#orcamento form#form-orcamento{
/*    margin: 25px auto 0 auto;*/

    width: 100%;
}

#orcamento form#form-orcamento .float-form{
    width: 47%;
}

#orcamento form#form-orcamento .form-left{
    float: left;
}

#orcamento form#form-orcamento .form-right{
    float: right;
}

#orcamento form#form-orcamento label{
    color: #FFFFFF;
    display: block;

    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    /* identical to box height */

    letter-spacing: -0.02em;
    
/*    margin-bottom: 5px;*/
}

#orcamento form#form-orcamento input[type="text"],
#orcamento form#form-orcamento select,
#orcamento form#form-orcamento textarea,
#orcamento form#form-orcamento input[type="email"]{
    border: 0;
    border-bottom: 1px solid #868686;
    background-color: transparent;
    box-sizing: border-box;
    
    color: #fff;
    font-size: 16px;

    margin-bottom: 20px;
    padding: 5px 5px 5px 0;

    height: 40px;
    width: 100%;
}

#orcamento form#form-orcamento input[type="text"]::placeholder,
#orcamento form#form-orcamento select::placeholder,
#orcamento form#form-orcamento textarea::placeholder,
#orcamento form#form-orcamento input[type="email"]::placeholder{
    color: #868686;
    font-size: 16px;
}

#orcamento form#form-orcamento select{
    background: url(../img/arrow-bottom.png) no-repeat right transparent;
    -webkit-appearance: none;
    background-position-x: 475px;
}

#orcamento form#form-orcamento select option{
    color: #000;
}

#orcamento form#form-orcamento textarea{
    resize: none;

    height: 50px;
    width: 100%;
}

#orcamento form#form-orcamento input[type="submit"]{
    background: transparent;
    background-image: url(../img/arrow-right.png);
    background-repeat: no-repeat;
    background-position: right;
    border: 0;
    color: #FFF500;
    cursor: pointer;

    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.02em;

    margin-top: 20px;
    text-align: left;

    width: 80px;
}

#orcamento form#form-orcamento input[type="submit"]:hover{
    border-bottom: 1px solid #FFF500;
}
/* orcamento */


/* Internas */
.topo-internas{
    padding: 80px 0 80px 0;
}

.topo-internas h1{
    color: #FFFFFF;

    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    letter-spacing: -0.02em;
}

.topo-internas p{
    color: #868686;

    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.02em;

    margin-top: 30px;
}

/* Serviços */
.servicos{

}

.servicos .itens-servicos{
    padding: 0 0 150px 0;
}

.servicos .itens-servicos .item{
    background: #2C2C2C;
    border-radius: 10px;
    box-sizing: border-box;
    float: left;
    padding: 65px;

    margin: 0 2% 25px 2%;
    height: 408.81px;
    width: 46%;
}

.servicos .itens-servicos .item img{
    margin-bottom: 20px;
}

.servicos .itens-servicos .item h2{
    color: #FFFFFF;

    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: -0.02em;

    margin: 25px 0 20px 0;
}

.servicos .itens-servicos .item p{
    color: #868686;

    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: -0.02em;
}

.nossos-cases{
    padding: 0 0 200px 0;
}

.nossos-cases .left{
    display: table;
    float: left;
}

.nossos-cases h2{
    color: #FFF500;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: -0.02em;
}

.nossos-cases h1{
    color: #FFFFFF;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 64px;
    letter-spacing: -0.02em;

}

.nossos-cases span{
    color: #FFF500;
    display: table;
    float: right;

    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.02em;

    margin-top: 20px;
}

.nossos-cases span:hover .line-hover{
    display: block;
}

.nossos-cases span i{
    margin-left: 10px;
}


.nossos-cases .itens-trabalhos{
    margin: 40px -1.16% 0 -1.16%;
}

.nossos-cases .itens-trabalhos .item{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 10px;

    height: 392px;

    position: relative;
}

.nossos-cases .itens-trabalhos .item-menor{
    background-image: url(../img/case.png);
    float: left;
    
    margin: 0 1.16% 0 1.16%;
    width: 31%;
}

.nossos-cases .itens-trabalhos .item .item-hover{
    background: rgba(0, 0, 0, 0.5);
    background-image: url(../img/j.png);
    background-repeat: no-repeat;
    background-position: 85% 85%;

    opacity: 0;

    box-sizing: border-box;
    border-radius: 10px;
    padding: 40px 32px 40px 32px;

    position: absolute;
    height: 100%;
    width: 100%;
}

.nossos-cases .itens-trabalhos .item:hover .item-hover{
    opacity: 1;
}

.nossos-cases .itens-trabalhos .item .item-hover h3{
    color: #FFFFFF;

    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 38px;
    letter-spacing: -0.02em;
}

.nossos-cases .itens-trabalhos .item .item-hover h4{
    color: #FFF500;

    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.02em;
}

.nossos-cases .itens-trabalhos .item .item-hover span{
    color: #F5F4F4;

    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: -0.02em;

    bottom: 40px;
    position: absolute;
}
.nossos-cases .itens-trabalhos .item .item-hover span:hover{
    font-weight: 700;
}

.nossos-cases .itens-trabalhos .item .item-hover span i{
    margin-left: 15px;
}

.nossos-cases .itens-trabalhos .item-maior{
    background-image: url(../img/case-maior.png);
    background-size: cover;
    margin: 30px 0% 0 1%;
    width: 98%;
}

.nossos-cases .itens-trabalhos .item-maior .item-hover{
    /*margin: 0 1%;
    width: 98%;*/
}
/* Serviços */


/* Cases  */
.cases{
    padding: 0 0 200px 0;
}

.cases .categorias{

}

.cases .categorias .itens-categorias{

}

.cases .categorias .itens-categorias .item{
    color: #FFFFFF;
    cursor: pointer;

    float: left;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.02em;

    height: 32px;
    margin-right: 80px;
}

.cases .categorias .itens-categorias .item:last-of-type{
    margin-right: 0 !important;
}

.cases .categorias .itens-categorias .item:hover{
    color: #FFF500;
}

.cases .categorias .itens-categorias .item:hover .line-hover{
    display: block;
}

.cases .itens-trabalhos{
    margin: 40px -1.16% 0 -1.16%;
}

.cases .itens-trabalhos .item{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    float: left;
    height: 392px;

    margin: 0 1.16% 30px 1.16%;
    position: relative;
}

.type-one{ 
    background-image: url(../img/case.png);
    width: 47%; 
}
.type-two{ 
    background-image: url(../img/case.png);
    width: 31%; 
}
.type-three{ 
    background-image: url(../img/case-maior.png);
    width: 64%; 
}

.cases .itens-trabalhos .item .item-hover{
    background: rgba(0, 0, 0, 0.5);
    background-image: url(../img/j.png);
    background-repeat: no-repeat;
    background-position: 85% 85%;

    opacity: 0;

    box-sizing: border-box;
    border-radius: 10px;
    padding: 40px 32px 40px 32px;

    position: absolute;
    height: 100%;
    width: 100%;
}

.cases .itens-trabalhos .item:hover .item-hover{
    opacity: 1;
}

.cases .itens-trabalhos .item .item-hover h3{
    color: #FFFFFF;

    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 38px;
    letter-spacing: -0.02em;
}

.cases .itens-trabalhos .item .item-hover h4{
    color: #FFF500;

    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.02em;
}

.cases .itens-trabalhos .item .item-hover span{
    color: #F5F4F4;

    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: -0.02em;

    bottom: 40px;
    position: absolute;
}
.cases .itens-trabalhos .item .item-hover span:hover{
    font-weight: 700;
}

.cases .itens-trabalhos .item .item-hover span i{
    margin-left: 15px;
}
/* Cases */


/* A Joy */
.a-joy{
    padding: 80px 0 80px 0;
}

.a-joy h1{
    color: #FFFFFF;

    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    letter-spacing: -0.02em;
}

.a-joy .left{
    box-sizing: border-box;
    float: left;

    padding-top: 25px;
    padding-right: 30px;
    width: 49%;
}

.a-joy .right{
    box-sizing: border-box;
    float: right;

    padding-top: 25px;
    padding-left: 30px;
    width: 49%;
}

.a-joy p{
    color: #868686;

    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.02em;
}

.a-joy .line-joy{
    border: 1px solid #3E3D3D;
    float: left;

    width: 0px;
    height: 290px;
}


.list-joy{
    padding-bottom: 100px;
}

.list-joy .itens-joy{
    
}

.list-joy .itens-joy .item{
    box-sizing: border-box;
    float: left;

    margin-right: 5%;
    width: 30%;
}

.list-joy .itens-joy .item:last-of-type{
    margin-right: 0 !important;
}

.list-joy .itens-joy .item h2{
    background-repeat: no-repeat;
    background-position: left;
    box-sizing: border-box;
    color: #FFFFFF;

    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    letter-spacing: -0.02em;

    margin-bottom: 25px;

    padding-left: 48px;
}

.list-joy .itens-joy .item p{
    box-sizing: border-box;
    color: #868686;

    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: -0.02em;

    padding-left: 48px;
}


.colaboradores{

}

.colaboradores .itens-colaboradores{
    
}

.colaboradores .itens-colaboradores .item{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    float: left;

    text-align: left;
    height: 600px;
    width: 16.6666666%;
}

.colaboradores .itens-colaboradores .item h3{
    background-image: url(../img/icon-colaboradores.png);
    background-repeat: no-repeat;
    background-position: left;
    color: #FFFFFF;
    display: table;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 21px;
    line-height: 143.9%;
    letter-spacing: -0.02em;

    margin: 485px auto 0 auto;

    padding-left: 49px;
}
/* A Joy */

/* dados contato */
.dados-contato{

}

.dados-contato .itens-contato{
    
}

.dados-contato .itens-contato .item{
    float: left;

    width: 33%;
}

.dados-contato .itens-contato .item img{
    
}

.dados-contato .itens-contato .item h2{
    color: #868686;

    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: -0.02em;
    margin: 25px 0 10px 0;
}

.dados-contato .itens-contato .item p{
    color: #FFFFFF;

    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 33px;
    letter-spacing: -0.02em;
}
/* dados contato */

/* orcamento */
#contato{
    /*background-image: url(../img/bg-contato.png);*/
    background-repeat: no-repeat;
    background-position: center bottom;
    padding: 50px 0 0 0;
}

#contato .right{
    float: right;

    width: 45%;
}

#contato .right img{
    margin-bottom: -5px;
    max-width: 100%;
}

#contato .left{
    float: left;

    padding: 40px 0 0 0;
    width: 45%;
}

#contato h1{
    color: #FFFFFF;

    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 64px;
    /* identical to box height */

    letter-spacing: -0.02em;


    margin-bottom: 25px;
}

#contato form#form-orcamento{
/*    margin: 25px auto 0 auto;*/

    width: 100%;
}

#contato form#form-orcamento .float-form{
    width: 47%;
}

#contato form#form-orcamento .form-left{
    float: left;
}

#contato form#form-orcamento .form-right{
    float: right;
}

#contato form#form-orcamento label{
    color: #FFFFFF;
    display: block;

    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    /* identical to box height */

    letter-spacing: -0.02em;
    
/*    margin-bottom: 5px;*/
}

#contato form#form-orcamento input[type="text"],
#contato form#form-orcamento select,
#contato form#form-orcamento textarea,
#contato form#form-orcamento input[type="email"]{
    border: 0;
    border-bottom: 1px solid #868686;
    background-color: transparent;
    box-sizing: border-box;
    
    color: #fff;
    font-size: 16px;

    margin-bottom: 20px;
    padding: 5px 5px 5px 0;

    height: 40px;
    width: 100%;
}

#contato form#form-orcamento input[type="text"]::placeholder,
#contato form#form-orcamento select::placeholder,
#contato form#form-orcamento textarea::placeholder,
#contato form#form-orcamento input[type="email"]::placeholder{
    color: #868686;
    font-size: 16px;
}

#contato form#form-orcamento select{
    background: url(../img/arrow-bottom.png) no-repeat right transparent;
    -webkit-appearance: none;
    background-position-x: 475px;
}

#contato form#form-orcamento select option{
    color: #000;
}

#contato form#form-orcamento textarea{
    resize: none;

    height: 50px;
    width: 100%;
}

#contato form#form-orcamento input[type="submit"]{
    background: transparent;
    background-image: url(../img/arrow-right.png);
    background-repeat: no-repeat;
    background-position: right;
    border: 0;
    color: #FFF500;
    cursor: pointer;

    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.02em;

    margin-top: 20px;
    text-align: left;

    width: 80px;
}

#contato form#form-orcamento input[type="submit"]:hover{
    border-bottom: 1px solid #FFF500;
}
/* orcamento */


/* Case */
.case{
    padding: 55px 0 100px 0;
}

.case .voltar-cases{
    color: #FFF500;
    display: table;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;

    height: 29px;
}

.case .voltar-cases i{
    margin-right: 5px;
}

.case .voltar-cases:hover .line-hover{
    display: block;
}

.case .topo-case{

}

.case .topo-case .left{
    float: left;
    width: 39.20%;
}

.case .topo-case .left h1{
    color: #FFFFFF;

    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 64px;
    letter-spacing: -0.02em;

    margin: 20px 0 30px 0;
}

.case .topo-case .left p{
    color: #868686;

    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.02em;
}

.case .topo-case .right{
    float: right;
    width: 56.50%;
}

.case .topo-case .right img{
    max-width: 100%;
}


.case .imagens-case{
    margin-top: 80px;
}

.case .imagens-case img{
    margin-bottom: 30px;
    max-width: 100%;
}

.case .imagens-case .image-100{
    width: 100%;
}

.case .imagens-case .image-50{
    width: 48.65%;
}

.case .imagens-case .img-left{
    float: left;
}

.case .imagens-case .img-right{
    float: right;
}
/* Case */