* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: #1a1a1a;
    color: #333;
}

.flex {
    display: flex;
    width: 100%;
}

.container {
    width: 100%;
}

.padding {
    padding-left: 60px;
    margin-top: -30px;
}

/* Seção Hero/Principal */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 40px 80px;
    overflow: hidden;
}

.logo img {
    width: 130px;
    height: 26px;
}

/* Texto Hero */
.hero-text {
    position: absolute;
    left: 130px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 600px;
}

.hero-text .quote-icon {
    width: 56px;
    height: 96px;
    margin-bottom: 20px;
}

.hero-text .quote-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-text h1 {
    color: #dfdfdf;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
    margin-bottom: 16px;
}

.hero-text .hero-subtitle {
    color: #A1764C;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-size: 33px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
    margin-bottom: 16px;
}

.hero-text .hero-address {
    color: #dfdfdf;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-size: 38px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
}

/* Container do Formulário */
.form-container {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 50px 40px;
    border-radius: 4px;
    width: 420px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-section {
    position: relative;
}

.top-img {
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header {
    position: fixed;
    width: 100%;
    z-index: 9998;
    padding: 38px 0px;
    transition: all 0.6s ease;
}

/* Header scrolled effect */
header.scrolled {
    background: rgba(107, 84, 54, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0px !important;
}

header .logo img,
header .logo-horizonte img,
header a img {
    transition: all 0.6s ease;
}

header.scrolled .logo img {
    height: 16px !important;
    width: auto;
}

header.scrolled .logo-horizonte img {
    height: 28px !important;
    width: auto;
}

header.scrolled a img[alt="Menu"] {
    height: 24px !important;
    width: 24px !important;
}

/* Mouse follower */
.mouse-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #6B5436;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.6;
    transition: transform 0.15s ease-out;
    transform: translate(-50%, -50%);
}

/* Hero image parallax */
.hero-section .top-img {
    will-change: transform;
    transform: scale(1.2);
}

.justify-between {
    justify-content: space-between;
}

section .container, header .container, footer .container {
    max-width: 1484px;
    margin: 0 auto;
}

@media (max-width: 1370px) {
    section .container, header .container {
        max-width: 1340px;
        margin: 0 auto;
    }
}

.hover-img .thumbnail img {
    transition: all ease-in-out 300ms;
}

.thumbnail {
    overflow: hidden;
}

.hover-img:hover .thumbnail img {
    transform: scale(1.1);
}

.essential {
    padding: 130px 0px;
    background-color: white;
}

.essential h2 {
    max-width: 370px;
    font-family: "neue-haas-grotesk-display", sans-serif;
    color: #5C3F29;
    font-size: 45px;
    font-weight: 200 !important;
    margin-top: 24px;
    line-height: 1;
}

.title h2 {
    font-family: "neue-haas-grotesk-display", sans-serif;
    color: #5C3F29;
    font-size: 45px;
    font-weight: 200 !important;
    margin-top: 24px;
    line-height: 1;
}

.cards.epi h3 {
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 300;
    font-size: 45px;
    color: #5C3F29;
    margin-top: 15px;
}

.cards.epi a {
    max-width: 631px;
}

.cards.epi a img {
    aspect-ratio: 631 / 349;
    display: block;
}

.cards.epi p {
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
    color: #5C3F29;
}

.cards.epi span {
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    color: #5C3F29;
}


.cards a {
    text-decoration: none;
}

.mt-66 {
    margin-top: 66px;
}

.p-relative {
    position: relative;
}

.img-abs {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}

.mt-114 {
    margin-top: 114px;
}

.col {
    flex: 1;
}

.max-w-589 {
    max-width: 589px;
}

.context-p p + p {
    margin-top: 16px;
}

.context-p p {
    font-weight: 200;
    color: #5C3F29;
    font-size: 22px;
    line-height: 28px;
}

.gap-16 {
    gap: 16px;
}


@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(-50%) translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

/* Título do Formulário */
.form-title {
    color: #5C3F29;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 200;
    line-height: 40px;
    margin-bottom: 40px;
}

/* Formulário */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Grupos de Formulário */
.form-group {
    position: relative;
    margin-bottom: 12px;
}

.form-group input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #5C3F29;
    padding: 8px 0;
    color: #5C3F29;
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.22px;
    outline: none;
    background: transparent;
    transition: border-color 0.3s;
}

.form-group input::placeholder {
    color: #5C3F29;
    opacity: 1;
}

.form-group input:focus {
    border-bottom-color: #8B6F47;
}

/* Checkboxes */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
}

.checkbox-group input[type="checkbox"] {
    min-width: 18px;
    min-height: 18px;
    width: 18px;
    height: 18px;
    border: 1px solid #5C3F29;
    border-radius: 2px;
    cursor: pointer;
    margin-top: 2px;
    accent-color: #5C3F29;
}

.checkbox-group label {
    color: #5C3F29;
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.15px;
    cursor: pointer;
    user-select: none;
}

.checkbox-group .link {
    color: #5C3F29;
    text-decoration: underline;
}

.checkbox-group .link:hover {
    color: #8B6F47;
}

/* Botão Submit */
.btn-submit {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    background: #6B5436;
    color: #FFF;
    border: none;
    border-radius: 2px;
    text-align: center;
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 52px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 24px;
}

.btn-submit:hover {
    background: #8B6F47;
}

/* Botão WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 45px;
    right: 45px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #65492F;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s;
    z-index: 1000;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn img {
    width: 64px;
    height: 64px;
}

.episodes .container {
    position: relative;
    z-index: 2;
}

.episodes {
    padding: 124px 0px;
}

/* Responsividade */
@media (max-width: 1200px) {
    .form-container {
        right: 60px;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 40px 30px;
        margin-top: 90px;
    }

    .form-title {
        font-size: 28px;
        line-height: 32px;
    }

    .logo img {
        width: 100px;
        height: 20px;
    }
}

/* Modal WhatsApp */
.float_modal {
    position: fixed;
    bottom: 130px;
    right: 45px;
    z-index: 9999;
}

.float_modal .background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.float_modal.show .background {
    opacity: 1;
}

.float_modal_content {
    position: relative;
    background: white;
    border-radius: 8px;
    width: 400px;
    max-width: calc(100vw - 90px);
    padding: 0;
    z-index: 9999;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.float_modal.show .float_modal_content {
    opacity: 1;
    transform: translateY(0);
}

.float_modal_content::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
}

.float_modal_content .topo {
    background: #65492F;
    color: white;
    padding: 20px;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.float_modal_content .title {
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.float_modal_content .close {
    width: 24px;
    height: 24px;
    position: relative;
    cursor: pointer;
}

.float_modal_content .close::before,
.float_modal_content .close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
    top: 50%;
    left: 50%;
}

.float_modal_content .close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.float_modal_content .close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.float_modal_content .form {
    padding: 30px;
}

.float_modal_content .field {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.float_modal_content label {
    display: block;
    margin-bottom: 15px;
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    cursor: pointer;
}

.float_modal_content label input[type="checkbox"] {
    margin-right: 8px;
    vertical-align: middle;
}

.float_modal_content label a {
    color: #65492F;
    text-decoration: underline;
}

.float_modal_content .btn-primary {
    background: #65492F;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s;
}

.float_modal_content .btn-primary:hover {
    background: #8B6F47;
}

.float_modal_content .flex {
    display: flex;
}

.float_modal_content .justify-center {
    justify-content: center;
}

/* Loading Box */
.loading-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
}

.flex-box {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.gooey {
    position: relative;
    width: 200px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gooey .dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    animation: dot-move 2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.gooey .dots {
    display: flex;
    gap: 10px;
}

.gooey .dots span {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    opacity: 0.6;
}

@keyframes dot-move {
    0%, 100% {
        transform: translateX(-60px);
    }
    50% {
        transform: translateX(60px);
    }
}

/* Seção Plaenge - Layout do Figma */
.plaenge-section {
    padding: 160px 0px;
    background-color: white;
}

.plaenge-layout {
    display: grid;
    grid-template-columns: 1.2fr 2fr 1.3fr;
    gap: 60px;
    /* align-items: start; */
    margin: 0 auto;
}

/* Menu Lateral Esquerdo */
.menu-lateral {
    display: flex;
    flex-direction: column;
    padding-right: 20px;
    border-right: 1px solid #967650;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 2px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.menu-item .arrow {
    opacity: 0;
    transition: all ease-in-out 300ms;
}

.menu-item.active .arrow {
    opacity: 1;
}

.menu-item.active {
    color: #967650;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: 2.5%; /* 1.125px */
    text-underline-offset: auto;
    text-underline-position: from-font;

}

.menu-item.active .arrow {
    color: #967650;
    font-weight: bold;
    font-size: 45px;
}

.menu-item.active::after {
    display: none;
}

.menu-item:not(.active) {
    color: #999;
}

.menu-item:not(.active):hover {
    color: #666;
}


.menu-text {
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-size: 45px;
    font-style: normal;
    font-weight: 300;
    line-height: 48px;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: 2.5%;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-decoration: none;
}

.menu-item.active .menu-text {
    font-family: "Neue Haas Grotesk Display Pro", "neue-haas-grotesk-display", sans-serif;
    font-size: 45px;
    font-weight: 300;
    line-height: 48px;
}

/* Conteúdo Central */
.conteudo-central {
    padding: 0 20px;
}

.plaenge-title {
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-size: 22px;
    line-height: 28px; /* 127.273% */
    letter-spacing: 0.22px;
    color: #5C3F29;
    font-weight: 600;
}

.texto-conteudo p {
    margin-top: 5px;
    color: #5C3F29;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
    letter-spacing: 0.18px;
}

/* Foto Lateral Direita */
.foto-lateral {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
}

.foto-container {
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

img {
    display: block;
}

.foto-perfil {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.foto-info h3.nome {
    font-family: "neue-haas-grotesk-display", sans-serif;
    color: #5C3F29;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.18px;
}


.cargo {
    color: #5C3F29;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.18px;
}

/* Responsividade */
@media (max-width: 1024px) {
    .plaenge-layout {
        grid-template-columns: 1fr 2fr;
        gap: 40px;
    }

    .foto-lateral {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 30px;
        margin-top: 40px;
        padding-left: 0;
    }

    .foto-container {
        margin-bottom: 0px !important;
    }


}

@media (max-width: 768px) {
    .plaenge-section {
        padding: 80px 0px;
    }

    .hero-section {
        background-color: white;
    }

    .form-container {
        position: relative;
        width: calc(390px - 40px);
        max-width: calc(390px - 40px);
        transform: none;
        left: 0px;
        margin-top: -120px;
        margin-left: auto;
        margin-right: auto;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .top-img {
        position: relative;
        height: 80vh;
    }

    .plaenge-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-section .top-img {
        transform: scale(1);
    }

    .menu-lateral {
        border-right: none;
        display: flex;
        overflow: auto;
        flex-direction: row;
        width: calc(100% + 20px);
        gap: 24px;
    }

    .plaenge-section {
        padding: 40px 0px !important;
    }

    .menu-lateral > * {
        min-width: fit-content;
    }

    .menu-item.active .arrow {
        display: none !important;
    }

    .menu-text {
        font-size: 31px !important;
    }

    .menu-item.active::after {
        display: none;
    }

    .conteudo-central {
        padding: 0;
    }

    .plaenge-title {
        font-size: 18px;
    }

    .texto-conteudo p {
        font-size: 18px;
        line-height: 1.3 !important;
    }

    .foto-lateral {
        flex-direction: column;
        gap: 20px;
        margin-top: 0;
    }

    .foto-container {
        max-width: 100%;
        width: 100%;
        height: auto !important;
    }

    .nome {
        font-size: 18px;
    }

    .cargo {
        font-size: 18px;
    }

    .menu-item .arrow {
        display: none !important;
    }
}

/* Seção Apartamentos */
.apartamentos-section {
    padding: 25px 0px;
    background-color: #FAF5EB;
}

.apartamentos-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1349px;
}

/* Imagem dos Apartamentos */
.apartamentos-image {
    position: relative;
}

.image-container {
    max-width: 631px;
    height: auto;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}


.image-placeholder span {
    color: #5C3F29;
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-size: 18px;
    font-weight: 400;
    opacity: 0.7;
}

/* Conteúdo Textual */
.apartamentos-content {
    padding-top: 60px;
    position: relative;
    padding-left: 40px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
    padding-bottom: 32px;
}

.text-content {
    margin-top: 80px;
}

.apartamentos-title {
    font-family: "neue-haas-grotesk-display", sans-serif;
    color: #5C3F29;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
}

.svg-effect {
    transform: translateX(-13vw);
}

.apartamentos-subtitle {
    font-family: "neue-haas-grotesk-display", sans-serif;
    color: #5C3F29;
    font-size: 53px;
    font-weight: 300;
    line-height: 1.1;
    margin: 0;
}


.sofistication {
    position: relative;
    overflow: hidden;
}

.sofistication img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.8s ease-in-out;
}

.sofistication img.colorized {
    filter: grayscale(0%);
}

.galeria {
    padding: 160px 0px 78px 0px;
    background-color: white;
}

.flex-between {
    justify-content: space-between;
}

.galeria img {
    max-width: 631px;
    height: auto;
}

/* Owl Carousel Styles */
.owl-carousel {
    margin-top: 80px;
    position: relative;
}

.owl-carousel .item {
    position: relative;
    overflow: hidden;
}

.owl-carousel .owl-stage-outer {
    overflow: unset;
}

.owl-carousel .item img {
    aspect-ratio: 1434 / 794;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.owl-carousel .item img + p {
    color: #5C3F29;
    font-size: 22px;
    font-style: normal;
    font-weight: 200;
    letter-spacing: 0.22px;
    margin-top: 12px;
    opacity: 1;
}


.galeria {
    overflow: hidden;
}

/* Owl Carousel Dots */
.owl-dots {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 20px;
    justify-content: flex-end;
    margin-top: -35px;
}

.owl-loaded {
    display: flex !important;
    flex-direction: column;
}

.owl-loaded > div {
    order: 0;
}

.owl-loaded > div:nth-child(2) {
    order: 2;
}

.owl-loaded > div:nth-child(3) {
    order: 1;
}

.owl-theme .owl-nav {
    display: flex;
    align-items: center;
    gap: 78px;
    margin-top: -10px;
    justify-content: center;
}

.owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #967650 !important;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.owl-theme .owl-dots .owl-dot span {
    display: none;
}

.owl-dot:hover {
    background: #967650 !important;
}

.owl-dot.active {
    background: #967650 !important;
}

.mapa {
    padding: 165px 0px;
    background-color: #65492F;
}

.mapa .flex {
    gap: 55px;
}

.mapa .flex .col:first-child {
    flex: 1;
}

.mapa .flex .col:last-child {
    flex: 2;
}

.mapa h2 {
    position: relative;
}

.mapa h2 svg {
    min-width: fit-content;
    top: -26px;
    left: -52px;
    position: absolute;
}

img.effect {
    transition: all ease-in-out 1s !important;
    filter: grayscale(100%);
}

img.effect:hover {
    filter: grayscale(0%);
}

.mapa .flex-column {
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    display: flex;
    padding-top: 50px;
}

.mapa .flex-column span {
    color: #FFF;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 127.273% */
    letter-spacing: 0.22px;
}

.mapa p {
    color: #FFF;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 127.273% */
    letter-spacing: 0.22px;
    margin-top: 42px;
}

.mapa h2 {
    gap: 16px !important;
    font-family: "neue-haas-grotesk-display", sans-serif;
    color: #FFF;
    font-size: 40px;
    font-style: normal;
    max-width: 380px;
    font-weight: 200 !important;
    line-height: 40px; /* 88.889% */
}

.mapa .flex .col:last-child img {
    max-width: 100%;
    height: auto;
}

footer {
    padding: 32px 0px;
    background-color: #65492F;
}

footer .flex.logo {
    gap: 22px;
    align-items: flex-end;
}

footer .flex.logo svg {
    min-width: fit-content;
}

.flex-menu {
    justify-content: space-between;
    margin-top: 179px;
    align-items: center;
}

.menu {
    display: flex;
    gap: 65px;
}

.menu h2 {
    color: #FFF;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 24px;
}

.menu li, .menu ul {
    list-style: none;
}

.menu .col {
    flex: unset;
    min-width: fit-content;
}

.menu li a {
    color: #FFF;
    text-decoration: none;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-size: 19.353px;
    font-style: normal;
    font-weight: 400;
    line-height: 26.391px;
    letter-spacing: 0.194px;
}

.social-media {
    gap: 13px;
    max-width: 200px;
}


footer .flex.logo span {
    height: 1px;
    width: 100%;
    background-color: white;
}

.banner_form .flex {

    padding: 23px 0px;
    justify-content: flex-end;
}

.banner_form {
    position: relative;
}

.banner_form img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
}

.banner_form .form-container {
    position: relative;
    top: 0;
    left: 0;
    transform: unset !important;
}


/* Responsividade do Owl Carousel */
@media (max-width: 1024px) {

}

@media (max-width: 768px) {

}

@media (max-width: 480px) {

}

.sofistication .abs {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    padding-top: 217px;
    padding-left: 36px;
}

.sofistication {
    position: relative;
}

.sofistication h2 {
    color: #FFF;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-size: 45px;
    font-style: normal;
    max-width: 370px;
    font-weight: 200;
    line-height: 40px; /* 88.889% */
}

/* Menu Lateral */
.sidebar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #65492ff8;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.sidebar-menu.active {
    right: 0;
}

.sidebar-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 60px;
    max-width: 1484px;
    margin: 0 auto;
}

/* Header do Menu */
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

/* Logo Plaenge Branco */
.sidebar-logo img {
    width: 130px;
    height: 26px;
}

.sidebar-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease;
    width: 26px;
    height: 26px;
}

.sidebar-close:hover {
    transform: scale(1.1);
}

.sidebar-close svg {
    width: 26px;
    height: 26px;
}

/* Conteúdo Principal */
.sidebar-main {
    display: flex;
    flex: 1;
    align-items: flex-start;
    justify-content: space-between;
}

.sidebar-decoration {
    opacity: 1;
    flex-shrink: 0;
}

.sidebar-decoration svg {
    width: 217px;
    height: 372px;
    min-width: fit-content;
    min-height: fit-content;
}

.sidebar-nav {
    text-align: left;
    flex: 1;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    margin-bottom: 0;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInFromRight 0.6s ease forwards;
    position: relative;
    padding: 0;
}

.sidebar-links li:nth-child(1) {
    animation-delay: 0.1s;
}

.sidebar-links li:nth-child(2) {
    animation-delay: 0.2s;
}

.sidebar-links li:nth-child(3) {
    animation-delay: 0.3s;
}

.sidebar-links li:nth-child(4) {
    animation-delay: 0.4s;
}

.sidebar-links li:nth-child(5) {
    animation-delay: 0.5s;
}

.sidebar-links li:nth-child(6) {
    animation-delay: 0.6s;
}

.sidebar-links a {
    color: #FFF;
    font-family: "Neue Haas Grotesk Display Pro", "neue-haas-grotesk-display", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 450;
    line-height: 31px;
    letter-spacing: 0.18px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    padding: 16px 0 2px 20px;
    margin: 0;
    border-bottom: 1px solid rgb(255, 255, 255);
    cursor: pointer;
}


.sidebar-links a:hover {
    transform: translateX(10px);
    color: rgba(255, 255, 255, 0.8);
}

.sidebar-links a:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 4px;
}

.sidebar-links a.active {
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    border-bottom-color: rgba(255, 255, 255, 0.6);
}

.sidebar-links a::before {
    content: '';
    position: absolute;
    left: 0px;
    bottom: -2px;
    transform: translateY(-50%);
    width: 1px;
    height: 4px;
    background: #FFF;
    border-radius: 2px;
}

@keyframes slideInFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Overlay para fechar o menu */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #65492F;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* Responsividade do Owl Carousel */
@media (max-width: 1625px) {
    .container {
        max-width: 1260px !important;
    }

    .cards.epi a img {
        max-width: 555px !important;
        height: auto;
    }

    .menu-toggle img {
        max-width: 30px;
    }

    header .logo img {
        max-height: 18px;
    }

    .btn-submit {
        font-size: 15px;
        height: auto;
        padding: 0px;
        min-height: auto;
        line-height: 43px;

    }

    .galeria img {
        max-width: 555px;
    }

    .logo-horizonte img {
        max-width: 350px;
    }

    .checkbox-group label {
        font-size: 12px;
    }

    .form-container {
        padding: 36px 26px;
    }

    .form-container {
        max-width: 390px;
    }

    .form-title {
        font-size: 28px;
        line-height: normal;
        margin-bottom: 16px;
    }

    .form-group input {
        font-size: 16px;
    }
}

/* Responsividade do Menu Lateral */
@media (max-width: 768px) {
    .sidebar-content {
        padding: 40px 20px;
    }

    .sidebar-header {
        margin-bottom: 40px;
    }

    .sidebar-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .sidebar-decoration {
        display: none;
    }

    .sidebar-links a {
        font-size: 16px;
        line-height: 28px;
    }

    .sidebar-links li {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {

    .cards.epi h3 {
        font-size: 31px !important;
    }

    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 0;
        padding-bottom: 60px;
    }

    .sidebar-nav {
        width: 100%;
    }

    .cards.epi p {
        font-size: 18px;
        line-height: normal;
    }

    .logo-sup {
        max-width: 70px;
        margin: 0 auto;
        display: block;
    }

    .episodes {
        padding: 40px 0px;
    }

    .cards.epi a img {
        max-width: 100% !important;
        height: auto;
    }

    .mt-66 {
        margin-top: 30px;
        gap: 30px;
    }


    .mt-114 {
        margin-top: 40px;
    }

    .title img {
        max-width: 23px;
        height: auto;
    }

    .title h2 {
        font-size: 31px;
        margin-top: 0px;
    }

    .title {
        margin-bottom: 16px;
    }

    .context-p p {
        font-size: 18px;
        line-height: normal;
    }

    .title h2 br {
        display: none;
    }

    .hero-text {
        position: static;
        transform: none;
        margin: 100px auto 40px;
        padding: 0 20px;
        max-width: 100%;
    }

    .essential {
        padding: 40px 0px;
    }

    .hero-text .quote-icon {
        width: 40px;
        height: 68px;
        margin-bottom: 12px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text .hero-subtitle {
        font-size: 28px;
    }

    .hero-text .hero-subtitle br {
        display: none;
    }

    .hero-text .hero-address {
        font-size: 26px;
    }

    .relative {
        position: relative;
    }

    footer .flex.logo {
        flex-direction: row-reverse;
    }

    .relative .mobile-logo {
        display: flex;
        justify-content: center;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        align-items: center;
        padding: 20px;
    }

    .relative .mobile-logo img {
        max-width: 100%;
    }

    .whatsapp-btn {
        bottom: 40px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-btn img {
        width: 56px;
        height: 56px;
    }

    .float_modal {
        bottom: 110px;
        right: 20px;
    }

    .float_modal_content {
        width: calc(100vw - 40px);
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .sidebar-content {
        padding: 30px 15px;
    }

    .sidebar-header {
        margin-bottom: 30px;
    }

    .sidebar-main {
        gap: 15px;
    }

    .sidebar-links a {
        font-size: 14px;
        line-height: 24px;
    }

    .sidebar-links li {
        margin-bottom: 15px;
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .apartamentos-layout {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }

    .apartamentos-title {
        text-align: left;
    }



    .apartamentos-image {
        order: 2;
    }

    .text-content {
        margin-top: 0px !important;
    }

    .image-container {
        width: 100%;
        max-width: 631px;
        margin: 0 auto;
    }

    .galeria img {
        max-width: 100%;
    }

    .apartamentos-content svg {
        max-width: 100%;
        height: auto;
    }

    .decorative-elements {
        position: relative;
        width: 100%;
        height: 200px;
        margin-top: 40px;
    }

    .image-container img {
        max-width: 100%;
        height: auto;
    }

    .mapa .flex {
        flex-direction: column;
    }

    header, header.scrolled {
        padding: 12px 0px !important;
    }
}

@media (max-width: 768px) {

    .essential .flex, .episodes .flex, .flex-menu, .menu, .galeria .flex {
        flex-direction: column;
    }

    .owl-dots {
        display: flex;
        justify-content: flex-start !important;
        position: relative;
        z-index: 6;
    }

    .owl-dot {
        width: 10px;
        height: 10px;
        margin-top: 20px;
    }

    .mapa h2 svg {
        max-width: 23px !important;
    }

    .mapa h2 {
        font-size: 31px !important;
        line-height: normal !important
    }

    .mapa p, .mapa .flex-column span {
        font-size: 18px;
        margin-top: 20px;
    }


    .mapa .flex-column span {
        margin-top: 20px !important;
    }

    .flex-menu {
        margin-top: 60px !important;
        gap: 30px !important;
    }
    .mapa .flex-column {
        padding: 0px !important;
        gap: 20px;
    }

    .social-media {
        order: 2;
    }

    .menu {
        order: 1;
        width: 100%;
        gap: 40px !important
    }

    .mapa h2 svg {
        position: inherit !important;
        top: 0px;
        left: 0px;
    }

    .menu .col {
        gap: 16px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .banner_form  .form-container {
        margin-top: 0px !important;
    }

    .mapa {
        padding: 30px 0px !important;
    }

    .galeria {
        padding-bottom: 80px !important;
    }

    .owl-theme .owl-nav {
        position: absolute;
        bottom: -20px;
        right: 20px;
        gap: 57px !important;
        z-index: 6;
    }

    .sofistication h2 {
        font-size: 31px;
        font-style: normal;
        font-weight: 200 !important;
        line-height: 28px;
        padding: 30px 0px;
        max-width: 262px;
        color: #5C3F29 !important;
    }

    .galeria {
        padding: 30px 0px 50px 0px!important;
    }

    .owl-carousel {
        position: relative;
        left: -20px;
        width: calc(100% + 40px);
        margin-top: 30px;
    }

    .galeria .flex {
        gap: 30px !important;
    }

    .sofistication {
        flex-direction: column-reverse;
        display: flex;
        background-color: white !important;
    }
    .sofistication .abs {
        padding: 0px !important;
        position: inherit !important;
    }

    .apartamentos-subtitle {
        text-align: left;
    }

    .apartamentos-content {
        display: flex;
        flex-direction: row;
    }

    .apartamentos-content, .apartamentos-subtitle {
        padding: 0px !important;
    }

    .logo-horizonte {
        display: none;
    }

    .apartamentos-section {
        padding: 30px 0px !important;
    }

    .apartamentos-title {
        font-size: 18px !important;
    }

    .apartamentos-subtitle {
        font-size: 48px;
    }

    .apartamentos-content svg {
        transform: translateX(0px) !important;
        max-width: 71px;
    }

    .apartamentos-subtitle {
        font-size: 41px !important
    }

    .vector-1 {
        width: 100px;
        height: 100px;
    }

    .vector-2 {
        width: 80px;
        height: 100px;
    }

    .vector-3 {
        width: 25px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .apartamentos-section {
        padding: 60px 0px;
    }

    .apartamentos-title {
        font-size: 28px;
    }

    .apartamentos-subtitle {
        font-size: 36px;
    }

    .vector-1,
    .vector-2,
    .vector-3 {
        margin: 0 5px;
    }


    .vector-1 {
        width: 80px;
        height: 80px;
    }

    .vector-2 {
        width: 60px;
        height: 80px;
    }

    .vector-3 {
        width: 20px;
        height: 30px;
    }

    .owl-carousel .item img + p {
        text-align: center;
    }

    .owl-stage-outer {
        margin-bottom: 40px;
    }
}

