:root {
    --sombra: drop-shadow(-5px 5px 8px #0000005d);
    --darkBlue: #04466a;
    --lightBlue: #158dcd;
    --green: #a8c83b;
}

* {
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out;
}

section {
    overflow-x: hidden;
}

.scrollIn {
    transform: translateX(0px);
}

html {
    scroll-behavior: smooth;
}

body {
    max-width: 100vw;
    overflow-x: hidden;
    max-height: 100vh;
}

@font-face {
    font-family: SimplyRound;
    src: url('./fonts/Simply\ Rounded.ttf');
}

@font-face {
    font-family: Rounded_Elegance;
    src: url(./fonts/Rounded_Elegance.ttf);
}

.header {
    background-color: #fff;
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, .1);
    position: fixed;
    top: 0%;
    width: 75%;
    z-index: 101;
    display: none;
    border-radius: 0px 0px 15px 15px;
}

.header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: #fff;
}

.header li a {
    display: block;
    padding: 20px 20px;
    border-right: 1px solid #f4f4f4;
    text-decoration: none;
}

.header li a:hover,
.header .menu-btn:hover {
    background-color: #f4f4f4;
}

.header .logo {
    display: block;
    float: left;
    font-size: 2em;
    padding: 10px 20px;
    text-decoration: none;
}


/* menu */

.header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
}


/* menu icon */

.header .menu-icon {
    cursor: pointer;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
}

.header .menu-icon .nav-icon {
    background: #333;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
}

.header .menu-icon .nav-icon:before,
.header .menu-icon .nav-icon:after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.header .menu-icon .nav-icon:before {
    top: 5px;
}

.header .menu-icon .nav-icon:after {
    top: -5px;
}


/* menu btn */

.headerLogo {
    height: 50px;
}

.header .menu-btn {
    display: none;
}

.header .menu-btn:checked~.menu {
    max-height: 380px;
}

.header .menu-btn:checked~.menu-icon .nav-icon {
    background: transparent;
}

.header .menu-btn:checked~.menu-icon .nav-icon:before {
    transform: rotate(-45deg);
    top: 0;
}

.header .menu-btn:checked~.menu-icon .nav-icon:after {
    transform: rotate(45deg);
    top: 0;
}


/* 48em = 768px @ 16pt font */

@media (min-width: 48em) {
    .header li {
        float: left;
    }
    .header li a {
        padding: 20px 30px;
    }
    .header .menu {
        clear: none;
        float: right;
        max-height: none;
    }
    .header .menu-icon {
        display: none;
    }
}

.texto {
    font-family: Rounded_Elegance;
    font-size: 20px;
    margin-bottom: 5%;
}

.textoBranco {
    color: white;
}

.textoAzulClaro {
    color: #158dcd;
}

.textoVerde {
    color: #a8c83b;
}

.title {
    font-family: SimplyRound;
    font-size: 28px;
    margin-bottom: 5%;
}

* {
    margin: 0;
    padding: 0;
}

#heroSection {
    display: flex;
    position: relative;
    height: 100vh;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    margin-bottom: -35vh;
}

.slide {
    height: 125vh;
    position: absolute;
    opacity: 1;
    z-index: 1;
    object-fit: cover;
}

.nextActive {
    opacity: 1;
    z-index: 2 !important;
}

.active {
    animation-name: zoom;
    animation-duration: 7.1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    z-index: 3!important;
}

@keyframes zoom {
    0% {
        transform: scale(1)
    }
    80% {
        opacity: 1
    }
    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

#divLogoHero {
    display: flex;
    width: 100vw;
    height: 100vh;
    background-color: rgba(34, 105, 236, 0.219);
    z-index: 100;
}

#LogoHero {
    margin: auto;
    width: 75vh;
    height: auto;
    filter: var(--sombra)
}

#LogoWEG {
    height: 15vh;
    width: auto;
    display: flex;
    z-index: 1000;
    background-color: #a8c83b;
}

#divLogoWEG {
    display: block;
    position: absolute;
    bottom: 5%;
    right: 5%;
    background-color: rgb(255, 255, 255);
    padding: 20px;
    border-radius: 30px;
    height: 20vh;
    width: auto;
    filter: var(--sombra);
    z-index: 100;
}

#menuDiv {
    display: flex;
    position: fixed;
    top: 0%;
    justify-content: center;
    width: 100vw;
    height: 10vh;
    z-index: 999;
}

#menuLogoPequeno {
    height: 100%;
    filter: var(--sombra);
}

#menu {
    display: flex;
    background-color: rgba(0, 0, 0, 0.301);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.123);
    transition: all .3s ease-in-out;
}

#menu:hover {
    background-color: var(--lightBlue);
}

.botaoMenu {
    padding-top: 1.5%;
    display: flex;
    font-weight: bold;
    color: aliceblue;
    padding-left: 3vw;
    padding-right: 3vw;
    background-color: rgba(240, 248, 255, 0);
    border: 0px;
    font-size: 36px;
    transition: all .3s ease-in-out;
}

.aBotaoMenu:hover {}

.botaoMenu:hover {
    color: var(--darkBlue);
    font-size: 48px;
}

#sobreNos {
    position: relative;
    height: auto;
    z-index: 100;
}

.colunasSobreNos {
    display: flex;
    flex-direction: column;
}

#ola {
    text-decoration: underline;
    position: absolute;
    font-size: 60px;
    top: 45vh;
    right: 10vw;
    color: #a8c83b;
    text-align: center;
    transform: rotate(45deg);
}

#olaPremium {
    letter-spacing: 2px;
    font-weight: bold;
    color: #04466a;
}

#colunas1Background {
    background-image: url('./img/background1.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.colunas1 {
    display: flex;
    flex-direction: row;
    padding-top: 45vh;
    z-index: 3;
    margin-bottom: -2vh;
}

.colunas1>.esquerda {
    width: 15%;
}

.colunas1>.meio {
    flex-direction: column;
    background-color: var(--darkBlue);
    filter: var(--sombra);
    border-radius: 30px;
    padding: 2%;
    width: 363px;
    height: fit-content;
    margin-right: -3%;
    z-index: 3;
}

.titleColuna1Meio {
    font-size: 28px;
    margin-bottom: 5%;
    color: white;
}

.colunas1>.direita {
    display: flex;
    width: 40%;
}

#produtos1 {
    filter: var(--sombra);
    z-index: 3;
    margin-top: auto;
    align-self: center;
    height: auto;
    width: 100%;
}

.colunas2 {
    height: auto;
    display: flex;
    flex-direction: row;
    z-index: 11;
}

.colunas2>.esquerda {
    width: 520px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.colunas2>.esquerda>.top {
    width: 440px;
    height: 320px;
}

.colunas2>.esquerda>.bot {
    height: fit-content;
    background-color: var(--darkBlue);
    margin-left: 15%;
    padding: 5%;
    width: 380px;
    border-radius: 30px;
    filter: var(--sombra);
    margin-top: 5%;
}

.colunas2>.meio {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.colunas2>.meio>.top {
    height: auto;
    background-color: var(--lightBlue);
    padding: 3%;
    border-radius: 30px;
    filter: var(--sombra);
    border-radius: 30px 0px 0px 30px;
}

.colunas2>.meio>.bot {
    margin-left: 15%;
    margin-top: 5%;
    filter: var(--sombra);
}

.produtos2 {
    height: auto;
    width: auto;
}

.colunas2>.direita {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: spa;
    background-color: var(--darkBlue);
    padding: 2%;
    margin-top: -15vh;
    filter: var(--sombra);
    margin-left: -1vw;
    border-radius: 30px;
    margin-right: 5%;
    margin-bottom: 3%;
}

.wegSobreNos {
    margin: -2vh;
    justify-content: center;
    display: flex;
    filter: var(--sombra);
}

.wegfoot {
    background-color: white;
    padding: 2%;
    border-radius: 30px 0px 0px 30px;
}

.wegside {
    background-color: white;
    padding: 2%;
    border-radius: 0px 30px 30px 0px;
}

.segundaParteSobreNos {
    height: auto;
    display: flex;
    background-image: url('./img/background2.png');
    background-repeat: no-repeat;
    background-size: 65vw;
    background-position: right center;
    margin-top: 5vh;
}

.seloDeQualidadeEsquerda {
    display: flex;
    flex-direction: column;
    height: 75vh;
    width: 33vw;
    justify-content: center;
    align-items: flex-end;
    padding-left: 5%;
    z-index: 3;
}

.seloDeQualidadeIMGDiv {
    display: flex;
    align-items: flex-end;
}

.seloDeQualidadeIMG {
    transform: translateY(35%);
    width: 23vw;
    filter: var(--sombra);
    z-index: 2;
}

.seloDeQualidadeEscrito {
    width: 22vw;
    color: var(--lightBlue);
    filter: drop-shadow(-5px 5px 3px #0000004d);
    background-color: white;
    border-radius: 0px 0px 0px 30px;
    padding: 10%;
    padding-top: 25%;
    text-align: center;
}

.seloDeQualidadeTexto {
    font-weight: bold;
}

.seloDeQualidadeMeio {
    margin-top: 8vh;
    display: flex;
    flex-direction: column;
    width: 30vw;
    background-color: white;
    filter: var(--sombra);
    border-radius: 30px 0px 0px 30px;
    height: 75%;
    z-index: 2;
}

.seloDeQualidadeImgMeio {
    width: 20vw;
}

.seloDeQualidadeMeioDiv {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5%;
    text-align: center;
}

.seloDeQualidadeDireita {
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: #04466a;
    width: 30vw;
    padding: 2%;
    border-radius: 30px;
    margin-right: 10vw;
    align-items: center;
    filter: var(--sombra);
    z-index: 0;
    justify-content: space-around;
}

.seloDeQualidadeImgDireita {
    width: 20vw;
}

.seloDeQualidadeTextoDireita {
    margin-top: 5%;
}

.servicos {
    height: auto;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
}

.backgroundServicos1 {
    display: flex;
    flex-direction: column;
    height: auto;
    background-image: url("./img/background3.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.servicosTitle {
    color: var(--green);
    font-size: 60px;
    text-align: center;
    text-decoration: underline;
}

.servicosTitleSpan {
    color: #04466a;
    text-decoration: underline;
}

.servicosAPremium {
    width: 60%;
    background-color: #04466a;
    padding: 2%;
    text-align: center;
    filter: var(--sombra);
    border-radius: 30px;
    margin: 0%;
}

.servicosAPremiumDiv {
    display: flex;
    justify-content: center;
}

.servicosMontagemDiv {
    display: flex;
    justify-content: center;
}

.servicosMontagemTexto {
    padding: 1.5%;
    filter: var(--sombra);
    color: var(--darkBlue);
    font-weight: bold;
    border-radius: 0px 0px 30px 30px;
    background-color: white;
    width: 20vw;
    z-index: 2;
}

.servicosAQualidadeDiv {
    padding: 1%;
    height: fit-content;
    border-radius: 0pc 30px 30px 0px;
    background-color: var(--lightBlue);
    margin-top: 10vh;
    width: 33vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    filter: var(--sombra);
    padding-bottom: 15px;
}

.servicosAQualidadeImg {
    justify-items: end;
    width: 25vw;
}

.supervisao {
    display: flex;
}

.supervisaoEsquerdaDiv {
    display: flex;
}

.supervisaoEsquerda {
    display: flex;
    height: auto;
    align-items: flex-end;
}

.supervisaoEsquerdaImg {
    height: 40vh;
    margin-left: 8vw;
    width: 28vw;
    background-color: white;
    filter: var(--sombra);
    padding: 2%;
    border-radius: 30px;
}

.supervisaoTexto {
    z-index: 2;
    filter: var(--sombra);
    display: flex;
    flex-direction: column;
    width: 22vw;
    background-color: #04466a;
    padding: 1%;
    border-radius: 30px;
    text-align: center;
    margin-right: -2vw;
}

.supervisaoTitle {
    color: var(--green);
}

.supervisaoDireita {
    margin-top: 2vh;
    margin-right: 15%;
    width: 15vw;
    margin-left: 0px;
}

.supervisaoDireitaImg {
    height: 50vh;
    filter: var(--sombra);
}

.servicosBackground2 {
    display: flex;
    flex-direction: column;
    height: auto;
    background-image: url("./img/background4.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.servicos2 {
    margin-top: 5vh;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.servicosFabricanteDiv {
    display: flex;
    width: 33vw;
    align-content: center;
    align-items: center;
}

.servicosFabricante {
    display: flex;
    flex-direction: column;
    background-color: var(--darkBlue);
    margin-left: 5vw;
    padding: 5%;
    border-radius: 30px 0px 0px 30px;
    height: fit-content;
    z-index: 3;
}

.servicosFabricanteTitle {
    color: var(--green);
}

.servicosFabricanteImgDiv {
    display: flex;
    flex-direction: column;
    width: 28%;
}

.servicosFabricanteImg {
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 30px 0px 0px 30px;
    filter: var(--sombra);
    justify-content: space-around;
    z-index: 2;
}

.servicosFabricanteImgs {
    align-self: center;
}

.servicosFabricanteDireitaDiv {
    background-color: var(--darkBlue);
    margin-right: 5vw;
    padding: 5%;
    border-radius: 30px;
    filter: var(--sombra);
}

.servicosFabricanteDireita {
    width: 33vw;
}

.servicosPaineis {
    margin-top: 5vh;
    width: 100vw;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.servicosPaineisTop {
    width: 75vw;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    filter: var(--sombra);
    border-radius: 30px;
    height: auto;
}

.servicosPaineisTitle {
    margin-top: 2%;
}

.servicosPaineisText {
    display: flex;
    flex-direction: row;
}

.servicosPaineisTextInner {
    margin-top: 1%;
    margin-left: 5%;
    margin-right: 2%;
}

.servicosPaineisBot {
    display: flex;
    flex-direction: row;
    width: 75vw;
    justify-content: center;
}

.servicosPaineisImgEsquerda {
    background-color: #158dcd;
    padding: 2%;
    filter: var(--sombra);
    border-radius: 0px 0px 30px 30px;
}

.servicosPaineisImgMeio {
    background-color: white;
    padding: 2%;
    display: flex;
    align-items: center;
    z-index: 2;
    filter: drop-shadow(-5px 5px 2px #0000005d);
    border-radius: 0px 0px 30px 30px;
}

.servicosPaineisImgDireita {
    background-color: #158dcd;
    padding: 2%;
    border-radius: 0px 0px 30px 30px;
    filter: var(--sombra);
}

.servicosNR10 {
    margin-top: 5vh;
    display: flex;
    flex-direction: row;
}

.servicosNR10Esquerda {
    display: flex;
    flex-direction: column;
    width: 40vw;
    padding-left: 15%;
}

.servicosNR10Title {
    display: flex;
    background-color: white;
    padding-top: 1%;
    width: fit-content;
    padding-left: 3%;
    padding-right: 3%;
    border-radius: 30px 30px 0px 30px;
    filter: var(--sombra);
    transform: translateX(-2vw);
}

.servicosNR10TopEsquerda {
    margin: 0%;
    display: flex;
    align-content: flex-end;
}

.servicosNR10Texto {
    display: flex;
    height: fit-content;
    background-color: var(--lightBlue);
    padding: 2%;
    padding-bottom: 0%;
    border-radius: 0px 30px 30px 30px;
    filter: var(--sombra);
}

.servicosNR10EsquerdaImg {
    background-color: white;
    filter: var(--sombra);
    padding: 1%;
    border-radius: 0px 0px 30px 30px;
    width: fit-content;
    transform: translateX(2vw);
}

.servicosNR10TopDireita {
    height: 35%;
}

.servicosNR10BotDireita {
    transform: translate(-2vw);
    filter: var(--sombra);
}

.servicosNR12 {
    margin-top: 5vh;
    display: flex;
    flex-direction: row;
}

.servicosNR12Esquerda {
    width: 60%;
    padding-left: 5%;
    display: flex;
    flex-direction: column;
    margin-right: 0%;
    justify-content: center;
}

.servicosNR12EsquerdaTexto {
    display: flex;
    background-color: #04466a;
    text-align: center;
    border-radius: 30px 30px 0px 30px;
    filter: var(--sombra);
    z-index: 0;
    padding: 1%;
    margin: 0%;
}

.servicosNR12EsquerdaImg {
    background-color: white;
    padding: 2%;
    border-radius: 30px;
    filter: var(--sombra);
    border-radius: 30px;
    width: 30vw;
}

.servicosNR12EsquerdaImgDiv {
    display: flex;
    background-color: white;
}

.servicosNR12EsquerdaImg {
    width: auto;
}

.servicosNR12Direita {
    display: flex;
    z-index: 2;
    flex-direction: column;
}

.servicosNR12DireitaTitle {
    background-color: #04466a;
    width: fit-content;
    padding: 2%;
    border-radius: 30px 30px 0px 30px;
    filter: var(--sombra);
    margin: 0%;
    transform: translateX(-5vw);
}

.servicosNR12DireitaTexto1 {
    background-color: white;
    filter: var(--sombra);
    width: fit-content;
    padding: 2%;
    border-radius: 30px;
}

.servicosNR12DireitaEspacador {
    height: 9vh;
}

.servicosNR12DireitaTexto2 {
    background-color: #04466a;
    width: 75%;
    padding: 2%;
    border-radius: 30px;
    filter: var(--sombra);
    margin: 0%;
}

.cases {
    margin-top: 5vh;
}

.background4 {
    display: flex;
    flex-direction: column;
    height: auto;
    background-image: url("./img/background1.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.casesTitle {
    color: var(--green);
    font-size: 60px;
    text-align: center;
    text-decoration: underline;
}

.casesTitleSpan {
    color: #04466a;
    text-decoration: underline;
}

.casesSistemaDiv {
    display: flex;
    flex-direction: row;
}

.casesSistemaEsquerdaDiv {
    display: flex;
    width: 50%;
    justify-content: end;
    align-items: center;
}

.casesSistemaEsquerda {
    padding: 3%;
    border-radius: 30px 0px 0px 30px;
    filter: var(--sombra);
    display: flex;
    flex-direction: column;
    background-color: white;
    width: fit-content;
    z-index: 2;
}

.casesSistemaDireitaDiv {
    display: flex;
}

.casesSistemaDireita {
    background-color: #04466a;
    padding: 3%;
    border-radius: 30px;
    filter: var(--sombra);
}

.casesCaminhao {
    display: flex;
}

.casesCaminhaoEsquerdaDiv {
    width: 50%;
    display: flex;
    justify-content: end;
}

.casesCaminhaoEsquerda {
    background-color: var(--lightBlue);
    border-radius: 30px;
    filter: var(--sombra);
    z-index: 2;
    padding: 3%;
}

.casesCaminhaoDireitaDiv {
    padding-top: 10vh;
}

.casesCaminhaoDireita {
    background-color: white;
    filter: var(--sombra);
    border-radius: 0px 30px 30px 0px;
    padding: 3%;
}

.casesPlanta {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.casesPlantaTitle {
    width: 50%;
    display: flex;
    justify-content: end;
}

.casesPlantaTitleText {
    filter: drop-shadow(-5px -5px 2px #0000001a);
    text-align: center;
    display: flex;
    background-color: white;
    padding: 1%;
    border-radius: 30px 30px 0px 30px;
    z-index: 3;
    padding-left: 2%;
    padding-right: 2%;
    width: fit-content;
    margin: 0%;
}

.casesPlantaConteudo {
    display: flex;
}

.casesPlantaEsquerda {
    z-index: 3;
    background-color: var(--darkBlue);
    padding: 3%;
    padding-bottom: 1%;
    border-radius: 30px 0px 30px 30px;
    filter: var(--sombra);
}

.casesPlantaDireita {
    display: flex;
}

.casesPlantaDireitaTexto {
    height: fit-content;
    padding: 3%;
    border-radius: 0px 30px 30px 0px;
    filter: var(--sombra);
    display: flex;
    background-color: white;
}

.casesRacoes {
    display: flex;
    transform: translateY(-30px);
}

.casesRacoesEsquerdaDiv {
    display: flex;
    align-items: center;
}

.casesRacoesEsquerda {
    padding: 5%;
    border-radius: 30px 0px 0px 30px;
    filter: var(--sombra);
    display: flex;
    background-color: #158dcd;
    height: fit-content;
    flex-direction: column;
    z-index: 2;
    transform: translateX(2px);
    text-align: center;
}

.casesRacoesDireita {
    filter: var(--sombra);
}

.casesRacoesEsquerdaTexto {
    text-align: left;
}

.parceiros {
    display: flex;
    flex-direction: column;
}

.parceirosTitleDiv {
    margin-top: 5vh;
    display: flex;
    margin-bottom: 2%;
    color: var(--green);
    font-size: 60px;
    text-align: center;
    text-decoration: underline;
    justify-content: center;
}

.parceirosTexotDiv {
    display: flex;
    margin-top: 0%;
    justify-content: center;
}

.parceirosTexto {
    display: flex;
    width: 75%;
    padding: 2%;
    border-radius: 30px;
    filter: var(--sombra);
    margin: 0%;
    height: fit-content;
    background-color: #04466a;
    text-align: center;
    margin-bottom: 3vh;
}

.parceirosP {
    margin-bottom: 0%;
}

.logoCarrousel {
    margin: auto;
    overflow: hidden;
    position: relative;
    position: relative;
    height: 150px;
    width: 75%;
    background-color: white;
    border-radius: 30px;
    filter: var(--sombra);
}

.logoCarrousel::before {
    content: '';
    position: absolute;
    background: linear-gradient(0.25turn, #f2f2f2, #ebf8e100);
    top: 0%;
    z-index: 2;
    width: 150px;
    height: 100%;
}

.logoCarrousel::after {
    content: '';
    position: absolute;
    background: linear-gradient(0.75turn, #f2f2f2, #ebf8e100);
    top: 0%;
    right: 0%;
    z-index: 2;
    width: 150px;
    height: 100%;
}

.carrouselTrack {
    display: flex;
    margin: auto;
    position: absolute;
    animation: scroll 40s linear infinite;
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-150px * 12));
        transform: translateX(calc(-150px * 12));
    }
}

.parceirosWEG {
    display: flex;
    justify-content: center;
    margin-top: 2%;
}

.parceirosWEGImg {
    background-color: white;
    filter: var(--sombra);
    border-radius: 30px;
}

.contatosDiv {
    display: flex;
}

.contatosContatosdiv {
    display: flex;
    flex-direction: column;
}

.contatosContatosInnerDiv {
    display: flex;
    flex-direction: column;
}

.contatos {
    display: flex;
    margin-bottom: 10%;
    font-size: 24px;
}

.contatosLogo {
    width: 35vw;
    align-self: center;
}

#contatosTitleText {
    font-size: 60px;
    font-weight: bold;
}

.contatosEspaco {
    display: flex;
    padding-top: 35%;
    flex-direction: column;
}

.contatosLogoDiv {
    display: flex;
    filter: var(--sombra);
    width: 50vw;
    margin-right: 5%;
    align-content: center;
    justify-content: end;
    height: 75vh;
}

.background5 {
    height: auto;
    background-image: url("./img/background4.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.aBotaoMenu {
    text-decoration: none;
    margin-top: 10px;
}

@media only screen and (max-width: 768px) {
    #ola {
        position: static;
        transform: rotate(0deg);
    }
    .header {
        display: inline;
    }
    .colunas1 {
        flex-direction: column;
    }
    .colunas1>.meio {
        margin: auto;
        padding: 5%;
        width: 85vw;
    }
    .colunas1>.direita {
        width: 90%;
        margin-top: 5%;
    }
    .colunas2 {
        flex-direction: column;
        width: 100vw;
    }
    .logoCarrousel {
        width: 100vw;
    }
    .casesSistemaDiv {
        flex-direction: column;
    }
    .colunas2>.esquerda>.top {
        height: 0%;
        width: 0%;
    }
    .colunas2>.esquerda {
        width: 100vw;
        margin: 0%;
    }
    .colunas2>.esquerda>.bot {
        margin: auto;
        margin-top: 5%;
        width: 85vw;
        height: fit-content;
    }
    .colunas2>.meio>.top {
        margin-top: 5%;
        padding: 5%;
        border-radius: 30px;
        width: 85vw;
    }
    .colunas2>.meio>.bot {
        margin: 0%;
        height: fit-content;
        margin-top: 5%;
    }
    .colunas2>.direita {
        margin-top: 5%;
        width: 85vw;
        padding: 5%;
        margin: auto;
    }
    .wegSobreNos {
        margin: auto;
        flex-direction: column;
    }
    .wegfoot {
        margin: auto;
        margin-top: 5%;
        width: 85vw;
        border-radius: 30px 30px 0px 0px;
    }
    .wegside {
        width: 85vw;
        border-radius: 0px 0px 30px 30px;
    }
    .segundaParteSobreNos {
        flex-direction: column;
        margin-top: 5%;
    }
    .seloDeQualidadeEsquerda {
        width: 85vw;
        margin: 0%;
    }
    .seloDeQualidadeIMGDiv {
        width: 85vw;
        margin: auto;
        margin-top: 20%;
    }
    .seloDeQualidadeIMG {
        margin: auto;
        width: 100%;
        transform: translate(0%);
    }
    .seloDeQualidadeEscrito {
        width: 100%;
        filter: var(--sombra);
        border-radius: 30px;
        padding: 5%;
        margin: auto;
    }
    .seloDeQualidadeMeio {
        width: 85vw;
        margin: auto;
        margin-top: 20%;
        border-radius: 30px;
    }
    .seloDeQualidadeImgMeio {
        width: 75%;
        margin-bottom: 5%;
    }
    .seloDeQualidadeDireita {
        width: 85vw;
        margin: auto;
        margin-top: 5%;
    }
    .servicosAPremium {
        padding: 5%;
    }
    .servicosMontagemDiv {
        flex-direction: column;
        max-width: 95vw;
    }
    .servicosMontagemTexto {
        width: 85vw;
        margin: auto;
        margin-top: 5%;
        border-radius: 30px;
        padding: 5%;
    }
    .servicosAQualidadeDiv {
        width: 85vw;
        margin: auto;
        padding: 5%;
        height: auto;
        border-radius: 30px;
    }
    .servicosAQualidadeImg {
        width: 75%;
    }
    .supervisao {
        flex-direction: column;
        width: 100vw;
    }
    .supervisaoEsquerdaDiv {
        width: 100vw;
        margin-top: 5%;
    }
    .supervisaoEsquerda {
        width: 90%;
        margin: auto;
    }
    .supervisaoEsquerdaImg {
        width: 100%;
        height: auto;
        padding: 0%;
        margin: 0%;
    }
    .supervisaoTexto {
        width: 85vw;
        padding: 5%;
        margin: auto;
        margin-top: 5%;
    }
    .supervisaoDireita {
        margin-top: 5%;
        width: 85vw;
        margin: auto;
    }
    .servicos2 {
        flex-direction: column;
        width: 100vw;
        margin: 0%;
        margin-top: 5%;
        padding: 0%;
    }
    .servicosFabricanteDiv {
        width: 95vw;
        margin-bottom: 0vh;
    }
    .servicosFabricante {
        border-radius: 30px;
    }
    .servicosFabricanteImgDiv {
        width: 100vw;
    }
    .servicosFabricanteImg {
        border-radius: 30px;
        height: auto;
    }
    .servicosFabricanteDireita {
        width: 85vw;
    }
    .servicosFabricanteDireitaDiv {
        margin: auto;
    }
    .servicos3 {
        flex-direction: column;
    }
    .servicosPaineisText {
        flex-direction: column;
    }
    .servicosPaineisBot {
        flex-direction: column;
        width: 85vw;
    }
    .servicosPaineisTop {
        border-radius: 30px 30px 0px 0px;
        width: 85vw;
    }
    .servicosPaineisImgEsquerda {
        display: flex;
        border-radius: 0px;
        width: 82vw;
        justify-content: center;
        align-content: center;
        margin: auto;
    }
    .servicosPaineisImgMeio {
        border-radius: 0px;
    }
    .servicosPaineisImgMeio {
        filter: var(--sombra);
        display: flex;
        align-content: center;
        justify-content: center;
    }
    .servicosPaineisImgDireita {
        display: flex;
        justify-content: center;
    }
    .servicosNR10 {
        flex-direction: column;
    }
    .servicosNR10Esquerda {
        padding: 0%;
        width: 85vw;
        margin: auto;
    }
    .servicosNR10EsquerdaImg {
        width: 85vw;
        transform: translateX(0px);
    }
    .servicosNR10EsquerdaImg>img {
        width: 85vw;
    }
    .servicosNR10BotDireita {
        width: 85vw;
        margin: auto;
    }
    .servicosNR12 {
        flex-direction: column;
        width: 100vw;
    }
    .servicosNR12Esquerda {
        width: 98;
        padding: 0%;
    }
    .servicosNR12EsquerdaImg {
        width: 85vw;
        margin: auto;
    }
    .servicosNR12Direita {
        width: 95vw;
    }
    .servicosNR12DireitaTitle {
        transform: translateX(0px);
    }
    .servicosNR12DireitaTexto1 {
        margin: auto;
    }
    .servicosNR12DireitaTexto2 {
        margin: auto;
        padding: 5%;
    }
    .casesSistemaEsquerdaDiv {
        width: 85vw;
        margin: auto;
    }
    .casesSistemaEsquerda {
        border-radius: 30px;
    }
    .casesSistemaDireita {
        margin: auto;
    }
    .casesSistemaDireita>img {
        width: 85vw;
    }
    .casesCaminhao {
        flex-direction: column;
        margin: auto;
        margin-top: 5vw;
    }
    .casesCaminhaoEsquerdaDiv {
        width: 85vw;
        margin: auto;
        justify-content: center;
    }
    .casesCaminhaoEsquerda {
        margin: auto;
    }
    .casesCaminhaoEsquerda>img {
        width: 85vw;
    }
    .casesCaminhaoDireita {
        border-radius: 30px;
        width: 95vw;
    }
    .casesCaminhaoDireitaDiv {
        padding-top: 0;
        z-index: 2;
    }
    .casesPlanta {
        margin-top: 5vh;
    }
    .casesPlantaConteudo {
        flex-direction: column;
    }
    .casesPlantaEsquerda {
        padding: 2%;
        width: 85vw;
        border-radius: 30px 30px 30px 0px;
    }
    .casesPlantaEsquerda>img {
        width: 85vw;
    }
    .casesPlantaDireitaTexto {
        border-radius: 0px 0px 30px 30px;
    }
    .casesRacoes {
        margin-top: 5vh;
        flex-direction: column;
        transform: translateX(0px);
        width: 100vw;
    }
    .casesRacoesEsquerda {
        transform: translateX(0px);
        border-radius: 30px 30px 0px 30px;
    }
    .casesRacoesEsquerdaDiv {
        width: 100vw;
    }
    .casesRacoesDireita>img {
        width: 85vw;
    }
    .contatosDiv {
        flex-direction: column;
    }
    .contatosLogoDiv {
        width: 100vw;
        margin: 0%;
        padding: 0%;
        display: flex;
        align-content: center;
        justify-content: center;
    }
    .contatosLogo {
        width: 75vw;
    }
    .contatosContatosdiv {
        padding: 0%;
        margin: 0%;
    }
    .contatosEspaco {
        padding-top: 0;
    }
    .contatosContatosInnerDiv>div {
        font-size: 16px;
    }
    #divLogoHero>img {
        width: 75vw;
    }
    #heroSection {
        background-position: center;
    }
    .logoParceirosSec {
        width: 95vw;
    }
    .logoParceiro {
        width: 150px;
    }
    .logoCarrousel {
        width: 300px;
    }
    #menuDiv {
        display: none;
    }
}