/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: "Eurostile";
    src: url('../fonts/14511.ttf') format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Merriweather";
    src: url('../fonts/Merriweather.ttf') format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    background: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(237, 225, 225, 1) 11%, rgba(230, 230, 230, 1) 99%);
    background-repeat: repeat;
    background-size: auto;
    color: rgb(0, 0, 0);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
    z-index: 100;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 99%;
    height: 4vw;
    padding: 1vw;
    background-color: #f0f1f1c7;
    transition: background 0.5s ease-in-out;
    z-index: 1000;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    border-left: 1px solid black;
    border-right: 1px solid black;
    border-radius: 1vw;
    position: fixed;
    top: 0.2vw;
    left: 0.47vw;
    margin: 0 auto;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
}

.nav-menu li {
    margin: 0 2.5vw;
    position: relative;
}

.nav-menu li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: -2.7vw;
    width: 1px;
    height: 100%;
    background-color: black;
}

.nav-menu a {
    position: relative;
    padding: 1vw;
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 1.1vw;
    transition: 0.3s;
    font-family: "Merriweather", serif;
}

.nav-menu a:hover {
    color: white;
    background-color: #5f5b5b;
    border-radius: 0.5vw;
}

@media (max-width: 900px) {

    .header {
        height: 11vw;
        width: 99%;
        top: 2.5vw;
        left: 0.37vw;
    }

    .nav-menu a {
        font-size: 2.65vw;
    }

}

.footer {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 99.9vw;
    height: 7vw;
    margin-left: -0.5vw;
    background-color: rgba(0, 0, 0, 0.822);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: rgb(255, 255, 255);
    padding: 2.5vw;
    text-align: center;
    font-size: 1vw;
    overflow: hidden;
    z-index: 1;
}

.footer p {
    position: relative;
    z-index: 3;
    margin: 0;
    margin-top: 0.3vw;
}

@media (max-width: 900px) {
    .footer {
        height: 20vw;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 4vw 2vw;
    }

    .footer p {
        font-size: 3vw;
        white-space: normal;
        width: 80vw;
        max-width: 90vw;
        margin: 1vw auto;
    }
}

.fixed-logo {
    width: 7.05vw;
    height: 7.05vw;
    position: fixed;
    bottom: 2.5vw;
    right: 2.5vw;
    z-index: 100;
    cursor: pointer;
}

.scrolling-logo {
    width: 9vw;
    height: 9vw;
    position: fixed;
    bottom: 1.5vw;
    right: 1.5vw;
    z-index: 99;
}

@media (max-width: 1200px) {
    .fixed-logo {
        width: 13vw;
        height: 13vw;
        position: fixed;
        bottom: 3.5vw;
        right: 3.5vw;
        z-index: 100;
    }

    .scrolling-logo {
        width: 17vw;
        height: 17vw;
        position: fixed;
        bottom: 1.5vw;
        right: 1.5vw;
        z-index: 99;
    }
}

@media (min-width: 1201px) and (max-width: 1600px) {
    .fixed-logo {
        width: 7.55vw;
        height: 7.55vw;
        position: fixed;
        bottom: 2.8vw;
        right: 2.7vw;
        z-index: 100;
    }

    .scrolling-logo {
        width: 10vw;
        height: 10vw;
        position: fixed;
        bottom: 1.5vw;
        right: 1.5vw;
        z-index: 99;
    }
}

.swiper-container {
    position: absolute;
    top: 8vw;
    left: 50%;
    transform: translateX(-50%);
    width: 87vw;
    height: auto;
    overflow: hidden;
    border-radius: 1vw;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    flex: 0 0 100%;
    max-width: 100%;
    height: auto;
    text-align: center;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 1vw;
}

.swiper-button-next,
.swiper-button-prev {
    color: rgb(255, 255, 255);
    background-color: transparent;
    width: auto;
    height: auto;
    position: absolute;
    transform: translateY(-10%);
    z-index: 10;
}

@media (max-width: 900px) {
    .swiper-container {
        display: none;
    }

    .swiper-container-mobile {
        position: absolute;
        width: 90vw;
        overflow: hidden;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 20vw;
        border-radius: 4vw;
        border: #000000;
    }

    .swiper-wrapper {
        display: flex;
    }

    .swiper-slide {
        flex: 0 0 100%;
        max-width: 100%;
        position: relative;
        padding-top: 110%;
        overflow: hidden;
        text-align: center;
    }

    .swiper-slide img {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: translate(-50%, -50%);
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 1vw;
        height: 1vw;
        font-size: 1vw;
    }
}

@media (min-width: 901px) {
    .swiper-container-mobile {
        display: none;
    }
}

.parallax {
    height: 60vw;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.parallax h1 {
    position: absolute;
    top: 38.5vw;
    left: 50vw;
    white-space: nowrap;
    transform: translate(-50%, -50%);
    color: rgb(0, 0, 0);
    font-size: 4.2vw;
    font-weight: bold;
    font-family: "Merriweather", serif;
    text-shadow:
        0 0 15px rgba(255, 255, 255, 0.8),
        0 0 25px rgba(255, 255, 255, 0.6),
        0 0 35px rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    letter-spacing: 0.1vw;
}

@media (max-width: 901px) {
    .parallax h1 {
        position: absolute;
        top: 139vw;
        width: 98vw;
        color: rgb(0, 0, 0);
        font-weight: bold;
        font-family: "Merriweather", serif;
        font-size: 7.5vw;
        letter-spacing: 0.11vw;
        white-space: normal;
        align-items: center;
        padding: 3vw;
        text-shadow:
            0 0 15px rgba(255, 255, 255, 0.35),
            0 0 25px rgba(255, 255, 255, 0.25),
            0 0 35px rgba(255, 255, 255, 0.15);
        animation: blinkText 1.5s infinite alternate ease-in-out;
    }

    @keyframes blinkText {
        0% {
            opacity: 1;
        }

        100% {
            opacity: 0.85;
        }
    }
}

.parallax2 {
    background-image: url('../Images/Portfolio.webp');
    height: 25vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.parallax2 h1 {
    position: static;
    transform: none;
    margin: 0;
    color: rgb(0, 0, 0);
    font-size: 5vw;
    font-weight: bold;
    font-family: "Merriweather", serif;
    letter-spacing: 0.11vw;
    text-shadow:
        0 0 15px rgba(255, 255, 255, 0.8),
        0 0 25px rgba(255, 255, 255, 0.6),
        0 0 35px rgba(255, 255, 255, 0.4);
}

@media (max-width: 900px) {
    .parallax2 {
        height: 55vw;
        width: 100%;
        left: 50%;
        top: 5vw;
        transform: translateX(-50%);
        margin-bottom: 10vw;
    }

    .parallax2 h1 {
        color: rgb(255, 255, 255);
        font-size: 10vw;
        font-family: "Merriweather", sans-serif;
        text-shadow:
            0 0 2vw rgb(0, 0, 0),
            0 0 2vw rgb(0, 0, 0),
            0 0 2vw rgb(0, 0, 0);
        background-color: #2e2b2b80;
        border-radius: 5vw;
        width: 90%;
    }
}

.parallax3 {
    background-image: url('../Images/contato.webp');
    height: 25vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.parallax3 h1 {
    margin: 0;
    transform: none;
    color: rgb(0, 0, 0);
    font-size: 5.3vw;
    font-weight: bold;
    font-family: "Merriweather", serif;
    letter-spacing: 0.11vw;
    text-shadow:
        0 0 25px rgba(255, 255, 255, 0.8),
        0 0 35px rgba(255, 255, 255, 0.6),
        0 0 45px rgba(255, 255, 255, 0.4);
    text-align: center;
}

@media (max-width: 900px) {
    .parallax3 {
        height: 55vw;
        width: 100%;
        margin: 0vw auto 22vw auto;
        left: 50%;
        top: 15vw;
        transform: translateX(-50%);
    }

    .parallax3 h1 {
        color: rgb(255, 255, 255);
        font-size: 9vw;
        font-weight: bold;
        font-family: "Merriweather", serif;
        letter-spacing: 0.11vw;
        text-shadow:
            0 0 2vw rgb(0, 0, 0),
            0 0 2vw rgb(0, 0, 0),
            0 0 2vw rgb(0, 0, 0);
        width: 93vw;
        white-space: normal;
        background-color: #2e2b2b80;
        border-radius: 5vw;
        padding: 3vw;
    }
}

.parallax4 {
    background-image: url('../Images/NossaLocalizacao.webp');
    height: 25vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.parallax4 h1 {
    position: static;
    transform: none;
    margin: 0;
    color: rgb(0, 0, 0);
    font-size: 6vw;
    font-weight: bold;
    font-family: "Merriweather", serif;
    letter-spacing: 0.11vw;
    text-shadow:
        0 0 15px rgba(255, 255, 255, 0.8),
        0 0 25px rgba(255, 255, 255, 0.6),
        0 0 35px rgba(255, 255, 255, 0.4);
}

@media (max-width: 900px) {
    .parallax4 {
        height: 55vw;
        width: 100%;
        left: 50%;
        top: 5vw;
        transform: translateX(-50%);
        margin-bottom: 20vw;
        margin-top: 20vw;
    }

    .parallax4 h1 {
        color: rgb(255, 255, 255);
        font-size: 9vw;
        font-family: "Merriweather", sans-serif;
        text-shadow:
            0 0 2vw rgb(0, 0, 0),
            0 0 2vw rgb(0, 0, 0),
            0 0 2vw rgb(0, 0, 0);
        white-space: nowrap;
        background-color: #2e2b2b80;
        border-radius: 5vw;
        padding: 3vw;
    }
}

.sobre {
    background-image: url('../Images/bg_sobre.webp');
    height: 25vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.background02 {
    background-color: #ffffff;
    background-image: url("https://www.transparenttextures.com/patterns/brushed-alum.png");
    position: absolute;
    height: 590vw;
    width: 100%;
    top: 70vw;
    z-index: -10;
}

@media (max-width: 900px) {
    .background01 {
        height: 250vw;
    }

    .background02 {
        top: 220vw;
        height: 2720vw;
    }
}

.sobre h1 {
    margin: 0;
    transform: none;
    color: rgb(0, 0, 0);
    font-size: 6vw;
    font-weight: bold;
    font-family: "Merriweather", serif;
    letter-spacing: 0.11vw;
    text-shadow:
        0 0 25px rgba(255, 255, 255, 0.8),
        0 0 35px rgba(255, 255, 255, 0.6),
        0 0 45px rgba(255, 255, 255, 0.4);
    text-align: center;
}

@media (max-width: 900px) {
    .sobre {
        height: 55vw;
        width: 100%;
        margin: 120vw auto 55vw auto;
        left: 50%;
        top: 35vw;
        transform: translateX(-50%);
    }

    .sobre h1 {
        color: rgb(255, 255, 255);
        font-size: 11.5vw;
        font-weight: bold;
        font-family: "Merriweather", serif;
        letter-spacing: 0.11vw;
        text-shadow:
            0 0 2vw rgb(0, 0, 0),
            0 0 2vw rgb(0, 0, 0),
            0 0 2vw rgb(0, 0, 0);
        width: auto;
        white-space: nowrap;
        background-color: #2e2b2b80;
        border-radius: 5vw;
        padding: 3vw;
    }
}

/* Painel Par */
.panelPar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    margin: 5vw auto;
    margin-right: 10vw;
    width: 75vw;
    transform: translateX(10vw);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    flex-direction: row-reverse;
    border: 0.2vw solid #bebebe;
    border-radius: 2.15vw;
}

.panelPar img {
    width: 42vw;
    height: 20vw;
    border-radius: 2vw;
}

.panelPar.visible {
    opacity: 1;
    transform: translateX(0);
}

.panelPar .text h3 {
    font-size: 2.3vw;
    margin-right: 2vw;
    font-family: "Merriweather", serif;
    letter-spacing: 0.11vw;
    text-shadow:
        0 0 15px rgba(255, 255, 255, 0.2),
        0 0 25px rgba(255, 255, 255, 0.1),
        0 0 35px rgba(255, 255, 255, 0.05);
}

.panelPar .text p {
    font-size: 1.3vw;
    opacity: 70%;
    margin-top: 2.5vw;
    margin-right: 0.5vw;
    font-family: "Merriweather", serif;
    letter-spacing: 0.11vw;
    width: 99%;
    align-items: center;
    align-self: center;
    align-content: center;
    padding-left: 1vw;
    color: #000000;
}

@media (max-width: 900px) {
    .panelPar {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: transparent;
        border-radius: 5vw;
        width: 80vw;
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        text-align: center;
        margin: 0 auto;
        margin-bottom: 15vw;
        opacity: 0.13;
        transform: translateY(5vw);
        border: 0.9vw solid #bebebe;
    }

    .panelPar.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .panelPar img {
        position: relative;
        width: 78.3vw;
        height: 55vw;
        border-radius: 4vw 4vw 0vw 0vw;
        margin-top: 0vw;
    }

    .panelPar .text {
        margin-top: 3vw;
        margin-bottom: 5vw;
        text-align: center;
    }

    .panelPar .text h3 {
        font-size: 5.7vw;
        margin-top: 4vw;
        margin-bottom: 7vw;
        font-family: "Merriweather", serif;
        letter-spacing: 0.11vw;
        text-shadow:
            0 0 15px rgba(255, 255, 255, 0.2),
            0 0 25px rgba(255, 255, 255, 0.1),
            0 0 35px rgba(255, 255, 255, 0.05);
        text-align: center;
    }

    .panelPar .text p {
        font-size: 3.7vw;
        opacity: 70%;
        margin-top: 4vw;
        text-align: center;
        padding: 0;
    }
}

/* Painel Impar */
.panelImpar {
    display: flex;
    align-items: center;
    background-color: transparent;
    border-radius: 5vw;
    margin: 7vw auto;
    margin-left: 10vw;
    width: 75vw;
    transform: translateX(-10vw);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    border: 0.2vw solid #bebebe;
    border-radius: 2.15vw;
}

.panelImpar img {
    width: 42vw;
    height: 20vw;
    border-radius: 2vw;
}

.panelImpar.visible {
    opacity: 1;
    transform: translateX(0);
}

.panelImpar .text h3 {
    font-size: 2.3vw;
    margin-left: 2vw;
    font-family: "Merriweather", serif;
    letter-spacing: 0.11vw;
    text-shadow:
        0 0 15px rgba(255, 255, 255, 0.2),
        0 0 25px rgba(255, 255, 255, 0.1),
        0 0 35px rgba(255, 255, 255, 0.05);
    color: #000000;
}

.panelImpar .text p {
    font-size: 1.3vw;
    opacity: 70%;
    margin-top: 2.5vw;
    margin-left: 1.3vw;
    font-family: "Merriweather", serif;
    letter-spacing: 0.11vw;
    width: 97%;
    align-items: center;
    align-self: center;
    align-content: center;
    padding-right: 2.5vw;
    color: #000000;
}

@media (max-width: 900px) {
    .panelImpar {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: transparent;
        border-radius: 5vw;
        width: 80vw;
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        text-align: center;
        margin: 0 auto;
        margin-bottom: 15vw;
        opacity: 0.13;
        transform: translateY(5vw);
        border: 0.9vw solid #bebebe;
    }

    .panelImpar.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .panelImpar img {
        position: relative;
        width: 78.3vw;
        height: 55vw;
        border-radius: 4vw 4vw 0vw 0vw;
        margin-top: 0vw;
    }

    .panelImpar .text {
        margin-top: 3vw;
        margin-bottom: 5vw;
        text-align: center;
    }

    .panelImpar .text h3 {
        font-size: 5.7vw;
        margin-top: 4vw;
        margin-bottom: 7vw;
        font-family: "Merriweather", serif;
        letter-spacing: 0.11vw;
        text-shadow:
            0 0 15px rgba(255, 255, 255, 0.2),
            0 0 25px rgba(255, 255, 255, 0.1),
            0 0 35px rgba(255, 255, 255, 0.05);
        text-align: center;
    }

    .panelImpar .text p {
        font-size: 3.7vw;
        opacity: 70%;
        margin-top: 4vw;
        text-align: center;
        padding: 0;
    }
}

.containerSquares {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
}

.column {
    margin-bottom: 6vw;
    width: 100%;
}

.column h2 {
    font-size: 2.5vw;
    font-family: \"Merriweather\", serif;
    letter-spacing: 0.11vw;
    margin-bottom: 3vw;
    border-bottom: 5px solid #ffffff;
    padding-bottom: 1vw;
    margin-top: 2vw;
    text-align: left;
    padding-left: 2vw;
}

.column03 h2 {
    font-size: 3.7vw;
    padding-left: 3.7vw;
}

.square-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3vw 9vw;
    padding: 3vw 5vw;
}

.itemSquare {
    display: flex;
    align-items: flex-start;
}

.square {
    width: 13vw;
    height: 15vw;
    border-radius: 1.5vw;
    background: lightgrey;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 50px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 26px -18px inset;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1vw;
    color: white;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.square img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.square:hover {
    transform: translateY(-10px) rotate(7deg) scale(1.2);
    background-color: lightgrey;
}

.square:hover img {
    opacity: 1;
}

.square:hover span {
    opacity: 0;
}

.textSquares {
    color: #000000;
    padding: 1.5vw 0vw 4.5vw 3vw;
    width: 20vw;
    margin-left: -1.4vw;
}

.textSquares h3 {
    font-size: 1.9vw;
    margin: 0 0 2vw 0;
    white-space: nowrap;
    text-shadow:
        0 0 15px rgba(255, 255, 255, 0.2),
        0 0 25px rgba(255, 255, 255, 0.1),
        0 0 35px rgba(255, 255, 255, 0.05);
}

.textSquares p {
    font-size: 1vw;
    opacity: 85%;
}

.whatsapp-button {
    display: inline-block;
    margin-top: 3vw;
    padding: 0.6vw 1.7vw;
    font-size: 1vw;
    border-radius: 1.5vw;
    border: none;
    background-color: #c2c9c2;
    color: #121212;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.whatsapp-button:hover {
    background-color: #418f4198;
}

.sectionHeader {
    position: sticky;
    top: 0;
    background-color: #302f2fbd;
    z-index: 10;
    padding-top: 5.3vw;
}

.sectionHeader h2 {
    font-size: 2.5vw;
    font-family: \"Merriweather\", serif;
    letter-spacing: 0.13vw;
    margin-bottom: 3vw;
    border-bottom: 0.5vw solid #ffffff;
    padding-bottom: 0.3vw;
    padding-left: 2vw;
    margin-top: 0;
    color: white;
}

@media (max-width: 900px) {
    .containerSquares {
        grid-template-columns: 1fr;
        justify-content: center;
        width: 100%;
    }

    .column {
        width: 100%;
    }

    .column h2,
    .column03 h2,
    .sectionHeader h2 {
        font-size: 7.5vw;
        margin-bottom: 1em;
    }

    .column03 h2 {
        font-size: 9vw;
    }

    .column04 h2 {
        font-size: 9vw;
    }

    .square-grid {
        grid-template-columns: 1fr;
        gap: 15vw;
        justify-content: center;
    }

    .square {
        width: 37vw;
        height: 42vw;
        font-size: 4vw;
        border-radius: 4vw;
    }

    .textSquares {
        width: 50%;
        margin-left: 5vw;
        padding: 4vw 0;
        text-align: center;
    }

    .textSquares h3 {
        font-size: 5.2vw;
        margin-bottom: 3vw;
    }

    .textSquares p {
        font-size: 3vw;
    }

    .whatsapp-button {
        font-size: 3vw;
        padding: 3vw 7vw;
        border-radius: 5vw;
        margin-top: 7vw;
    }

    .sectionHeader {
        padding-top: 15vw;
    }
}

.orcamento-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 30vw;
    padding: 2vw;
    justify-content: center;
    margin-left: 56vw;
    backdrop-filter: blur(4px);
    background-color: rgba(255, 255, 255, 0.822);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.orcamento-title {
    position: absolute;
    margin-left: 40vw;
    margin-top: 10vw;
    transform: translate(-50%, -50%);
    color: rgb(0, 0, 0);
    font-size: 4.4vw;
    font-weight: bold;
    font-family: "Merriweather", serif;
    letter-spacing: 0.11vw;
    text-shadow:
        0 0 15px rgba(255, 255, 255, 0.8),
        0 0 25px rgba(255, 255, 255, 0.6),
        0 0 35px rgba(255, 255, 255, 0.4);
}

.orcamento-form {
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
    width: 18vw;
    margin-bottom: 3.5vw;
    margin-top: 1vw;
}

.orcamento-form input,
.orcamento-form select,
.orcamento-form textarea {
    width: 100%;
    border: none;
    outline: none;
    border-radius: 0.7vw;
    padding: 0.7vw;
    background-color: #f3eded;
    box-shadow: inset 2px 5px 10px rgba(0, 0, 0, 0.3);
    transition: 300ms ease-in-out;
    margin-top: 0.5vw;
}

.orcamento-form input {
    height: 2.4vw;
}

.orcamento-form textarea {
    height: 7vw;
    margin-top: 2vw;
}

.orcamento-form input:focus,
.orcamento-form select:focus,
.orcamento-form textarea:focus {
    background-color: white;
    transform: scale(1.03);
    box-shadow: 5px 5px 15px #adabab, -5px -5px 15px #ffffff;
}

.orcamento-form h2 {
    font-size: 2vw;
    white-space: nowrap;
    font-family: "Merriweather", serif;
    font-style: italic;
    letter-spacing: 0.11vw;
    margin-left: -2.8vw;
    padding-bottom: 2vw;
    color: #0072b1;
    position: relative;
    display: inline-block;
}

.orcamento-form h2::after {
    content: "";
    position: absolute;
    left: 0.2vw;
    bottom: 0.9vw;
    width: 110%;
    height: 1px;
    background-color: #0072b1;
}

.buttonOrcamento {
    position: relative;
    font-size: 1.2vw;
    padding: 0.7em 1.4em;
    background-color: #10da31c9;
    text-decoration: none;
    border: none;
    border-radius: 0.5em;
    color: #ffffff;
    box-shadow: 0.5em 0.5em 0.5em rgba(0, 0, 0, 0.3);
    cursor: pointer;
    margin-top: 2vw;
}

.buttonOrcamento::before {
    position: absolute;
    content: '';
    height: 0;
    width: 0;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgb(238, 235, 235) 0%, rgb(223, 217, 217) 50%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 60%);
    border-radius: 0.5em 0 0.5em 0;
    box-shadow: 0.2em 0.2em 0.2em rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.buttonOrcamento:hover::before {
    width: 1.6em;
    height: 1.6em;
}

.buttonOrcamento:active {
    box-shadow: 0.2em 0.2em 0.3em rgba(0, 0, 0, 0.3);
    transform: translate(0.1em, 0.1em);
}

@media (max-width: 900px) {
    .orcamento-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
        height: 130vw;
        padding: 7vw;
        margin-top: 5vw;
        box-sizing: border-box;
        margin-left: auto;
        margin-right: auto;
        border: #ffffff00;
        border-radius: 4vw;
    }

    .orcamento-form {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 5vw;
        margin-bottom: 8vw;
    }

    .orcamento-form h2 {
        font-size: 5.7vw;
        top: 2vw;
        margin-bottom: 5vw;
        align-self: center;
        text-align: center;
        left: 0.7vw;
    }

    .orcamento-form h2::after {
        content: "";
        position: absolute;
        left: -5.4vw;
        bottom: 0.9vw;
        width: 116.5%;
        height: 1.5px;
        background-color: #000000;
    }

    .orcamento-form input {
        width: 100%;
        padding: 5vw;
        border-radius: 2.5vw;
        font-size: 4vw;
        box-sizing: border-box;
    }

    .orcamento-form textarea {
        width: 100%;
        padding: 5vw;
        border-radius: 2.5vw;
        font-size: 4vw;
        box-sizing: border-box;
        height: 30vw;
    }

    .orcamento-form select {
        height: 9.7vw;
        border: #000000;
        border-radius: 2.5vw;
        font-size: 4vw;
    }

    .buttonOrcamento {
        font-size: 5vw;
        top: 3vw;
    }
}

.loader {
    width: 15vw;
    height: 15vw;
    position: relative;
    transform: rotate(45deg);
    margin-left: 14.65vw;
    margin-top: 4vw;
}

.loader:before,
.loader:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50% 50% 0 50%;
    background: #0000;
    background-image: radial-gradient(circle 0.8vw at 50% 50%, #0000 94%, #ff4747);
    height: 3vw;
    width: 3vw;
}

.loader:after {
    animation: pulse-ytk0dhmd 1s infinite;
    transform: perspective(336px) translateZ(0px);
}

@keyframes pulse-ytk0dhmd {
    to {
        transform: perspective(336px) translateZ(168px);
        opacity: 0;
    }
}

@media (max-width: 900px) {
    .loader {
        width: 15vw;
        height: 15vw;
        position: relative;
        transform: rotate(45deg);
        margin-left: 37vw;
        margin-top: 8vw;
    }

    .loader:before,
    .loader:after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50% 50% 0 50%;
        background: #0000;
        background-image: radial-gradient(circle 2.3vw at 50% 50%, #0000 94%, #ff4747);
        height: 9vw;
        width: 9vw;
    }

    .loader:after {
        animation: pulse-ytk0dhmd 1s infinite;
        transform: perspective(336px) translateZ(0px);
    }
}

.map-container {
    position: relative;
    width: 37vw;
    height: 28vw;
    border: 0.3vw solid #4a90e2;
    border-radius: 2vw;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin-top: -38vw;
    margin-bottom: 10vw;
    margin-left: 56vw;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.mapImagem {
    position: relative;
}

.mapImagem .mapTitleImg {
    position: absolute;
    top: -44.7vw;
    left: 71.5vw;
    width: 8vw;
    height: 8vw;
    z-index: 10;
}

@media (max-width: 900px) {
    .map-container {
        width: 90vw;
        height: 75vw;
        border: 4px solid #4a90e2;
        border-radius: 4vw;
        margin: 15vw auto;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    .mapImagem .mapTitleImg {
        position: absolute;
        top: -103vw;
        left: 50%;
        transform: translateX(-50%);
        width: 17vw;
        height: 17vw;
    }
}

.location {
    width: 45vw;
    height: 35vw;
    margin: 7vw;
    margin-left: 6.7vw;
    background-color: #f7fbff;
    border: 0.3vw solid #4a90e2;
    border-radius: 2vw;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.location h1 {
    font-size: 3vw;
    margin-bottom: 2.5vw;
    color: #4a90e2;
    border-bottom: 2px solid #e3f0ff;
    display: inline-block;
    margin-top: 1.8vw;
    margin-left: 1.19vw;
}

.location p {
    font-size: 1.25vw;
    line-height: 1.6;
    width: 40vw;
    margin-left: 2.4vw;
}

.location strong {
    color: #4a90e2;
}

.location em {
    font-style: normal;
    color: #f15a24;
    font-weight: 500;
}

.horario {
    margin-top: 0.9vw;
    padding-top: 0.7vw;
    border-top: 0.2vw solid #e3f0ff;
    font-size: 0.84vw;
}

@media (max-width: 900px) {
    .location {
        width: 90vw;
        height: auto;
        border-radius: 4vw;
        border: 1vw solid #4a90e2;
        margin-bottom: 10vw;
        margin-left: 5vw;
    }

    .location h1 {
        font-size: 8vw;
        margin-bottom: 7vw;
        margin-top: 3vw;
        margin-left: 0;
        white-space: nowrap;
    }

    .location p {
        font-size: 4vw;
        width: 80vw;
        margin: 0 auto;
    }

    .horario {
        font-size: 3vw;
        margin-top: 3vw;
        padding-top: 2vw;
    }
}

.card {
    width: fit-content;
    height: fit-content;
    background-color: rgba(238, 238, 238, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    bottom: 9vw;
    left: 10vw;
    bottom: 9.8vw;
}

/* for all social containers*/
.socialContainer {
    width: 4.5vw;
    height: 4.5vw;
    border-radius: 50%;
    background-color: rgb(58, 52, 52);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition-duration: 0.3s;
    position: absolute;
    left: 0.7vw;
}

.containerOne {
    top: 3.2vw;
}

.containerTwo {
    top: 11.98vw;
}

.containerThree {
    top: 20.7vw;
}

.containerFour {
    top: 29.3vw;
}

.contactTextI,
.contactTextE,
.contactTextL,
.contactTextW {
    color: rgb(0, 0, 0);
    font-family: "Merriweather", serif;
    width: 30vw;
    font-size: 0.9vw;
    padding: 1.03vw;
    margin-left: 6vw;
    margin-top: 1.3vw;
}

.contactTextI h2,
.contactTextE h2,
.contactTextL h2,
.contactTextW h2 {
    font-size: 1.7vw;
    margin-bottom: 0.85vw;
    font-family: "Merriweather", serif;
}

.contactTextI h2 {
    color: #d62976;
}

.contactTextE h2 {
    color: #00bcdd;
}

.contactTextL h2 {
    color: #1c7bd3;
}

.contactTextW h2 {
    color: #27c421c7;
}

/* instagram*/
.containerOne:hover {
    background-color: #d62976;
    transition-duration: 0.3s;
}

/* twitter*/
.containerTwo:hover {
    background-color: #00bcdd;
    transition-duration: 0.3s;
}

/* linkdin*/
.containerThree:hover {
    background-color: #0159ac;
    transition-duration: 0.3s;
}

/* Whatsapp*/
.containerFour:hover {
    background-color: #27c421c7;
    transition-duration: 0.3s;
}

.socialContainer:active {
    transform: scale(0.9);
    transition-duration: 0.3s;
}

.socialSvg {
    width: 1.8vw;
}

.socialSvg path {
    fill: rgb(255, 255, 255);
}

.socialContainer:hover .socialSvg {
    animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 900px) {
    .card {
        left: 9.7vw;
        position: relative;
        top: 18vw;
        flex-direction: column;
        border-radius: 5vw;
        margin-bottom: 20vw;
    }

    .socialContainer {
        width: 15vw;
        height: 15vw;
        border-radius: 50%;
        background-color: rgba(245, 235, 235, 0.788);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        transition-duration: 0.3s;
        position: relative;
        left: 32.5vw;
    }

    .containerOne {
        top: -1vw;
    }

    .containerTwo {
        top: -1vw;
    }

    .containerThree {
        top: -1vw;
    }

    .containerFour {
        top: -1vw;
    }

    .contactTextI,
    .contactTextE,
    .contactTextL,
    .contactTextW {
        width: 75vw;
        font-size: 3.5vw;
        padding: 0vw;
        margin-left: 3.6vw;
        margin-top: 0vw;
        margin-bottom: 15vw;
    }

    .contactTextI h2,
    .contactTextE h2,
    .contactTextL h2,
    .contactTextW h2 {
        font-size: 8vw;
        margin-bottom: 0vw;
    }

    .socialSvg {
        width: 7vw;
    }

    .socialSvg path {
        fill: rgb(0, 0, 0);
    }
}