:root {
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

header {
    height: 150px;
    padding: 0 70px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: calc(100% - 140px);
    transition: all .5s;
    z-index: 10;
}
.scroll-header {
    background-color: #000;
    height: 75px;
}
header .social a {
    color: #fff;
    font-weight: 500;
    font-size: .875rem;
    text-decoration: none;
    transition: all .3s;
}
header .social a:hover {
    color: #F46C00;
}
header .social a:nth-child(2) {
    margin: 0 65px;
}
header .menu label {
    margin: 0;
    display: flex;
    cursor: pointer;
    align-items: center;
}
header .menu label span {
    background: #fff;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 13px;
}
header .menu label span:before,
header .menu label span:after {
    background: #fff;
    content: '';
    display: block;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
    height: 2px;
}  
header .menu label span:before {
    top: -5px;
}  
header .menu label span:after {
    top: 5px;
}
header .menu input {
    display: none;
}
header .menu input:checked ~ label span {
    background: transparent;
}
header .menu input:checked ~ label span:before {
    transform: rotate(-45deg);
    background: #F46C00;
}
header .menu input:checked ~ label span:after {
    transform: rotate(45deg);
    background: #F46C00;
}
header .menu input:checked ~ label:not(.steps) span:before,
header .menu input:checked ~ label:not(.steps) span:after {
    top: 0;
}
header .menu small {
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    margin-right: 15px;
    transition: all .3s;
    user-select: none; 
    -webkit-touch-callout: none; 
    -webkit-user-select: none; 
    -khtml-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none;
}

.logo-escrito{
    width: 0px;
    height: 0px;
    overflow: hidden;
}

#banner {
    background: #000;
    background-image: url("../img/bg-banner.png");
    height: 100vh;
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

#texto-quem-somos {
    background-color: #000;
}
#texto-quem-somos .container {
    max-width: 920px;
}
#texto-quem-somos p {
    color: #fff;
    font-size: .875rem;
    line-height: 26px;
    margin-bottom: 30px;
}

#texto-quem-somos p b{
    font-weight: bold;
}

#texto-quem-somos p:last-child {
    margin-bottom: 0;
}

#nossos-trabalhos {
    background-color: #000;
    padding-top: 130px;
    padding-bottom: 90px;
}
#nossos-trabalhos h2 {
    font-size: 4rem;
    color: #fff;
    font-weight: 700;
    padding: 20px 30px;
    background-color: #000;
    position: relative;
    line-height: 47px;
    margin: -30px 0;
}
#nossos-trabalhos span:first-child {
    font-size: 4rem;
    font-weight: 700;
    color: #000;
    text-shadow: 1px 0 0 #fff,
                -1px 0 0 #fff,
                0 1px 0 #fff,
                0 -1px 0 #fff,
                1px 1px #fff,
                -1px -1px 0 #fff,
                1px -1px 0 #fff,
                -1px 1px 0 #fff;
}
#nossos-trabalhos span:last-child {
    font-size: 4rem;
    font-weight: 700;
    color: #000;
    margin-left: 60px;
    text-shadow: 1px 0 0 #F46C00,
                -1px 0 0 #F46C00,
                0 1px 0 #F46C00,
                0 -1px 0 #F46C00,
                1px 1px #F46C00,
                -1px -1px 0 #F46C00,
                1px -1px 0 #F46C00,
                -1px 1px 0 #F46C00;
}

#grid-trabalhos {
    display: flex;
    flex-wrap: wrap;
}

#grid-trabalhos img{
    max-width: 100%;
    width: 100%;
    position: relative;
    display: inline-block;
}

#grid-trabalhos .col {
    width: 25%;
    /* background-image: url("../img/trabalho.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
    max-height: 600px;
    display: flex;
    position: relative;
}
#grid-trabalhos .conteudo {
    width: 70%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: all .3s;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 0 15%;
    z-index: 2;
    position: absolute;
}
#grid-trabalhos .conteudo:hover {
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 1;
}
#grid-trabalhos h2 {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    transition: all .3s;
}
#grid-trabalhos h3 {
    color: #fff;
    font-size: .875rem;
    font-weight: 500;
    transition: all .3s;
}
#grid-trabalhos h2,
#grid-trabalhos h3 {
    opacity: 0;
}
#grid-trabalhos a {
    cursor: pointer;
}
#grid-trabalhos svg {
    color: #F46C00;
    font-size: 4.375rem;
    opacity: 0;
    transition: all .3s;
}
#grid-trabalhos svg:hover {
    color: #fff;
}
#grid-trabalhos .conteudo:hover svg,
#grid-trabalhos .conteudo:hover h2,
#grid-trabalhos .conteudo:hover h3 {
    opacity: 1;
}
#grid-trabalhos .conteudo div:last-child {
    text-align: right;
}

#servicos {
    background-image: url("../img/bg-servicos.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 120px 0;
}
#servicos h2 {
    font-size: 4rem;
    color: #fff;
    font-weight: 700;
    padding: 20px 30px;
    background-color: #F46C00;
    position: relative;
    line-height: 47px;
    margin: -30px 0;
    max-width: max-content;
}
#servicos .container span:first-child {
    font-size: 4rem;
    font-weight: 700;
    color: #F46C00;
    text-shadow: 1px 0 0 #fff,
                -1px 0 0 #fff,
                0 1px 0 #fff,
                0 -1px 0 #fff,
                1px 1px #fff,
                -1px -1px 0 #fff,
                1px -1px 0 #fff,
                -1px 1px 0 #fff;
}
#servicos .container span:last-child {
    font-size: 4rem;
    font-weight: 700;
    color: #F46C00;
    margin-left: 60px;
    text-shadow: 1px 0 0 #000,
                -1px 0 0 #000,
                0 1px 0 #000,
                0 -1px 0 #000,
                1px 1px #000,
                -1px -1px 0 #000,
                1px -1px 0 #000,
                -1px 1px 0 #000;
}
#servicos .servico {
    display: flex;
    align-items: flex-end;
    max-width: 1025px;
    margin: 0 auto;
    flex-wrap: wrap;
    margin-top: 60px;
}
#servicos .servico div {
    width: 25%;
    text-align: center;
    min-height: 230px;
}
#servicos .servico div:nth-child(5),
#servicos .servico div:nth-child(6),
#servicos .servico div:nth-child(7),
#servicos .servico div:nth-child(8) {
    margin-top: 50px;
}
#servicos .servico div h3 {
    margin: 0 auto;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    margin-top: 25px;
    max-width: 210px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    line-height: 18px;
}

#servicos .servico div h3 span{
    max-width: 225px;
    font-weight: 600;
    position: relative;
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
}

#servicos .servico div h3 i{
    font-style: italic;
    display: contents;
}

#clientes {
    margin-top: 130px;
}
#clientes h2 {
    font-size: 4rem;
    color: #F46C00;
    font-weight: 700;
    padding: 20px 30px;
    background-color: #fff;
    position: relative;
    line-height: 47px;
    margin: -30px 0;
    max-width: max-content;
}
#clientes span:first-child {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 0 0 #F46C00,
                -1px 0 0 #F46C00,
                0 1px 0 #F46C00,
                0 -1px 0 #F46C00,
                1px 1px #F46C00,
                -1px -1px 0 #F46C00,
                1px -1px 0 #F46C00,
                -1px 1px 0 #F46C00;
}
#clientes span:last-child {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-left: 60px;
    text-shadow: 1px 0 0 #000,
                -1px 0 0 #000,
                0 1px 0 #000,
                0 -1px 0 #000,
                1px 1px #000,
                -1px -1px 0 #000,
                1px -1px 0 #000,
                -1px 1px 0 #000;
}
#clientes .titulo {
    width: 54%;
}
#clientes .texto {
    width: 46%;
}
#clientes p {
    font-size: .875rem;
    font-weight: 500;
    line-height: 26px;
    color: #000;
}
#clientes .container {
    display: flex;
    align-items: flex-end;
}

#logos-clientes {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#logos-clientes img{
    display: inline-block;
    max-width: 100%;
}

#logos-clientes div {
    width: 18%;
    margin: 0px 1%;
    padding: 15px 0;
    text-align: center;
}

#contato {
    background-image: url("../img/bg-contato.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 120px;
}
#contato .titulo h2 {
    font-size: 4rem;
    color: #fff;
    font-weight: 700;
    padding: 20px 30px;
    background-color: #000;
    position: relative;
    line-height: 47px;
    margin: -30px 0;
    max-width: max-content;
}
#contato .titulo span:first-child {
    font-size: 4rem;
    font-weight: 700;
    color: #000;
    text-shadow: 1px 0 0 #fff,
                -1px 0 0 #fff,
                0 1px 0 #fff,
                0 -1px 0 #fff,
                1px 1px #fff,
                -1px -1px 0 #fff,
                1px -1px 0 #fff,
                -1px 1px 0 #fff;
}
#contato .titulo span:last-child {
    font-size: 4rem;
    font-weight: 700;
    color: #000;
    margin-left: 60px;
    text-shadow: 1px 0 0 #F46C00,
                -1px 0 0 #F46C00,
                0 1px 0 #F46C00,
                0 -1px 0 #F46C00,
                1px 1px #F46C00,
                -1px -1px 0 #F46C00,
                1px -1px 0 #F46C00,
                -1px 1px 0 #F46C00;
}
#contato .titulo {
    margin-bottom: 60px;
}
#contato img {
    margin-bottom: 90px;
    width: 100%;
}
#contato h3 {
    color: #fff;
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 27px;
    margin-left: 50px;
    margin-right: 75px;
}
#contato h4 {
    color: #fff;
    font-size: .875rem;
    font-weight: 500;
    line-height: 26px;
}
#contato .enderecos-telefones {
    display: flex;
}
#contato .bg-text {
    background-color: #F46C00;
    padding: 0 5px;
}
#contato .tel span {
    font-weight: 700;
}
#contato svg {
    font-size: 1rem;
    color: #25D366;
}

footer {
    background-image: url("../img/bg-footer.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 100px;
}
footer .titulo-form {
    display: flex;
}
footer h3 {
    color: #fff;
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 27px;
    margin-left: 50px;
    margin-right: 95px;
}
footer form {
    min-width: 850px;
    width: 100%;
}
footer form div {
    display: flex;
}
footer form input {
    width: 50%;
}
footer form textarea {
    width: 100%;
    min-height: 190px;
}
footer form input,
footer form textarea {
    font-family: 'Poppins', sans-serif;
    background-color: transparent;
    border: none;
    padding: 10px 20px;
    border-bottom: 1px solid #fff;
    margin-bottom: 25px;
    color: #fff;
    font-size: .875rem;
    transition: all .3s;
}
footer form input::placeholder,
footer form textarea::placeholder {
    color: #fff;
    font-size: .875rem;
    transition: all .3s;
}
footer form input:focus,
footer form textarea:focus {
    border-bottom: 1px solid #F46C00;
}
footer form input:focus::placeholder,
footer form textarea:focus::placeholder {
    color: #F46C00;
}
footer form input:nth-child(1),
footer form input:nth-child(3) {
    margin-right: 50px;
}
footer form div:last-child {
    display: flex;
    justify-content: flex-end;
}
footer form button {
    width: 230px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    border: 1px solid #F46C00;
    color: #F46C00;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all .3s;
}
footer form button:hover {
    background-color: #F46C00;
    color: #fff;
}
footer .logo-social {
    margin-top: 215px;
    padding-bottom: 235px;
    display: flex;
    align-items: center;
    text-align: center;
}
footer .logo-social div {
    width: 33%;
}
footer .logo-social a {
    color: #fff;
    text-decoration: none;
    transition: all .3s;
}
footer .logo-social a:hover {
    color: #F46C00;
}
footer .logo-social a:nth-child(2) {
    margin: 0 65px;
}
footer .logo-social svg {
    font-size: 2rem;
}

aside {
    position: fixed;
    right: -900px;
    top: 0;
    background-color: #fff;
    width: 550px;
    height: 100vh;
    transition: all 1s;
    display: flex;
    align-items: center;
    z-index: 5;
}
aside nav {
    display: flex;
    flex-direction: column;
    margin-left: 125px;
}
aside nav a {
    font-size: 2.8rem;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 50px;
}
aside nav a:last-child {
    margin-bottom: 0;
}
aside nav a:hover {
    text-decoration: line-through;
    text-decoration-color: #F46C00;
}

/* Box do erro */
#msg-box {
    position: fixed;
    width: 60%;
    padding: 30px 20%;
    left: 0px;
    font-size: 20px;
    color: #fff;
    display: none;
    text-align: center;
    top: 0px;
    color: #000;
    z-index: 99999;
}

div.msg-success {
	background-color: #DAFFD2;
}

div.msg-error {
	background-color: #FFD2D5;
}

.whatsapp-icone-floating.ativo {
    right: 0px;
    opacity: 1;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    transition-delay: 4s;
    z-index: 100;
}

.whatsapp-icone-floating {
    position: fixed;
    top: 35%;
    right: -200px;
    opacity: 0;
    width: 110px;
    height: 80px;
    background: #25D366;
    justify-content: center;
    align-items: center;
    display: flex;
    overflow: hidden;
    text-indent: -200px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.whatsapp-icone-floating:after {
    content: ' ';
    background: url(./../img/wpp-logo-floating.png) no-repeat center center;
    position: relative;
    width: 100%;
    height: 100%;
}

.flex-spaced-between{
	justify-content: space-between !important;
}

.overlay-info{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    visibility: hidden;
    z-index: 10;
}

.wrapper-content iframe{
    background: #000;
    border: 2px solid #fff;
}

.wrapper-content img{
    border: 2px solid #fff;
}

.bg-content{
    background: rgb(253 140 0 / 60%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 300px;
    -webkit-transition: all 0.6s linear;
    -moz-transition: all 0.6s linear;
    -o-transition: all 0.6s linear;
    transition: all 0.6s linear;
}

.visible .bg-content{
    border-radius: 0px;
    -webkit-transition: all 0.6s linear;
    -moz-transition: all 0.6s linear;
    -o-transition: all 0.6s linear;
    transition: all 0.6s linear;
}

.close-icon{
    color: #fff;
    text-decoration: none;
    background: #fd8a00;
    padding: 10px 13.4px;
    font-size: 20px;
    font-weight: 500;
    border-radius: 30px;
    position: relative;
    left: 0px;
    top: 14px;
    z-index: 10;
}

.overlay-content, 
.overlay-visible-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
    transition-duration: 0.3s;
    transition-timing-function: linear;
    overflow: hidden;
}

.wrapper-content{
    padding: 10px;
    margin: 10px;
    z-index: 10;
    align-items: center;
    justify-content: center;
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    height: calc(100vh - 100px);
    width: 100%;
}

.wrapper-content img{
    max-width: 100%;
    max-height: 100%;
    left: -13px;
    position: relative;
}

.overlay-visible-content {
    width: 0%;
    height: 0%;
    transition-delay: 0.2s;
}

.visible{
    visibility: visible !important;
}

.visible .overlay-visible-content{
    width: 100%;
    height: 100%;
}


@media(max-width:768px) {
    footer form button{
        width: 100%;
        margin-top: 15px;    
    }
    .flex-spaced-between {
        justify-content: center !important;
    }

    :root {
        font-size: 14px;
    }
    .container {
        max-width: 320px !important;
    }
    header {
        padding: 0;
        width: 100%;
        justify-content: space-around;
    }
    header .social {
        display: none;
    }
    aside {
        width: 100vw;
    }
    #banner {
        background-size: 300%;
    }
    #nossos-trabalhos span:first-child {
        font-size: 3rem;
    }
    #nossos-trabalhos span:last-child {
        font-size: 3rem;
        margin-left: 0;
    }
    #nossos-trabalhos h2 {
        font-size: 3rem;
    }
    #grid-trabalhos .col {
        width: 50%;
        height: 200px;
    }
    #grid-trabalhos .conteudo {
        padding: 0 15%;
    }
    #servicos .servico div {
        width: 50%;
        text-align: center;
        margin-top: 50px;
    }
    #clientes .container {
        flex-wrap: wrap;
    }
    #clientes .titulo,
    #clientes .texto {
        width: 100%;
    }
    #logos-clientes div {
        width: 50%;
    }
    #contato .enderecos-telefones,
    footer .titulo-form {
        flex-direction: column;
    }
    #contato h3,
    footer h3 {
        margin-left: 0; 
        margin-right: 0;
    }
    footer form {
        min-width: 320px;
    }
    footer form div {
        flex-wrap: wrap;
    }
    footer form input {
        width: 100%;
    }
    footer form input:nth-child(1), footer form input:nth-child(3) {
        margin-right: 0px;
    }
    footer .logo-social {
        flex-direction: column;
    }
    footer .logo-social div {
        width: 100%;
    }
    footer .social {
        margin-top: 50px;
    }
}