/* Adicionando a fonte personalizada */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

@font-face {
    font-family: 'CustomFont';
    src: url('/mnt/data/sider_font/font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'CustomFont', sans-serif;
}

/* Classes de utilidade do Bootstrap */
.img-fluid {
    max-width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

@media (min-width: 576px) {
    .col-sm {
        flex: 1;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .col-md {
        flex: 1;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex: 1;
        max-width: 33.33%;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        flex: 1;
        max-width: 25%;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Oswald", sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #201f1f;

}

.hidden {
    opacity: 0;
    filter: blur(5px);
    transition: filter 0.4s, transform 1s;
    transform: translateX(-100%);
}

.show {
    opacity: 1;
    filter: blur(0px);
    transition: filter 0.4s, transform 1s;
    transform: translateX(0);
}


.menuBox {
    display: none;

    @media(max-width: 1250px) {
        display: block;
        position: absolute;
        left: 10px;
        top: 10px;

    }
}

.menu {
    animation: incolherMenu 0.2s forwards;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: auto;
    z-index: 9999;

}

@keyframes incolherMenu {

    from {
        display: block;
        width: 50%;
    }

    to {
        display: none;
        width: 0%;

    }


}

.activeMenu {
    min-width: 40%;
    height: auto;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;

}

#IconClose {
    position: absolute;
    left: 30px;

}

#menuActiveBox {
    background-color: white !important;
    display: flex;
    height: 900px;
    flex-direction: column;
    align-items: center;
    animation: ExpandMenu 0.5s forwards;
    position: relative;

}

@keyframes ExpandMenu {

    from {
        width: 0;
    }

    to {
        width: 100%;

    }


}


.hiddenTamanho {
    transform: scale(0);
    /* Escala inicial */
    transition: transform 1s;
}

.showTamanho {
    transform: scale(100%);
    /* Escala final */
    transition: transform 0.7s;
}

#textoMBC {
    scroll-margin-top: 350px;
    /* Ajuste esse valor conforme necessário */
}

#serviçosLink {
    scroll-margin-top: 100px;
    /* Ajuste esse valor conforme necessário */
}

#motivoEscolha {
    scroll-margin-top: 10px;
    /* Ajuste esse valor conforme necessário */
    font-size: 220%;
}

#endereçoLink {
    scroll-margin-top: 50px;
    /* Ajuste esse valor conforme necessário */
}

#fundoBotao {
    display: flex;
    justify-content: center;
    /* Centraliza horizontalmente */
    align-items: center;
    /* Centraliza verticalmente */
    gap: 0.5rem;
    /* Espaço entre os elementos */
    width: 101%;
    padding-top: 3%;

    @media(max-width:976px) {
        gap: 2rem;


    }

    @media(max-width:488px) {
        display: none;

    }
}

a {
    color: white;
}

.centralizar {
    border-radius: 100%;
    padding: 10px;
    margin: 5px;
    text-align: center;
    white-space: nowrap;
    /* Impede que o texto quebre em várias linhas */
}

.seta {
    align-items: bottom;
    /* Alinha verticalmente o conteúdo na parte inferior */
    height: 80px;
    /* Altura da div */
    transform: scaleX(-1);
}

.setaSombra {
    box-shadow: 0px 5px 0px #705c25;
    border-radius: 10%;
}

a {
    color: white;
}

#titulo1 {
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Centraliza verticalmente */
    border: 1px solid #FDBB00;
    border-radius: 5%;
    background-color: #FDBB00;
    padding: 10px;
    width: 12%;
    height: 10%;
    /* Ajusta a largura automaticamente ao conteúdo */
    box-shadow: 5px 5px #867306;
    font-size: 90%;


    @media(max-width:976px) {
        width: 20%;


    }
}

#titulo2 {
    color: grey;
    opacity: 0.6;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Centraliza verticalmente */
    border: 1px solid #FDBB00;
    border-radius: 5%;
    background-color: #FDBB00;
    padding: 10px;
    width: 15%;
    height: 10%;
    /* Ajusta a largura automaticamente ao conteúdo */
    box-shadow: 5px 5px #867306;
    font-size: 90%;

    @media(max-width:976px) {
        width: 30%;

    }
}

#textoServiço {
    text-align: justify;
    margin: 120px;
    font-family: "Oswald", sans-serif;
    font-size: 26px;
    line-height: 1.3;
    padding-left: 2%;

    @media(max-width:976px) {
        padding-left: -10%;
        margin: 0px;
        width: 100%;
        font-size: 20px;

    }
}

.text-servicos {
    display: none;

    @media(max-width:488px) {
        display: block;


    }
}


.imagensServiçosLado {
    display: flex;
    margin: auto;
    padding: 1%;
    padding-bottom: 2%;

    @media(max-width:488px) {
        display: none;


    }

}

.container {
    width: 100%;
    padding-right: auto;
    margin: auto;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    display: flex;
    margin-top: -20px;
    font-family: "Oswald", sans-serif;
    justify-content: center;
}

header {
    background: #181717;
    color: #000000;
    min-height: 60px;
    border-bottom: hsl(41, 60%, 46%) 7px solid;
    padding-top: 1%;
    height: auto;
}

header .MBClogo {
    display: inline-block;
    vertical-align: middle;
    color: #fdd835;
    /* Cor do texto da logo (ajuste conforme necessário) */
    font-size: 40px;
    /* Tamanho da fonte da logo */
    font-weight: bold;
    /* Peso da fonte (opcional) */
}


.a {
    color: white;
}

header a {
    display: table;
    justify-content: center;
    color: #e7e0e0;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 20px;
    margin: 50px;
    margin-top: 40px;
    /* Espaçamento entre os itens do menu */
    text-align: center;
}

.sombraLetraHeader {
    width: 80%;
}


header ul {
    list-style-type: none;
    margin-top: 1%;
    padding-right: 131px;
    position: center;
    display: flex;

    @media(max-width:976px) {
        flex-direction: column;


    }
}

header ul li {
    display: inline;
    margin-right: -10px;
    /* Espaçamento entre os itens do menu */
    padding-top: 50px;
    /* Espaçamento entre os itens do menu */

    @media(max-width:976px) {
        padding-top: 0;


    }
}


header ul li a {
    text-decoration: none;
    color: #fffcef;
    /* Cor dos links (ajuste conforme necessário) */
    transition: color 0.1s ease-in-out;
    /* Efeito de transição suave */

}

header ul li a:hover,
header ul li a:focus {
    color: #e7e24b;
    /* Cor de destaque (ajuste conforme necessário) */
    cursor: pointer;
}

header ul {
    padding: 1;
    list-style: none;
    display: flex;
    justify-content: center;
}

header li {
    display: inline;
    padding: 0 30px 0 10px;
    display: flex;
    justify-content: center;

    @media(max-width:976px) {
        padding: 0;


    }
}

#MBClogo {
    max-width: 200px;
    max-height: 200px;
    color: white;
    margin-right: -3%;


    @media(max-width:976px) {
        margin-left: 25%;


    }
}

#branding {

    height: 180px;
    /* Ajuste a altura conforme necessário */
    padding: 20px 0;
    /* Ajuste o padding conforme necessário */
    background-color: #33333300;
    /* Ajuste a cor de fundo conforme necessário */
    color: #fff;
    /* Ajuste a cor do texto conforme necessário */
}

header #branding {
    display: flex;
    align-items: center;
}

header #branding img {
    margin-right: 20px;
}

header nav {
    display: flex;
    justify-content: center;
    gap: 25px;

}

nav .servicos,
nav .contatos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

}

.texto-manutenção {
    background-color: #181717;
    color: white;
    padding: 7px;
    border-radius: 5px;
    position: absolute;
    top: 65%;
    /* Ajuste este valor conforme necessário */
    left: 80%;
    /* Ajuste este valor conforme necessário */
    font-size: 1.2rem;
    font-family: "Oswald", sans-serif;
    box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
    font-size: 200%;
    text-align: center;
    opacity: 0;
}

.texto-orçamento {
    opacity: 0;
    background-color: #181717;
    color: white;
    padding: 15px;
    border-radius: 5px;
    position: absolute;
    top: 65%;
    /* Ajuste este valor conforme necessário */
    left: 60%;
    /* Ajuste este valor conforme necessário */
    font-size: 1.2rem;
    font-family: "Oswald", sans-serif;
    box-shadow: 2px 2px rgba(0, 0, 0, 0.1);
    font-size: 150%;
}

#textBox1,
#textBox2,
#textBox3 {
    background-color: white;
    border: 2px solid black;
    padding: 10px;
    height: 10px;
    top: 10%;
    display: flex;
    align-items: center;
    /* Centraliza o texto verticalmente */
}

.quatroPilares {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    /* Espaço entre os cards */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: calc(33.33% - 60px);
    /* Ajuste a largura para que os cards se encaixem no contêiner */
    background-color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    /* Centraliza o conteúdo verticalmente */
    justify-content: center;
    /* Centraliza o conteúdo horizontalmente */
    text-align: center;
    height: 80%;
    width: 90%;
    margin-left: 5%;

    @media(max-width:1172px) {
        display: flex;
        flex-direction: column;
        width: 80%;

    }

}

.serviçosGeral {
    border: 1px solid #f5e0e0;
    border-radius: 10px;
    padding: 5px;
    margin: 10px;
    /* Espaço entre os cards */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: calc(33.33% - 60px);
    /* Ajuste a largura para que os cards se encaixem no contêiner */
    background-image: url('imagens/fundo.png');
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centraliza o conteúdo verticalmente */
    justify-content: center;
    /* Centraliza o conteúdo horizontalmente */
    text-align: center;
    height: calc(100% - 200px);
    margin-left: 5%;

}

.showcase {
    background: #555151;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: right;
    background-image: url('imagens/fundo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    @media(max-width:600px) {
        height: calc(100% - 40px);
    }
}

.showcaseInvisivel {
    background: #555151;
    color: #fff;
    display: none;
    align-items: normal;
    justify-content: center;
    background-image: url('imagens/fundo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.btn-back-to-top {
    color: #FFD000;
    /* Mantenha a cor do texto que você deseja */
    border: none;
    padding: 10px 20px;
    bottom: 20px;
    right: 20px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
}

.showcase-image {
    flex: 1;
    padding: 5%;
    width: 10%;
    height: 10%;
}


.showcase-imageMaps {
    left: -100px;
    flex: 1;
    margin-right: -5%;
    width: 100%;
    height: 100%;
}

.showcaseMaps {
    width: 1500px;
    height: 700px;
}


.showcase-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px;
}

.showcase-text {
    flex: 1;
    padding-right: 25px;
    color: #000000;
    justify-content: left;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: calc(1em + 1vw);
    font-family: "Oswald", sans-serif;

    @media(max-width: 600px) {
        display: none;
    }
}

.showcase-textServiços {
    flex: 1;
    padding-right: 25px;
    color: #000000;
    justify-content: left;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: calc(1em + 1vw);
    font-family: "Oswald", sans-serif;
}

#textoManuInv {
    display: none;
    color: #000000;

    @media(max-width: 600px) {
        display: flex;
    }
}

#textoMBCInv {
    display: none;
    color: #000000;

    @media(max-width: 600px) {
        display: flex;
    }
}

.showcase-text ul {
    list-style-type: none;
    padding: 0;
}

.showcase-text li {
    display: inline;
    margin: 0 10px;
    cursor: pointer;
    text-decoration: underline;
    color: rgb(0, 0, 0);
}

.tamanhoImagem {
    height: 100%;
    width: 100%;
    opacity: 1;
}

.tamanhoImagemInv {
    display: none;
}

.showcase-textServiçosComeço {
    flex: 1;
    padding-right: 20px;
    color: #000000;
    justify-content: left;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 165%;
    font-family: "Oswald", sans-serif;
    color: black;


}

.showcase-textServiços {
    flex: 1;
    padding-right: 20px;
    color: #000000;
    justify-content: left;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 100%;
    font-family: "Oswald", sans-serif;
    color: black;
}

.imagemReduzida {
    width: 20%;
    /* Ajuste o valor conforme necessário */
    height: 100%;
    display: block;
    margin: 0 auto;
    border-radius: 5%;
}

.imagemReduzidaEspecial {
    width: 15%;
    /* Ajuste o valor conforme necessário */
    height: 100%;
    display: block;
    margin: 0 auto;
    border-radius: 5%;
}

#imagemServiço {
    width: 10%;
    /* Ajuste o valor conforme necessário */
    height: 10%;
    display: block;
    margin: 0 auto;
    border-radius: 5%;
}

.showcase-textMaps {
    flex: 1;
    padding-right: 20px;
    color: #000000;
    justify-content: center;
    text-align: center;
    align-items: center;
    justify-content: bottom;
    font-size: 200%;
    font-family: "Oswald", sans-serif;
}

.showcase-image {
    flex: 1;
    padding: 5%;
}

.sombraImagem {
    box-shadow: 7px 7px 10px #161616a9;
}

.overlay-nome {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay-nome.show {
    opacity: 1;
}

.showcase-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.showcase-image-escavadeira {
    width: 80%;
    border-radius: 10px;
}

.showcase-image-umasfotos {
    width: 10%;
}

section {
    padding: 20px;
    margin-bottom: 20px;
}

.card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.botaoReformaRecuperação {
    border: #000000;
}

.cardQuatroPilares {
    background: #ffd000;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: black;
    font-size: 20px;
}

.cardTriplocontent {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    /* Espaço entre os cards */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: calc(33.33% - 60px);
    /* Ajuste a largura para que os cards se encaixem no contêiner */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centraliza o conteúdo verticalmente */
    justify-content: center;
    /* Centraliza o conteúdo horizontalmente */
    text-align: center;
    transition-delay: 400ms;

    @media(max-width:1110px) {
        display: flex;
        flex-direction: column-reverse;

    }
}

.cardTriplocontent img {
    width: 300px;
    /* Defina um tamanho adequado para a imagem */
    height: auto;
    margin-top: 10px;
    place-items: center;
}

.h3 {
    margin-top: 0;
    color: #333;
}

#contato .container {
    display: flex;
    justify-content: space-between;
    height: 200px;
}

.contatos {

    @media(max-width: 1250px) {
        display: none;

    }
}

#contato .endereco,
#contato .contatos,
#contato .logo {
    flex: 1;
}

#contato .endereco {
    margin-right: 20px;
    /* Espaço entre os elementos */
}

#contato h1 {
    margin-bottom: 10px;
}

#contato p {
    margin: 0;
    height: 50%;
}

#contato a {
    color: white;
}

.containerMaps {
    display: grid;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
    padding: 5%;
    background-image: url('imagens/fundo.png');


}

.containerApresentaçao {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1;
    padding: 5%;
    background-color: white;
    height: 50%;
    width: 70%;
    margin-left: 5%;
    border-radius: 2%;
    margin-left: 11%;

    @media(max-width:1523px) {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;


    }
}

.cardsTriplos {
    width: auto;
    height: auto;
    display: center;
    justify-content: space-between;
    background-color: white;
    flex-direction: column;
    border-radius: 20px;
}



.serviçoTriplo {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex: 1;
    width: 80%;
    margin-left: 5%;
    font-family: "Oswald", sans-serif;
    font-size: 23px;
    transition-delay: 100ms;
    border-width: 10px;

    @media(max-width:1110px) {
        display: flex;
        flex-direction: column;


    }
}

.card p {
    color: #666;
}

.bottomWrapper-HSc1RA {
    box-shadow: 0px -1px 0px rgba(238, 229, 229, 0.26);
    width: 100%;
}

.bottomWrapper-HeaderHeader {
    box-shadow: 0px -1px 0px rgba(238, 229, 229, 0.26);
    width: 97%;
    margin-left: 1%;
    margin-top: -4.5%;
}

.bottomWrapper-Header {
    box-shadow: 0px -1px 0px rgba(238, 229, 229, 0.26);
    width: 97%;
    margin-left: 1%;
    margin-top: -7%;
}


a {
    text-decoration: none;
}

#testimonials {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 94%;
    color: white;
    padding-bottom: 5%;
}

.testimonial-heading {
    letter-spacing: 1px;
    margin: 30px 0px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonial-heading h1 {
    font-size: 2.2rem;
    font-weight: 500;
    background-color: #202020;
    color: #ffffff;
    padding: 10px 20px;
}

.testimonial-heading span {
    font-size: 1.3rem;
    color: #fcefef;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.testimonial-box-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 90%;
}

.testimonial-box {
    width: 500px;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    padding: 30px;
    margin: 15px;
    cursor: pointer;
    border-radius: 4%;
}

.profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.profile {
    display: flex;
    align-items: center;
}

.name-user {
    display: flex;
    flex-direction: column;
}

.name-user strong {
    color: #3d3d3d;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.name-user span {
    color: #979797;
    font-size: 0.8rem;
}

.reviews {
    color: #f9d71c;
}

.box-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.client-comment p {
    font-size: 0.9rem;
    color: #4b4b4b;
}

.testimonial-box:hover {
    transform: translateY(-10px);
    transition: all ease 0.3s;
}

.sombraLetraHeader:hover {
    transform: translateY(-7px);
    transition: all ease 0.5s;
    transform: scale(105%);
}

.containerApresentaçao:hover {
    transform: translateY(-7px);
    transition: all ease 0.5s;
    transform: scale(105%);
}

.cardTriplocontent:hover {
    transform: translateY(-7px);
    transition: all ease 0.3s;
    transform: scale(103%);
}

.cardQuatroPilares:hover {
    transform: translateY(-7px);
    transition: all ease 0.3s;
    transform: scale(103%);
}

.ender:hover {
    transform: translateY(-7px);
    transition: all ease 0.3s;
    transform: scale(103%);
}

#equipamentos {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    /* Espaço entre os cards */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: calc(33.33% - 60px);
    /* Ajuste a largura para que os cards se encaixem no contêiner */
    background-color: white;
    display: flex;
    flex-direction: column;
    /* Ajuste para coluna para que o título fique acima */
    align-items: center;
    /* Centraliza o conteúdo horizontalmente */
    justify-content: center;
    /* Centraliza o conteúdo verticalmente */
    text-align: center;
    height: 80%;
    width: 90%;
    margin-left: 5%;

}

.desaperecerWhatsapp {
    display: none;
}

.diagonal-box {
    position: flex;
    width: 900px;
    /* Largura do retângulo relativa à largura da viewport */
    height: 900px;
    /* Altura do retângulo relativa à largura da viewport */
    overflow: hidden;
    /* Oculta conteúdo que ultrapasse o tamanho do retângulo */
    /* Rotaciona o retângulo em 90 graus */
    border-radius: 10px;
    rotate: 90deg;

    @media(max-width: 850px) {
        height: 820px;
        width: 820px;
    }

    @media(max-width: 800px) {
        height: 770px;
        width: 770px;
    }

    @media(max-width: 750px) {
        height: 720px;
        width: 720px;
    }

    @media(max-width: 700px) {
        height: 670px;
        width: 670px;
    }

    @media(max-width: 650px) {
        height: 620px;
        width: 620px;
    }

    @media(max-width: 600px) {
        height: 570px;
        width: 570px;
    }

    @media(max-width: 550px) {
        height: 520px;
        width: 520px;
    }

    @media(max-width: 500px) {
        height: 470px;
        width: 470px;
    }

    @media(max-width: 450px) {
        height: 420px;
        width: 420px;
    }

    @media(max-width: 400px) {
        height: 370px;
        width: 370px;
    }

    @media(max-width: 350px) {
        height: 320px;
        width: 320px;
    }

    @media(max-width: 300px) {
        height: 270px;
        width: 270px;
    }
}

.container2 .text {
    text-align: center;
}

.triangle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(100% 0, 0% 0, 20% 20%, 0% 0%);
    /* Ajusta a posição do canto superior esquerdo */
    display: flex;
    justify-content: center;
    align-items: center;
}

#videoPrincipal {
    width: 100px;
    height: 100px;
    min-width: 100%;
    /* Garante que o vídeo cubra completamente o triângulo */
    min-height: 100%;
    /* Garante que o vídeo cubra completamente o triângulo */
    object-fit: cover;
    /* Ajusta o tamanho do vídeo para cobrir o triângulo */
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform: rotate(-90deg);
    border-radius: 20px;
    filter: brightness(0.8);
}

#bg-video {
    width: 10px;
    height: 10px;
    min-width: 100%;
    /* Garante que o vídeo cubra completamente o triângulo */
    min-height: 100%;
    /* Garante que o vídeo cubra completamente o triângulo */
    object-fit: cover;
    /* Ajusta o tamanho do vídeo para cobrir o triângulo */
    position: flex;
    top: 0;
    left: 0;
    z-index: -1;
    transform: rotate(-90deg);
    border-radius: 20px;
    filter: brightness(0.6);

}


.thumbnails {
    position: absolute;
    bottom: 10px;
    left: 70%;
    bottom: 47%;
    transform: translateX(-50%);
    transform: translateY(90%);
    transform: rotate(-90deg);
    display: flex;
    justify-content: center;
    gap: 10px;
}

.thumbnail {
    opacity: 0.4;
    transform: translateY(-170%);
    width: 900px;
    cursor: pointer;
    border: 2px solid white;
    overflow: hidden;
    width: 150px;
    height: 100px;
    transform: translate(-15px, -180px);

    @media(max-width:1120px) {
        width: 120px;
        height: 70px;
        transform: translate(-15px, -100px);
    }

    @media (min-width: 541px) and (max-width: 590px) {
        width: 80px;
        height: 50px;
        transform: translate(-15px, -100px);
    }

    @media (min-width: 591px) and (max-width: 650px) {
        width: 85px;
        height: 50px;
        transform: translateY(-120px);
    }

    @media (min-width: 730px) and (max-width: 800px) {
        width: 90px;
        height: 60px;
        transform: translate(-15px, -100px);
    }

    @media (min-width: 650px) and (max-width: 730px) {
        width: 90px;
        height: 60px;
        transform: translate(-15px, -100px);
    }

    @media (min-width: 540px) and (max-width: 650px) {
        width: 90px;
        height: 60px;
        transform: translate(-15px, -130px);
    }

    @media (min-width: 490px) and (max-width: 540px) {
        width: 80px;
        height: 40px;
        transform: translate(-7px, -100px);
    }

    @media (min-width: 375px) and (max-width: 490px) {
        width: 50px;
        height: 40px;
        transform: translate(-10px, -70px);
    }

    @media (min-width: 350px) and (max-width: 375px) {
        width: 40px;
        height: 30px;
        transform: translate(-10px, -70px);
    }

    @media (min-width: 300px) and (max-width: 350px) {
        width: 40px;
        height: 30px;
        transform: translate(-5px, -50px);
    }
}


.thumbnail:hover {
    opacity: 1;
}

.thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(1 0, 100% 200%, 0 200%);
    /* Cria o outro lado do retângulo */
    /* Cor de fundo do lado de texto */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transform: rotate(-90deg);
    /* Rotaciona o texto em -90 graus */
    opacity: 1;
    /* Opacidade do texto */
    font-size: 45px;
    text-align: center;
    justify-content: center;
    top: -2%;
    color: #ffffff;
    font-family: "Oswald", sans-serif;

    @media (max-width:330px) {
        font-size: 8px;
        margin-top: -13px;
    }

    @media (min-width:330px) and (max-width:415px) {
        font-size: 8px;
        margin-top: -13px;
    }


    @media (min-width:415px) and (max-width:450px) {
        font-size: 10px;
        margin-top: -13px;
    }

    @media (min-width:451px) and (max-width:580px) {
        font-size: 20px;
        margin-top: -10px;
    }

    @media (min-width:660px) and (max-width:696px) {
        font-size: 40px;
        margin-top: -10px;
    }

    @media (min-width:695px) and (max-width:696px) {
        font-size: 45px;
        margin-top: -11px;
    }

    @media (min-width:696px) and (max-width:722px) {
        font-size: 45px;
        margin-top: -12px;
        margin-right: 30px;
    }

    @media (min-width:722px) and (max-width:770px) {
        font-size: 40px;
        margin-top: -12px;
        margin-right: -30px;
    }

    @media (min-width:850px) and (max-width:870px) {
        font-size: 40px;
        margin-top: -10px;
    }

    @media (min-width:771px) and (max-width:849px) {
        font-size: 40px;
        margin-top: -14px;
        margin-left: -30px;
    }

    @media (min-width:933px) and (max-width:976px) {
        font-size: 40px;
        margin-top: -10px;
    }

    @media (min-width:976px) and (max-width:984px) {
        font-size: 40px;
        margin-top: -5px;
    }

}

@media (min-width: 576px) {
    .text {
        flex: 1;
        max-width: 100%;
    }
}


#mapaEmSi {
    width: 100%;
    height: 50vh;
}

.textoTestes {
    background-color: #FDD500;
    text-align: center;
    margin-top: 100px;
    font-size: 50px;
}

.container2 {
    position: relative;
    width: 100%;
    padding-right: auto;
    margin: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: rgb(167, 252, 10);
    display: flex;
    margin-top: -20px;
    font-family: "Oswald", sans-serif;
    justify-content: center;
    margin-top: 120px;
    border-radius: 10px;
    margin-top: -100px;

    #video {
        max-width: 100%;
        max-height: 100%;
    }

    ::selection {
        color: #ffffff;
        background-color: #252525;
    }

    footer {
        background: #181717;
        color: #fff;
        text-align: center;
        padding: 20px;
        /* Reduzido de 30px para 15px */
        margin-top: -20px;
        /* Reduzido de 30px para 20px */
        font-size: 20px;
    }



    @media screen and (max-width: 768px) {
        .container {
            flex-direction: column;
            /* Altera para layout de coluna única */
        }

        .section {
            padding: 20px;
            /* Aumenta o espaçamento interno */
        }

        h1 {
            font-size: 24px;
            /* Reduz o tamanho da fonte para cabeçalhos */
        }

        p {
            font-size: 14px;
            /* Reduz o tamanho da fonte para parágrafos */
        }

        img {
            max-width: 100%;
            /* Imagens ocupam 100% da largura disponível */
            height: auto;
            /* Mantém a proporção da imagem */
        }

        .sidebar {
            display: none;
            /* Oculta a barra lateral em telas menores */
        }
    }

    @media(max-width:450px) {
        .contatos {
            background: #181717;
            color: #000000;
            max-width: 100px;
            border-bottom: hsl(41, 60%, 46%) 7px solid;
            padding-top: 1%;
        }

        header .MBClogo {
            display: inline-block;
            vertical-align: middle;
            color: #fdd835;
            /* Cor do texto da logo (ajuste conforme necessário) */
            font-size: 40px;
            /* Tamanho da fonte da logo */
            font-weight: bold;
            /* Peso da fonte (opcional) */
        }

        .showcase-imageServiços {
            opacity: 0.2;
        }


        #titulo1 {
            color: #000000;
            display: flex;
            justify-content: center;
            align-items: center;
            /* Centraliza verticalmente */
            border: 1px solid #FDBB00;
            border-radius: 5%;
            background-color: #FDBB00;
            padding: 20px;
            width: 12%;
            height: 10%;
            /* Ajusta a largura automaticamente ao conteúdo */
            box-shadow: 5px 5px #867306;
            font-size: 23%;
        }

        #titulo2 {
            color: grey;
            opacity: 0.6;
            display: flex;
            justify-content: center;
            align-items: center;
            /* Centraliza verticalmente */
            border: 1px solid #FDBB00;
            border-radius: 5%;
            background-color: #FDBB00;
            padding: 20px;
            width: 12%;
            height: 10%;
            /* Ajusta a largura automaticamente ao conteúdo */
            box-shadow: 5px 5px #867306;
            font-size: 23%;
        }

        #textoServiço {
            text-align: left;
            margin: 10%;
            font-family: "Oswald", sans-serif;
            font-size: 20px;
            line-height: 1.3;


        }

        .showcase-textMaps {
            flex: 1;
            padding-right: 20px;
            color: #000000;
            justify-content: center;
            text-align: center;
            align-items: center;
            justify-content: bottom;
            font-size: 110%;
            font-family: "Oswald", sans-serif;
        }

        .containerMaps {
            display: grid;
            justify-content: center;
            align-items: flex-start;
            flex: 1;
            padding: 5%;
            background-image: url('imagens/fundo.png');
            overflow: hidden;


            @media(max-width:1110px) {
                margin-top: -80%;


            }

        }

        .espaços {
            opacity: 0;
        }

        .showcaseMaps {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .text {
            font-size: 110%;
            width: 100%;
        }

        #mapaEmSi {
            opacity: 1;
        }

        .testimonial-box:hover {
            transform: translateY(0px);
        }

        .sombraLetraHeader:hover {
            transform: translateY(0px);
        }

        .containerApresentaçao:hover {
            transform: translateY(0px);
        }

        .cardTriplocontent:hover {
            transform: translateY(0px);
        }

        .cardQuatroPilares:hover {
            transform: translateY(0px);
        }

        .ender:hover {
            transform: translateY(0px);
        }
    }
}

.container3 {
    position: relative;
    margin: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: rgb(167, 252, 10);
    display: flex;
    margin-top: -20px;
    font-family: "Oswald", sans-serif;
    justify-content: center;
    margin-top: 1vw;
    margin-bottom: 3vw;
    border-radius: 10px;
}