/* HEADER START */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
p,
blockquote,
hr,
th,
td {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}

small {
    font-weight: 400;
    font-size: 12px;
}

html {
    -webkit-font-smoothing: antialiased;
}

strong,
b {
    font-weight: 700;
}

* {
    font-family: var(--font);
    font-weight: 300;
    font-style: normal;
    box-sizing: border-box;
    outline: none;
}

body {
    color: #2b2b2b;
    background-color: #fff;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

a,
button {
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    text-decoration: none;
    cursor: pointer;
}

:root {
    font-size: 16px;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 5%;
    box-sizing: border-box;
    position: relative;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1900px;
    }
}

.headerMobile {
    display: none;
}

.updatePadding {
    padding-top: 112px;
}

.sizeLogo {
    width: 72px;
    height: 60px;
}

.fixedWpp {
    position: fixed;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    box-shadow: 1px 1px 2px #888;
    border-radius: 50px;
    padding-block-start: 15px;
    text-align: center;
    bottom: 85px;
    right: 10px;
    z-index: 5;
}

.fixedWpp:hover {
    transform: scale(1.07);
}

.header {
    display: flex;
    flex-direction: row;
    padding: 10px 0;
}

.mainHeader {
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
    font-family: "Poppins", sans-serif;
}

.turnIntoFixed {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 2;
    transition: all ease-in 400ms;
}

.logoHeader {
    height: 85px;
    width: 120px;
}

.headerItems {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    flex: 1;
    gap: 50px;
}

.headerItem {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
}

.headerItem:hover,
.headerItem:active {
    transform: scale(1.03);
}

.headerItem:after {
    border: 2px solid rgb(217, 165, 2, 0);
    content: " ";
    display: block;
    transition: all 300ms ease-in-out;
    width: 0;
}

.headerItem:hover:after {
    border-color: #626262;
    transition: width 300ms ease-in-out;
    width: 97%;
}

/* HEADER END */

/* HOME START */
#home {
    .banner {
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        background-attachment: scroll;
        padding: 155px 0;
    }

    .bannerInfo {
        display: flex;
        flex-direction: column;
        gap: 32px;
        position: relative;
    }

    .logoBanner {
        position: absolute;
        right: 0;
        top: -140px;
        width: 450px;
        height: 380px;
    }

    @media (max-width: 1300px) {
        .logoBanner {
            top: -60px;
            height: 300px;
            width: 356px;
        }
    }

    .titleBanner {
        font-size: 2.8rem;
        color: #fff;
        font-weight: 600;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    }

    .subtitleBanner {
        font-size: 1.2rem;
        color: #fff;
        font-weight: 500;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    }

    .bannerButton {
        font-family: "Montserrat", sans-serif;
        font-size: 1.1rem;
        font-weight: 500;
        align-self: flex-start;
        color: #fff;
        border: solid 2px #fff;
        border-radius: 5px;
        padding: 10px 30px;
    }

    .bannerButton:hover {
        color: #000;
        background-color: #fff;
    }

    .content {
        background-color: #fff;
    }

    .youCanTrust {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 70px;
        padding: 100px 0;
    }

    .trustTitle {
        font-size: 32px;
        text-align: center;
        color: #363636;
        font-weight: 700;
    }

    .characteristics {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    .characteristic {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .characteristicTitle {
        font-size: 22px;
        text-align: center;
        color: #626262;
        font-weight: 700;
    }

    .iconTrust {
        width: 100px;
        height: 100px;
    }

    .characteristicDescription {
        font-weight: 700;
        text-align: center;
        color: #626262;
    }

    .logoContent {
        width: 261px;
        height: 185px;
    }

    .articleLust {
        background-color: #f7f7f7;
    }

    .imgArticles {
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
        max-width: 563px;
    }

    .rowArticles {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding-block-start: 50px;
        padding-block-end: 50px;
    }

    .colArticleText {
        width: 70%;
    }

    .articleTitle {
        font-size: 32px;
        font-weight: 600;
    }

    .articleSubtitle {
        font-size: 20px;
        line-height: 1.5rem;
        color: #626262;
        font-weight: 500;
    }

    .articleDescription {
        font-size: 1rem;
        padding: 50px 0;
    }

    .knowMore {
        font-size: 1.1rem;
        color: #000;
        font-weight: 500;
        padding-bottom: 30px;
    }

    .sustainable {
        padding-right: 50px;
    }

    .cheapTitle {
        padding-top: 30px;
        font-size: 32px;
        font-weight: 600;
    }

    .sustainableImg {
        margin-top: 30px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    }

    .customersColumn {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 100px;
        margin-top: 50px;
    }

    .customersTitle {
        font-size: 32px;
        text-align: center;
        color: #363636;
        font-weight: 600;
    }

    .customersText {
        font-size: 20px;
        line-height: 1.5rem;
        color: #626262;
        font-weight: 500;
        padding-bottom: 30px;
    }

    .owl-stage {
        transition-duration: 0.5;
    }

    .owl-theme .owl-dots .owl-dot.active span,
    .owl-theme .owl-dots .owl-dot:hover span {
        background: #000;
        height: 20px;
    }

    .owl-theme .owl-dots .owl-dot span {
        width: 15px;
        height: 15px;
        margin: 5px 4px;
        background: #626262;
        transition: all 0.4s ease;
        border-radius: 4px;
    }

    .owl-theme .owl-nav [class*="owl-"]:hover {
        background: #000;
    }

    .deposition {
        position: relative;
        background: #f9f9f9;
        padding: 85px 50px 45px 70px;
        margin: 0 0px 4px 0;
        margin-top: 45px;
        color: #656565;
        font-weight: 400;
        line-height: 24px;
        text-align: center;
        font-family: "Poppins", sans-serif;
    }

    .depositionText:before {
        position: absolute;
        top: 60px;
        left: 25px;
        color: #000;
        content: "\201C";
        font-family: Georgia, serif;
        font-size: 100px;
    }

    .depositionText {
        color: #656565;
        font-weight: 500;
        line-height: 24px;
        text-align: center;
        font-size: 1rem;
    }

    .depositionAuthor {
        font-size: 1rem;
        margin-top: 30px;
        color: #000;
        font-weight: 600;
        line-height: 25px;
        text-align: center;
    }

    @media (min-width: 1600px) {
        .banner {
            padding: 250px 0;
            background-position-y: 0;
        }
    }

    @media (min-width: 1900px) {
        .banner {
            padding: 300px 0;
            background-position-y: -90px;
        }
    }

    @media (min-width: 2300px) {
        .banner {
            padding: 350px 0;
            background-position-y: -115px;
        }
    }
}

/* HOME END */

/* QUEM SOMOS START */
#about-us {
    .banner {
        background-image: url(../../img/bannerStudio.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-position-y: -5px;
        padding: 200px 0;
    }

    .bannerInfo {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 70%;
    }

    .titleBanner {
        font-size: 2.8rem;
        color: #fff;
        font-weight: 600;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    }

    .subtitleBanner {
        font-size: 1.2rem;
        color: #fff;
        font-weight: 500;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    }

    .content {
        padding: 50px 0;
    }

    .titleContent {
        font-size: 2.3rem;
        color: #363636;
        padding-bottom: 10px;
        text-align: center;
    }

    .subtitleContent {
        font-size: 1.4rem;
        font-weight: 500;
        color: #626262;
        padding-bottom: 50px;
        text-align: center;
    }

    .columnValues {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .valueTitle {
        font-size: 1.9rem;
        color: #363636;
    }

    .valueDescription {
        font-size: 1rem;
        color: #626262;
        font-weight: 500;
        text-align: center;
        width: 70%;
    }

    .pictureStudio {
        width: 805px;
        height: 536px;
        border-radius: 8px;
    }

    .information {
        background-color: #000;
    }

    #map {
        width: 805px;
        height: 603.75px;
        border-radius: 8px;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.45);
    }

    @media (min-width: 1600px) {
        .banner {
            padding: 250px 0;
            background-position-y: 0;
        }
    }

    @media (min-width: 1900px) {
        .banner {
            padding: 300px 0;
            background-position-y: -90px;
        }
    }

    @media (min-width: 2300px) {
        .banner {
            padding: 350px 0;
            background-position-y: -115px;
        }
    }

    .owl-carousel {
        max-width: 815px;
        z-index: 0;
    }

    .owl-stage {
        transition-duration: 1;
    }

    .owl-theme .owl-dots .owl-dot.active span,
    .owl-theme .owl-dots .owl-dot:hover span {
        background: #000;
        height: 20px;
    }

    .owl-theme .owl-dots .owl-dot span {
        width: 15px;
        height: 15px;
        margin: 5px 4px;
        background: #626262;
        transition: all 0.4s ease;
        border-radius: 4px;
    }

    .owl-theme .owl-nav [class*="owl-"]:hover {
        background: #000;
    }

    .item {
        max-width: 805px;
    }

    .team {
        padding: 70px 0;
    }

    .columnTeam {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 130px;
    }

    .memberInformation {
        color: #626262;
        line-height: 1.7rem;
    }

    .teamMember {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 50px;
        max-width: 1000px;
    }

    .memberPicture {
        width: 300px;
        height: 450px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    }

    .memberName {
        color: #000;
        font-size: 2rem;
        padding-bottom: 5px;
    }

    .memberGraduation {
        font-weight: 500;
        padding-bottom: 15px;
    }

    .memberDocument {
        font-weight: 500;
    }

    .memberEmail {
        font-weight: 500;
        color: #626262;
    }

    .memberAchievements {
        list-style-type: "-  ";
    }

    .quoteText2 {
        font-weight: 600;
        font-size: 1.1rem;
        line-height: 1.8rem;
        color: #626262;
        font-style: italic;
        z-index: 1;
        position: absolute;
        top: 35px;
    }

    .managers {
        display: flex;
        flex-direction: column;
        gap: 20px;

        .memberAchievements {
            padding-left: 20px;
        }
    }

    @media (min-width: 1024px) {
        .managers {
            max-width: 900px;
            flex-direction: row;
            gap: 0;
        }

        .managers > div {
            width: 50%;
            padding: 20px;
        }
    }
}

/* QUEM SOMOS END */

/* PROJETOS START */
#projects {
    .banner {
        background-image: url(../../img/EXECUÇÃOBG.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-position-y: -5px;
        padding: 200px 0;
    }

    .bannerInfo {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 70%;
    }

    .titleBanner {
        font-size: 2.8rem;
        color: #fff;
        font-weight: 600;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    }

    .subtitleBanner {
        font-size: 1.2rem;
        color: #fff;
        font-weight: 600;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    }

    .rowProjects {
        display: flex;
        flex-direction: row;
        padding-top: 50px;
        gap: 130px;
    }

    nav.search {
        display: block;
        unicode-bidi: isolate;
        width: 250px;
    }

    .searchTitle {
        font-size: 1.375rem;
        color: #000;
        font-weight: 600;
        padding-bottom: 30px;
        padding-left: 10px;
        margin-bottom: 20px;
        border-bottom: 1px solid #eee;
    }

    .show {
        display: block;
    }

    .hide {
        display: none;
    }

    .categoriesList {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0;
    }

    .category-link {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px;
        font-size: .9rem;
        font-weight: 600;
        color: #626262;
        padding: 8px 15px;
        border-radius: 5px;
        transition: background-color 0.3s ease, color 0.3s ease;
        width: 175px;
        text-decoration: none;
    }

    .category-link i {
        font-size: 1.4rem;
        color: #666666;
        transition: color 0.3s ease;
    }

    .category-link:hover {
        background-color: #666666;
        color: #fff;
    }

    .category-link:hover i {
        color: #fff;
    }

    .category-link.active {
        background-color: #666666;
        color: #fff;
    }

    .category-link.active i {
        color: #fff;
    }

    .rowShow {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        padding-bottom: 40px;
        gap: 35px;
    }

    .limitBackground {
        overflow: hidden;
        text-align: center;
        border-radius: 8px;
    }

    .projectItem {
        position: relative;
        box-sizing: border-box;
        width: 262px;
        height: 148px;
        transition: 400ms all ease-in;
        background: none;
        border: none;
        background-repeat: no-repeat;
    }

    .projectItem .projectContent {
        position: absolute;
        top: 0;
        left: 0;
        width: 262px;
        height: 148px;
        background: linear-gradient(rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.9) 100%);
        border-radius: 8px;
    }

    .projectItem,
    .projectItem > * {
        transition: all 0.5s ease-in-out;
    }

    .projectItem:hover {
        transform: scale(1.2);
    }

    .projectItem:hover > .projectTitle {
        transform: scale(0.85);
        bottom: 23px;
        color: #000;
    }

    .projectTitle {
        position: absolute;
        text-align: center;
        width: 100%;
        bottom: 15px;
        color: #fff;
        font-size: 1.1rem;
        transition: all 0.5s ease-in-out;
        font-weight: 600;
    }

    .information {
        background-color: #000;
    }

    @media (min-width: 1600px) {
        .banner {
            padding: 250px 0;
            background-position-y: 0;
        }
    }

    @media (min-width: 1900px) {
        .banner {
            padding: 300px 0;
            background-position-y: -90px;
        }
    }

    @media (min-width: 2300px) {
        .banner {
            padding: 350px 0;
            background-position-y: -115px;
        }
    }
}

/* PROJETOS END */

/* PROJETOS SINGLE START */
#projects-single {
    .banner {
        background-image: url(../../../img/PROJETOSBG.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-position-y: -5px;
        padding: 200px 0;
    }

    .bannerInfo {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 70%;
    }

    .titleBanner {
        font-size: 2.8rem;
        color: #fff;
        font-weight: 600;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    }

    .subtitleBanner {
        font-size: 1.2rem;
        color: #fff;
        font-weight: 600;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    }

    .rowProject {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 20px;
        padding: 50px 0;
    }

    .columnMidia {
        display: flex;
        flex-direction: column;
    }

    .projectImage {
        width: 555px;
        height: 310px;
        border-radius: 8px;
        cursor: pointer;
    }

    .owl-carousel {
        width: 555px;
    }

    .owl-stage {
        transition-duration: 0.5;
    }

    .owl-dots {
        position: absolute;
        bottom: 15px;
        left: 217.5px;
    }

    .owl-theme .owl-dots .owl-dot.active span,
    .owl-theme .owl-dots .owl-dot:hover span {
        background: #000;
        height: 17px;
    }

    .owl-theme .owl-dots .owl-dot span {
        width: 12px;
        height: 12px;
        margin: 5px 4px;
        background: #fff;
        transition: all 0.4s ease;
        border-radius: 4px;
    }

    .owl-theme .owl-nav [class*="owl-"]:hover {
        background: #000;
    }

    .projectDescription {
        display: flex;
        flex-direction: column;
        gap: 30px;
        max-width: 555px;
    }

    .projectTitle {
        font-size: 2rem;
        font-weight: 600;
        color: #363636;
    }

    .infos {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-inline-start: 20px;
    }

    .infoItem {
        color: #626262;
        font-weight: 600;
    }

    .youtubeVideo {
        border-radius: 8px;
    }

    .buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 80px;
        padding-bottom: 40px;
    }

    .buttonInterest {
        background-color: #e0e0e0;
        color: #353535;
        padding: 20px 30px;
        font-size: 1.675rem;
        letter-spacing: 1px;
        font-family: "Montserrat", sans-serif;
        text-transform: uppercase;
        font-weight: 500;
        display: inline-block;
        border-radius: 6px;
        text-align: center;
        cursor: pointer;
        transition: all 0.4s ease-in;
    }

    .buttonInterest span {
        font-size: 0.875rem;
        margin-top: 6px;
        font-weight: 500;
    }

    .buttonInterest:hover {
        background-color: #000;
        color: #fff;
    }

    .backToProjects {
        background-color: #000;
        padding: 14px 20px;
        border-radius: 6px;
        text-transform: uppercase;
        color: #fff;
        font-size: 1.1rem;
        font-weight: 500;
        letter-spacing: 1px;
    }

    .backToProjects:hover {
        background-color: #363636;
    }

    .information {
        background-color: #000;
    }

    @media (min-width: 1600px) {
        .banner {
            padding: 250px 0;
            background-position-y: 0;
        }
    }

    @media (min-width: 1900px) {
        .banner {
            padding: 300px 0;
            background-position-y: -90px;
        }
    }

    @media (min-width: 2300px) {
        .banner {
            padding: 350px 0;
            background-position-y: -115px;
        }
    }

    /*Full Screen Classes*/

    .modal {
        display: none;
        position: fixed;
        z-index: 5;
        padding: 5px 0;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.7);
    }

    .modal-content {
        position: relative;
        margin: auto;
        padding: 0;
        width: 85%;
        max-width: 1200px;
        border: none;
        background-color: transparent;
    }

    .my-slides {
        text-align: center;
    }

    .landscape-image {
        width: 68vw;
    }

    .close {
        color: #fff;
        position: absolute;
        touch-action: 10px;
        right: 25px;
        font-size: 48px;
        font-weight: bold;
        transition: 0.3s ease;
    }

    .close:hover,
    .close:focus {
        color: #fff;
        text-decoration: none;
        cursor: pointer;
    }

    .prev,
    .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        padding: 16px;
        margin-top: -50px;
        color: #fff !important;
        font-weight: bold;
        font-size: 3em;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
        -webkit-user-select: none;
    }

    .next {
        right: 0;
        border-radius: 3px 0 0 3px;
    }

    .next:hover,
    .prev:hover {
        background-color: rgba(0, 0, 0, 0.7);
    }

    .youtubeVideo {
        border-radius: 8px;
        height: 180px;
        width: 335px;
    }

    @media (min-width: 1024px) {
        .youtubeVideo {
            height: 315px;
            width: 560px;
        }
    }
}

/* PROJETOS SINGLE END */
/* EXECUCAO START */
#execution {
    .banner {
        background-image: url(../../img/EXECUCAOBG2.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-position-y: -5px;
        padding: 200px 0;
    }

    .bannerInfo {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 70%;
    }

    .titleBanner {
        font-size: 2.8rem;
        color: #fff;
        font-weight: 600;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    }

    .subtitleBanner {
        font-size: 1.2rem;
        color: #fff;
        font-weight: 600;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    }

    .rowConstructions {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        padding: 50px 0px;
        gap: 35px;
    }

    .limitBackground {
        overflow: hidden;
        text-align: center;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }

    .constructionItem {
        position: relative;
        box-sizing: border-box;
        width: 262px;
        height: 148px;
        transition: 400ms all ease-in;
        background: none;
        border: none;
        background-repeat: no-repeat;
    }

    .constructionItem .constructionContent {
        position: absolute;
        top: 0;
        left: 0;
        width: 262px;
        height: 148px;
        background: linear-gradient(rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.9) 100%);
        border-radius: 8px;
    }

    .constructionItem,
    .constructionItem > * {
        transition: all 0.5s ease-in-out;
    }

    .constructionItem:hover {
        transform: scale(1.2);
    }

    .constructionItem:hover > .constructionTitle {
        transform: scale(0.85);
        bottom: 23px;
        color: #000;
    }

    .constructionTitle {
        position: absolute;
        text-align: center;
        width: 100%;
        bottom: 15px;
        color: #fff;
        font-size: 1.1rem;
        transition: all 0.5s ease-in-out;
        font-weight: 600;
    }

    .information {
        background-color: #000;
    }

    @media (min-width: 1600px) {
        .banner {
            padding: 250px 0;
            background-position-y: 0;
        }
    }

    @media (min-width: 1900px) {
        .banner {
            padding: 300px 0;
            background-position-y: -90px;
        }
    }

    @media (min-width: 2300px) {
        .banner {
            padding: 350px 0;
            background-position-y: -115px;
        }
    }
}

/* EXECUCAO END */
/* EXECUCAO SINGLE START */
#execution-single {
    .banner {
        background-image: url(../../../img/bannerExecution.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-position-y: -5px;
        padding: 200px 0;
    }

    .bannerInfo {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 70%;
    }

    .titleBanner {
        font-size: 2.8rem;
        color: #fff;
        font-weight: 600;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    }

    .subtitleBanner {
        font-size: 1.2rem;
        color: #fff;
        font-weight: 600;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    }

    .rowConstruction {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 20px;
        padding: 50px 0;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        .rowConstruction {
            flex-direction: column;
            align-items: center;
        }
    }

    .columnMidia {
        display: flex;
        flex-direction: column;
    }

    .constructionImage {
        width: 555px;
        height: 310px;
        border-radius: 8px;
        cursor: pointer;
    }

    .owl-carousel {
        width: 555px;
    }

    .owl-stage {
        transition-duration: 0.5;
    }

    .owl-dots {
        position: absolute;
        bottom: 15px;
        left: 217.5px;
    }

    .owl-theme .owl-dots .owl-dot.active span,
    .owl-theme .owl-dots .owl-dot:hover span {
        background: #000;
        height: 17px;
    }

    .owl-theme .owl-dots .owl-dot span {
        width: 12px;
        height: 12px;
        margin: 5px 4px;
        background: #fff;
        transition: all 0.4s ease;
        border-radius: 4px;
    }

    .owl-theme .owl-nav [class*="owl-"]:hover {
        background: #000;
    }

    .constructionDescription {
        display: flex;
        flex-direction: column;
        gap: 30px;
        max-width: 555px;
    }

    .constructionTitle {
        font-size: 2rem;
        font-weight: 600;
        color: #363636;
    }

    .infos {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-inline-start: 20px;
    }

    .infoItem {
        color: #626262;
        font-weight: 600;
    }

    .youtubeVideo {
        border-radius: 8px;
        height: 180px;
        width: 335px;
    }

    @media (min-width: 1024px) {
        .youtubeVideo {
            height: 315px;
            width: 560px;
        }
    }

    .buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 80px;
        padding-bottom: 40px;
    }

    .buttonInterest {
        background-color: #e0e0e0;
        color: #353535;
        padding: 20px 30px;
        font-size: 1.675rem;
        letter-spacing: 1px;
        font-family: "Montserrat", sans-serif;
        text-transform: uppercase;
        font-weight: 500;
        display: inline-block;
        border-radius: 6px;
        text-align: center;
        cursor: pointer;
        transition: all 0.4s ease-in;
    }

    .buttonInterest span {
        font-size: 0.875rem;
        margin-top: 6px;
        font-weight: 500;
    }

    .buttonInterest:hover {
        background-color: #000;
        color: #fff;
    }

    .backToExecutions {
        background-color: #000;
        padding: 14px 20px;
        border-radius: 6px;
        text-transform: uppercase;
        color: #fff;
        font-size: 1.1rem;
        font-weight: 500;
        letter-spacing: 1px;
    }

    .backToExecutions:hover {
        background-color: #363636;
    }

    .information {
        background-color: #000;
    }

    @media (min-width: 1600px) {
        .banner {
            padding: 250px 0;
            background-position-y: 0;
        }
    }

    @media (min-width: 1900px) {
        .banner {
            padding: 300px 0;
            background-position-y: -90px;
        }
    }

    @media (min-width: 2300px) {
        .banner {
            padding: 350px 0;
            background-position-y: -115px;
        }
    }

    /*Full Screen Classes*/

    .modal {
        display: none;
        position: fixed;
        z-index: 5;
        padding: 5px 0;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.7);
    }

    .modal-content {
        position: relative;
        margin: auto;
        padding: 0;
        width: 85%;
        max-width: 1200px;
        border: none;
        background-color: transparent;
    }

    .my-slides {
        text-align: center;
    }

    .landscape-image {
        width: 68vw;
    }

    .close {
        color: #fff;
        position: absolute;
        touch-action: 10px;
        right: 25px;
        font-size: 48px;
        font-weight: bold;
        transition: 0.3s ease;
    }

    .close:hover,
    .close:focus {
        color: #fff;
        text-decoration: none;
        cursor: pointer;
    }

    .prev,
    .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        padding: 16px;
        margin-top: -50px;
        color: #fff !important;
        font-weight: bold;
        font-size: 3em;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
        -webkit-user-select: none;
    }

    .next {
        right: 0;
        border-radius: 3px 0 0 3px;
    }

    .next:hover,
    .prev:hover {
        background-color: rgba(0, 0, 0, 0.7);
    }
}

/* EXECUCAO SINGLE END */
/* EQUIPE START */
#team {
    .banner {
        background-image: url(../../img/bannerEQUIPE.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-position-y: 0px;
        padding: 275px 0;
    }

    .bannerInfo {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 70%;
    }

    .titleBanner {
        font-size: 2.8rem;
        color: #fff;
        font-weight: 600;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    }

    .subtitleBanner {
        font-size: 1.2rem;
        color: #fff;
        font-weight: 500;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    }

    .team {
        padding: 70px 0;
    }

    .columnTeam {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 130px;
    }

    .memberInformation {
        color: #626262;
        line-height: 1.7rem;
    }

    .teamMember {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 50px;
        max-width: 1000px;
    }

    .memberPicture {
        width: 300px;
        height: 450px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    }

    .memberName {
        color: #000;
        font-size: 2rem;
        padding-bottom: 5px;
    }

    .memberGraduation {
        font-weight: 500;
        padding-bottom: 15px;
    }

    .memberDocument {
        font-weight: 500;
    }

    .memberEmail {
        font-weight: 500;
        color: #626262;
    }

    .memberAchievements {
        list-style-type: "-  ";
    }

    .achievement {
        font-weight: 500;
        color: #626262;
    }

    .quoteText {
        font-weight: 600;
        font-size: 1.1rem;
        line-height: 1.8rem;
        color: #626262;
        font-style: italic;
        z-index: 1;
        position: absolute;
        top: 35px;
    }

    .memberQuote {
        position: relative;
        padding: 50px 50px;
    }

    .teamMember .memberQuote i {
        color: #efefef;
        font-size: 110px;
        left: 0;
        top: 20px;
        position: absolute;
        z-index: 0;
    }

    .information {
        background-color: #000;
    }

    .desktop {
        display: block;
    }

    .mobile {
        display: none;
    }

    @media (min-width: 1600px) {
        .banner {
            padding: 300px 0;
            background-position-y: 0;
        }
    }

    @media (min-width: 1900px) {
        .banner {
            padding: 350px 0;
            background-position-y: -38px;
        }
    }

    @media (min-width: 2300px) {
        .banner {
            padding: 400px 0;
            background-position-y: -80px;
        }
    }
}

/* EQUIPE END */
/* CONTATO START */
#contact {
    .banner {
        background-image: url(../../img/bannerContact.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-position-y: -50px;
        padding: 150px 0;
    }

    .bannerInfo {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 70%;
    }

    .titleBanner {
        font-size: 2.8rem;
        color: #fff;
        font-weight: 600;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    }

    .subtitleBanner {
        font-size: 1.2rem;
        color: #fff;
        font-weight: 500;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    }

    .contactContent {
        background-color: #000;
    }

    .contactRow {
        display: flex;
        flex-direction: row;
    }

    .contactInformationColumn {
        display: flex;
        flex-direction: column;
        padding: 70px 0;
        color: #fff;
    }

    .informationTitle {
        font-size: 2rem;
        line-height: 2.875rem;
    }

    .containerAddress {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .contactInformationText {
        font-weight: 600;
        font-size: 1.1rem;
        padding: 10px 0;
    }

    .contactPadding {
        padding: 50px 0;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .contactInfo {
        display: flex;
        flex-direction: row;
        gap: 15px;
        align-items: center;
        color: #626262;
    }

    .contactInfoText {
        color: #626262;
        font-weight: 600;
    }

    .formContainer {
        padding: 70px 0;
        background-color: #fff;
        color: #000;
        width: 60%;
        padding-inline-start: 20px;
        padding-inline-end: 20px;
    }

    .rowForm {
        padding: 30px 0;
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .input {
        width: 100%;
        border-radius: 3px;
        font-size: 13px;
        height: auto;
        line-height: 1.33333;
        padding: 15px 15px 15px 20px;
        background: #f6f7f8;
        border: 0px solid transparent;
        box-shadow: none;
        transition: all 0.3s ease-in-out;
    }

    #textArea {
        max-width: 100%;
        min-width: 100%;
        min-height: 200px;
        max-height: 300px;
    }

    .input::placeholder {
        color: #000;
        font-weight: 500;
    }

    .input:focus {
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }

    .buttonForm {
        background-color: #000;
        border: none;
        color: #fff;
        font-weight: 500;
        font-size: 1rem;
        margin-top: 30px;
        padding: 10px 30px;
        letter-spacing: 1.2px;
        font-family: "Poppins", sans-serif;
        border-radius: 5px;
    }

    .buttonForm:hover {
        background-color: #575757;
    }

    .socialMediaRowMain {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .socialMediaRowMain i {
        font-size: 2rem;
        color: #fff;
        margin-bottom: 10px;
    }

    .roundBorder {
        transition: all 0.5s ease-in-out;
    }

    .roundBorder:hover {
        filter: brightness(5);
    }

    .information {
        background-color: #000;
    }

    @media (min-width: 1600px) {
        .banner {
            padding: 250px 0;
            background-position-y: 0;
        }
    }

    @media (min-width: 1900px) {
        .banner {
            padding: 300px 0;
            background-position-y: -90px;
        }
    }

    @media (min-width: 2300px) {
        .banner {
            padding: 350px 0;
            background-position: center;
            background-position-y: -115px;
        }
    }
}

/* CONTATO END */

/* FOOTER START */
footer {
    .information {
        background-color: #000;
    }

    .contactText {
        color: #fff;
        font-size: 1em;
        font-weight: 500;
    }

    .informationRow {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 70px;
        height: 115px;
    }

    .informationItem {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .informationText {
        display: flex;
        flex-direction: column;
    }

    .mainText {
        font-size: 1.175rem;
        color: #fff;
        font-weight: 600;
        padding-top: 5px;
    }

    .secondText {
        font-size: 1.1rem;
        color: #fff;
        font-weight: 400;
        padding-bottom: 5px;
    }

    .meraki {
        background-color: #1a1a1a;
    }

    .columnMeraki {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        padding-top: 30px;
    }

    .logoFooter {
        height: 85px;
        width: 120px;
    }

    .copyright {
        color: #fff;
        text-align: center;
    }

    .socialMediaTitle {
        color: #fff;
        font-size: 1.1rem;
        font-weight: 500;
    }

    .socialMediaRow {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .socialMediaRow i {
        font-size: 2rem;
        color: #fff;
        margin-bottom: 10px;
    }

    .merakiText {
        color: #fff;
        padding-bottom: 10px;
    }

    .ffLink {
        color: #fff;
    }

    .ffLink:hover {
        filter: brightness(0.65);
    }

    .merakiLink {
        color: #fff;
    }

    .merakiLink:hover {
        filter: brightness(0.65);
    }

    #iconFooter {
        font-size: 2.5rem;
        color: #fff;
    }
}

/* FOOTER END */

@media (max-width: 1149px) {
    .container {
        max-width: 100%;
    }

    .mainHeader {
        display: none;
    }

    .logoHeader {
        height: 60px;
        width: 85px;
        align-self: center;
    }

    .menuButton {
        background-color: #000;
        font-weight: 800;
        font-size: 1rem;
        color: white;
        border: none;
        border-radius: 50px;
        padding: 10.5px 13px;
        position: fixed;
        top: 10px;
        right: 5%;
    }

    .headerMobile {
        background-color: #fff;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding-right: 5%;
        position: fixed;
        top: 0px;
        z-index: 99;
        height: 60px;
        box-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
    }

    .containerItems {
        text-align: center;
        width: 100%;
        position: absolute;
        top: 54px;
        right: -1200px;
        background: #fff;
        transition: all 0.7s ease;
        height: 70vh; /* Mantido em 70% da altura da viewport */
        overflow-y: auto;
    }

    .containerItems.active {
        right: 0px;
    }

    .headerItem {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin: 8% 0;
    }

    .headerItem:hover,
    .headerItem:active {
        transform: scale(1);
    }

    .headerItem:after {
        border: none;
        content: none;
    }

    .banner {
        background-size: 826px 465px;
        padding: 80px 0;
    }

    .bannerInfo {
        width: 100%;
        gap: 40px;
    }

    .titleBanner {
        font-size: 1.8rem !important;
        text-align: center !important;
    }

    .subtitleBanner {
        font-size: 1rem;
        text-align: center;
    }

    .updatePadding {
        padding-top: 0;
    }

    #home {
        .container {
            max-width: 100%;
        }

        .bannerButton {
            align-self: center;
        }

        .youCanTrust {
            gap: 30px;
        }

        .trustTitle {
            font-size: 25px;
        }

        .characteristics {
            flex-direction: column;
        }

        .iconTrust {
            width: 80px;
            height: 80px;
        }

        .logoBanner {
            display: none;
        }

        .logoContent {
            width: 190px;
            height: 135px;
        }

        .sustainable,
        .cheap {
            max-width: 100%;
        }

        .rowArticles {
            flex-direction: column;
        }

        .colArticleText {
            width: auto;
        }

        .articleTitle,
        .articleSubtitle,
        .articleDescription {
            text-align: center;
        }

        .articleTitle {
            font-size: 25px;
            padding-bottom: 15px;
        }

        .articleDescription {
            padding: 25px 0;
        }

        .sustainable {
            padding: 0;
        }

        .cheap {
            display: flex;
            flex-direction: column;
        }

        .cheapTitle {
            order: 1;
            text-align: center;
            font-size: 25px;
        }

        .articleDescription {
            order: 2;
        }

        #cheapImg {
            order: 3;
        }

        .imgArticles {
            max-width: 337px;
        }

        .customersTitle {
            font-size: 27px;
            text-align: center;
        }

        .customersText {
            padding: 0;
        }

        .deposition {
            margin: 0;
            margin-top: 5px;
            padding: 70px 35px 30px 55px;
        }
    }

    #about-us {
        .container {
            max-width: 100%;
        }

        .banner {
            background-size: 800px 428px;
            background-position-x: center;
        }

        .titleContent {
            font-size: 1.5rem;
        }

        .subtitleContent {
            font-size: 1.2rem;
            padding-bottom: 25px;
        }

        .valueTitle {
            font-size: 1.5rem;
        }

        .valueDescription {
            width: auto;
        }

        .pictureStudio {
            width: auto;
            height: auto;
        }

        #map {
            width: 100%;
            height: 250px;
        }
    }

    #projects {
        .container {
            max-width: 100%;
        }

        .banner {
            background-size: 800px 428px;
            background-position-y: 40px;
            background-position-x: center;
        }

        .rowProjects {
            padding-top: 30px;
            flex-direction: column;
            gap: 50px;
        }

        nav.search {
            width: 100%;
        }

        .searchTitle {
            text-align: center;
            padding-left: 0;
            padding-bottom: 15px;
        }

        .categoriesList {
            flex-direction: row;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .category-link {
            background-color: #626262;
            padding: 10px 15px;
            border-radius: 10px;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
            margin-bottom: 10px;
            width: auto;
            color: #fff;
            font-size: 1rem;
            font-weight: 600;
        }

        .category-link i {
            display: none;
        }

        .category-link.active {
            background-color: #000;
        }

        @media (hover: hover) {
            .category-link:hover {
                background-color: #000;
            }
        }

        .category-link:active {
            background-color: #000;
        }

        .rowShow {
            flex-direction: column;
            flex-wrap: nowrap;
            gap: 25px;
        }
    }

    #projects-single {
        .container {
            max-width: 100%;
        }

        .banner {
            background-size: 500px 333.33px;
            background-position-y: 40px;
            background-position-x: center;
        }

        .rowProject {
            padding-top: 25px;
        }

        .projectTitle {
            text-align: center;
        }

        .projectDescription {
            order: 1;
            gap: 15px;
        }

        .owl-carousel {
            order: 2;
            width: 337.5px;
        }

        .projectImage {
            height: auto;
        }

        .youtubeVideo {
            order: 3;
        }
    }

    #execution {
        .container {
            max-width: 100%;
        }

        .banner {
            background-size: 500px 333.33px;
            background-position-y: 20px;
            background-position-x: center;
        }

        .rowConstructions {
            flex-direction: column;
            flex-wrap: nowrap;
            gap: 25px;
        }
    }

    #execution-single {
        .container {
            max-width: 100%;
        }

        .banner {
            background-size: 500px 333.33px;
            background-position-y: 40px;
            background-position-x: center;
        }

        .rowProject {
            padding-top: 25px;
        }

        .constructionTitle {
            text-align: center;
        }

        .constructionDescription {
            order: 1;
            gap: 15px;
        }

        .owl-carousel {
            order: 2;
            width: 337.5px;
        }

        .constructionImage {
            max-height: 310px;
        }

        .youtubeVideo {
            order: 3;
        }
    }

    #team {
        .container {
            max-width: 100%;
        }

        .mobile {
            display: block;
        }

        .desktop {
            display: none;
        }

        .banner {

            background-size: 800px 428px;
            background-position-x: center;
            background-position-y: 45px;

        }

        .team {
            padding: 35px 0;
        }

        .columnTeam {
            gap: 30px;
        }

        .teamMember {
            flex-direction: column;
        }

        .memberPicture {
            margin: 15px 0;
            align-self: center;
            height: 348px;
            width: 232px;
        }

        .memberInformation {
            order: 1;
            display: flex;
            flex-direction: column;
        }

        .memberName {
            font-size: 1.5rem;
            text-align: center;
            padding-top: 15px;
        }

        .memberGraduation {
            text-align: center;
        }

        .memberDocument,
        .memberEmail {
            font-size: 0.9rem;
        }

        .memberAchievements {
            padding: 0 5%;
            font-size: 0.9rem;
        }

        .memberQuote {
            padding: 0;
            padding-bottom: 40px;
        }

        .teamMember .memberQuote i {
            top: 0;
        }

        .quoteText {
            position: relative;
            text-align: center;
        }
    }

    #contact {
        .container {
            max-width: 100%;
        }

        .banner {
            background-size: 800px 428px;
            background-position-x: center;
        }

        .contactRow {
            flex-direction: column;
        }

        .contactInformationColumn {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 35px 0;
            order: 2;
        }

        .informationTitle {
            font-size: 1.5rem;
            text-align: center;
        }

        .contactInformationText {
            text-align: center;
        }

        .informationText {
            text-align: center;
        }

        .contactPadding {
            padding: 25px 0;
        }

        .formContainer {
            padding: 35px 0;
            padding-inline-start: 10px;
            padding-inline-end: 10px;
            width: auto;
            order: 1;
        }

        .buttonForm {
            margin-left: calc(50% - 91px);
        }

        .information {
            display: none;
        }
    }

    footer {
        .informationRow {
            flex-direction: column;
            align-items: center;
            gap: 15px;
            height: auto;
            padding: 10px 0;
        }

        .mainText {
            font-size: 0.875rem;
            text-align: center;
        }

        .secondText {
            font-size: 0.7rem;
            text-align: center;
        }

        .informationItem {
            gap: 15px;
        }

        .contactText {
            text-align: center;
            font-size: 0.875rem;
        }

        #iconFooter {
            font-size: 1rem;
        }
    }
}
