@charset "UTF-8";

/*
 * ÍNDICE
 *
 * 01. Root / Tokens
 * 02. Reset
 * 03. Globais & Utilitários
 *   03.01 Layout Base (Container / Loader / Espaçamentos)
 * 04. Componentes
 *   04.01 Botões
 *   04.02 Títulos & Kickers de Seção
 *   04.03 CTA Mobile
 *   04.04 WhatsApp Flutuante
 *   04.05 Modal de Contato
 *   04.06 LGPD
 *   04.07 Formulários
 * 05. Seções
 *   05.00 Espaçamentos Base das Seções
 *   05.01 Hero
 *   05.02 Sobre
 *   05.03 Galeria + Destaques
 *   05.04 Ambientes
 *   05.05 Experiências
 *   05.06 Região
 *   05.07 Depoimentos
 *   05.08 Como Chegar
 *   05.09 Mídia
 *   05.10 Idealizadores
 *   05.11 História
 *   05.12 Cross-Section (títulos, kickers, tipografia responsiva)
 *   05.13 Contato
 *   05.14 Footer
 *
 * BREAKPOINTS
 *   1919px — Ultra-wide → desktop
 *   1559px — Desktop XL (componentes)
 *   1399px — Desktop → tablet grande
 *   1319px — Desktop layout (componentes)
 *   1199px — Tablet grande
 *   1023px — Tablet (componentes)
 *   991px  — Tablet
 *   767px  — Mobile landscape
 *   575px  — Mobile portrait
 *
 */

/* ==========================================================================
   01. ROOT / TOKENS
   ========================================================================== */
:root {
    /* 01.01 Cores */
    --color-primary: #111111;
    --color-secondary: #555555;
    --color-text-muted: #606060;
    --color-text-light: #999999;
    --color-text-soft: rgba(17, 17, 17, 0.7);
    --color-text-faded: rgba(17, 17, 17, 0.55);
    --color-text-faint: rgba(17, 17, 17, 0.35);
    --color-white: #ffffff;
    --color-accent: #b28f4e;
    --color-accent-dark: #8d6d33;
    --color-danger: #fb0707;
    --color-border: rgba(17, 17, 17, 0.1);
    --color-border-subtle: rgba(17, 17, 17, 0.08);
    --color-border-medium: rgba(17, 17, 17, 0.12);
    --color-border-input: rgba(17, 17, 17, 0.16);
    --color-border-strong: rgba(17, 17, 17, 0.2);
    --color-border-emphasis: rgba(17, 17, 17, 0.3);
    --color-border-contrast: rgba(17, 17, 17, 0.35);
    --color-border-light: #e1e1e1;
    --color-border-neutral: #dadada;
    --color-border-soft: #e7e7e7;
    --color-border-inverse: rgba(255, 255, 255, 0.7);
    --color-surface-soft: #f9f9f9;
    --color-surface-subtle: #f4f4f4;
    --color-surface-muted: #d8d4cb;
    --color-overlay-subtle: rgba(17, 17, 17, 0.08);
    --color-overlay-medium: rgba(17, 17, 17, 0.18);
    --color-overlay-hero: rgba(0, 0, 0, 0.25);
    --color-shadow-strong: rgba(0, 0, 0, 0.71);
    --color-shadow-medium: rgba(0, 0, 0, 0.31);
    --color-scrollbar-track: #d6d6d6;
    --color-scrollbar-thumb: #888;
    --color-whatsapp: #028916;
    /* 01.02 Tipografia */
    --font-family-base: "Bricolage Grotesque", sans-serif;
    /* 01.03 Botões */
    --btn-section-padding: 15px 28.3px;
    /* 01.04 Animações */
    --transition-base: all 0.3s ease-in-out;
}

/* ==========================================================================
   02. RESET
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ==========================================================================
   03. GLOBAIS E UTILITÁRIOS
   ========================================================================== */
body {
    font-family: var(--font-family-base);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.48px;
    color: var(--color-secondary);
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3 {
    padding: 0;
    margin: 0;
    color: var(--color-primary);
    line-height: 1.22;
    font-family: var(--font-family-base);
    font-weight: 500;
}

ul {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    transition: all 0.3s;
    color: inherit;
}

a:hover {
    color: var(--color-primary);
}

button {
    background-color: transparent;
    border: 0;
}

input,
textarea,
select,
button {
    font: inherit;
}

p {
    padding: 0;
    margin: 0;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1.44;
}

video,
iframe,
img {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    display: block;
}

@media (max-width: 767px) {
    br {
        display: none;
    }
}

main {
    display: inline-block;
    width: 100%;
    overflow: hidden;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 32px;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--color-scrollbar-track);
}

::-webkit-scrollbar-thumb {
    background: var(--color-scrollbar-thumb);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary);
}

.u-relative {
    position: relative;
}

.u-overflow-hidden {
    overflow: hidden;
}

hr {
    margin: 0;
    border-top: 1px solid var(--color-border);
    opacity: 1;
}

.section-spacing-130 {
    padding-top: 130px;
    padding-bottom: 130px;
}

@media (max-width: 1919px) {
    .section-spacing-130 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (max-width: 1399px) {
    .section-spacing-130 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .section-spacing-130 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.section-spacing-140 {
    padding-top: 140px;
    padding-bottom: 140px;
}

@media (max-width: 1919px) {
    .section-spacing-140 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (max-width: 1399px) {
    .section-spacing-140 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .section-spacing-140 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.section-spacing-bottom-130 {
    padding-bottom: 130px;
}

@media (max-width: 1399px) {
    .section-spacing-bottom-130 {
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .section-spacing-bottom-130 {
        padding-bottom: 60px;
    }
}

/* ==========================================================================
   03.01 Layout Base (Container, Espaçamentos e Utilitários)
   ========================================================================== */
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

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

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

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

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

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

.container-xxl {
    width: 100%;
    max-width: 1820px;
}

.container-xl {
    width: 100%;
    max-width: 1790px;
}

.hover-image canvas {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

section {
    margin-bottom: -1px;
}

.no-page-loader .loader-wrap {
    display: none !important;
}

.loader-wrap {
    position: fixed;
    z-index: 10;
    height: 100vh;
    width: 100vw;
    left: 0;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--color-primary);
    z-index: 99999999999999;
}

.loader-wrap svg {
    position: absolute;
    top: 0;
    width: 100vw;
    height: 110vh;
    fill: var(--color-primary);
}

.loader-wrap .loader-wrap-heading .loader-logo {
    opacity: 0;
    transform: translateY(14px);
    z-index: 20;
    will-change: transform, opacity;
}

.loader-wrap .loader-wrap-heading .loader-logo img {
    width: clamp(170px, 16vw, 250px);
    height: auto;
    display: block;
}

@media (max-width: 767px) {
    .loader-wrap .loader-wrap-heading .loader-logo img {
        width: clamp(150px, 38vw, 200px);
    }
}

/* ==========================================================================
   04. COMPONENTES
   ========================================================================== */

/* --------------------------------------------------------------------------
   04.01 Botões
   -------------------------------------------------------------------------- */
.btn {
    gap: 6px;
    display: inline-flex;
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
    padding: 26px 35px;
    color: var(--color-primary);
    align-items: center;
    border-radius: 500px;
    justify-content: center;
    text-transform: uppercase;
    border: 1px solid var(--color-border);
    transition: background 0.3s ease;
    cursor: pointer;
    background: var(--color-white);
}

.btn .text {
    z-index: 1;
    position: relative;
    display: inline-flex;
    transition: all 0.2s;
}

.btn .text span {
    opacity: 1;
    min-width: 4px;
    transition: none;
    color: var(--color-primary);
    font-weight: 500;
    display: inline-block;
    letter-spacing: -0.39px;
    transform: translateX(0) scale(1);
}

.btn .icon-arrow {
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.3s;
}

.icon-arrow svg {
    width: 100%;
    height: 100%;
    display: block;
}

.icon-arrow path {
    fill: currentColor;
}

.btn:hover {
    background: var(--color-primary);
}

.btn:hover .text span {
    opacity: 0;
    transition: none;
    transform: translateX(-10px) scale(1.2);
}

.btn:hover .text span.animate {
    opacity: 1;
    color: var(--color-white);
    transform: translateX(0) scale(1);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        color 0.2s ease;
}

.btn:hover .icon-arrow {
    opacity: 0;
    color: var(--color-white);
    transform: translateX(100%);
}

.btn.btn-dark {
    padding: 13.5px 20px;
    border-radius: 0;
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.btn.btn-dark:hover,
.btn.btn-dark:focus {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.btn.btn-dark .text span {
    color: var(--color-white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.btn.btn-dark .icon-arrow {
    color: var(--color-white);
}

.btn.btn-dark-alt {
    padding: 15px 34px;
    border-radius: 0;
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.btn.btn-dark-alt:hover,
.btn.btn-dark-alt:focus {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.btn.btn-dark-alt .text span {
    color: var(--color-white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.btn.btn-dark-alt .icon-arrow {
    color: var(--color-white);
}

.btn.has-icon:hover .text {
    transform: translateX(10px);
}

.btn.btn--section {
    max-width: 100%;
    padding: var(--btn-section-padding);
}

.btn.btn--section .text span {
    text-transform: inherit;
}

/* --------------------------------------------------------------------------
   04.02 Títulos e Kicker de Seção
   -------------------------------------------------------------------------- */
.section-title-4__wrapper {
    margin-bottom: 67px;
}

.section-title-4__wrapper .sub-title {
    font-size: 14px;
    font-weight: 500;
    padding: 2px 15px;
    line-height: 24px;
    margin-bottom: 20px;
    border-radius: 500px;
    display: inline-block;
    color: var(--color-primary);
    letter-spacing: 0.84px;
    text-transform: uppercase;
    border: 1.2px solid var(--color-border);
}

.section-title-4__wrapper .title {
    font-size: 50px;
    font-weight: 500;
    line-height: 56px;
    color: var(--color-primary);
    letter-spacing: -1.5px;
}

.section-title-4__wrapper .title span {
    font-family: var(--font-family-base);
}

.section-title-6__wrapper .title {
    font-size: 50px;
    font-weight: 500;
    line-height: 52px;
    letter-spacing: -2.5px;
}

.section-title-6__wrapper .title span {
    font-weight: 400;
    font-family: var(--font-family-base);
}

.section-title-6__wrapper .sub-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 15px;
    color: var(--color-primary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: var(--font-family-base);
}

.section-kicker--line {
    gap: 10px;
    display: inline-flex;
    align-items: center;
}

.section-kicker--line::before {
    content: "";
    width: 40px;
    height: 1px;
    flex: 0 0 40px;
    background: var(--color-primary);
}

.section-title-4__wrapper .sub-title.section-kicker--line {
    padding: 0;
    border: 0;
    border-radius: 0;
    margin-bottom: 15px;
    letter-spacing: 0.06em;
    display: inline-flex;
}

.section-title-7__wrapper .sub-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: var(--color-primary);
    letter-spacing: 0.84px;
    text-transform: uppercase;
}

.section-title-7__wrapper .title {
    font-size: 50px;
    font-weight: 500;
    line-height: 50px;
    letter-spacing: -2.5px;
}

.section-title-7__wrapper .title span {
    font-weight: 400;
    font-family: var(--font-family-base);
}

/* --- Responsivo --- */
@media (max-width: 1399px) {
    .section-title-6__wrapper .title {
        font-size: 35px;
        line-height: 45px;
    }
}

@media (max-width: 1199px) {
    .section-title-4__wrapper .title {
        font-size: 45px;
        line-height: 50px;
    }

    .section-title-6__wrapper .title {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .section-title-4__wrapper {
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .section-title-4__wrapper .title {
        font-size: 30px;
        line-height: 35px;
        letter-spacing: -1px;
    }

    .section-title-7__wrapper .title {
        font-size: 37px;
        line-height: 40px;
        letter-spacing: -1.5px;
    }
}

/* --------------------------------------------------------------------------
   04.02.A Tipografia de Conteúdo Reutilizável
   -------------------------------------------------------------------------- */
.item-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.48px;
    color: var(--color-primary);
}

.item-copy {
    color: var(--color-secondary);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.48px;
}

/* --------------------------------------------------------------------------
   04.03 CTA Mobile / Reposicionamento de Botões
   -------------------------------------------------------------------------- */
.mobile-btn-wrap {
    display: none;
}

@media (max-width: 575px) {

    [data-mobile-position],
    [data-mobile-position-wrapper] {
        display: none !important;
    }

    .mobile-btn-wrap {
        display: flex;
        justify-content: center;
        padding: 0 15px;
        margin-top: 30px;
    }

    .mobile-btn-wrap .btn {
        border-radius: 0;
    }

    .mobile-btn-wrap .btn .text span {
        text-transform: inherit;
    }

    .experiences .mobile-btn-wrap .btn,
    .experiences .mobile-btn-wrap .btn .text span,
    .experiences .mobile-btn-wrap .btn .icon-arrow {
        color: var(--color-white);
    }
}

/* --------------------------------------------------------------------------
   04.04 Botão Flutuante de WhatsApp
   -------------------------------------------------------------------------- */
.fixed-whatsapp_area {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 998;
}

.fixed-whatsapp {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 72px;
    height: 72px;
    background-color: var(--color-whatsapp);
    fill: var(--color-white);
    border: 2px solid var(--color-whatsapp);
    border-radius: 100%;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition: 0.5s ease;
}

.fixed-whatsapp::before,
.fixed-whatsapp::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--color-whatsapp);
    opacity: 0.5;
    transform: scale(1);
    z-index: -1;
}

.fixed-whatsapp.anim::before {
    animation: wppPulse 2.5s infinite;
}

.fixed-whatsapp.anim::after {
    animation: wppPulse 2.5s infinite 0.6s;
}

.fixed-whatsapp_icon {
    position: relative;
    top: -2px;
    width: 36px;
}

.anim .fixed-whatsapp_icon {
    animation: wppShake 1.5s infinite;
}

.fixed-whatsapp_badge {
    position: absolute;
    top: 3px;
    right: 2px;
    width: 14px;
    height: 14px;
    background-color: var(--color-danger);
    border-radius: 50%;
    animation: wppGrow 0.4s ease-out;
}

@keyframes wppPulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    70% {
        transform: scale(1.8);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes wppShake {

    0%,
    100% {
        transform: rotate(0deg) translateX(0);
    }

    25% {
        transform: rotate(-3deg) translateX(-1px);
    }

    50% {
        transform: rotate(3deg) translateX(1px);
    }

    75% {
        transform: rotate(-2deg) translateX(-1px);
    }
}

@keyframes wppGrow {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Hover-only: min-width para excluir touch devices */
@media (min-width: 1024px) {
    .fixed-whatsapp:hover {
        background-color: var(--color-white);
        fill: var(--color-whatsapp);
    }
}

@media (max-width: 1559px) {
    .fixed-whatsapp_area {
        bottom: 16px;
        right: 16px;
    }

    .fixed-whatsapp {
        width: 64px;
        height: 64px;
    }

    .fixed-whatsapp_icon {
        width: 32px;
    }

    .fixed-whatsapp_badge {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 1023px) {
    .fixed-whatsapp_area {
        bottom: 12px;
        right: 12px;
    }

    .fixed-whatsapp {
        width: 50px;
        height: 50px;
    }

    .fixed-whatsapp_icon {
        top: -1px;
        width: 26px;
    }

    .fixed-whatsapp_badge {
        top: 2px;
        right: 1px;
        width: 10px;
        height: 10px;
    }
}

/* --------------------------------------------------------------------------
   04.05 Modal de Contato
   -------------------------------------------------------------------------- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    text-align: center;
    overflow: auto;
    z-index: 999;
}

html.modal-open,
body.modal-open {
    overflow: hidden;
}

.modal::before {
    content: "";
    box-sizing: border-box;
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin: 0 -0.05em 0 0;
}

.modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    opacity: 0.8;
}

.modal_holder {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 580px;
    vertical-align: middle;
    text-align: left;
    overflow: hidden;
    padding: 32px 0;
}

.modal_box {
    overflow: hidden;
    border-radius: 8px;
}

.modal_header {
    display: flex;
    background-color: var(--color-whatsapp);
    padding: 24px 36px;
}

.modal_header-icon {
    width: 50px;
    fill: var(--color-white);
    margin: 0 18px 0 0;
}

.modal_header-title-area {
    width: calc(100% - 50px - 18px - 22px - 18px);
}

.modal_header-title {
    color: var(--color-white);
    font-size: 23px;
    font-weight: 500;
    line-height: 1.16;
    margin: 0 0 6px;
}

.modal_header-description {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.16;
}

.modal_close {
    cursor: pointer;
    position: relative;
    background-color: transparent;
    border: none;
    width: 22px;
    height: 22px;
    margin: 0 0 0 18px;
    opacity: 0.4;
    transition: 0.5s ease;
}

.modal_close:before,
.modal_close:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
}

.modal_close:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal_close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.modal_body {
    background-color: var(--color-white);
    padding: 36px;
}

@media (max-width: 1559px) {
    .modal_holder {
        max-width: 480px;
    }

    .modal_header {
        padding: 20px 26px;
    }

    .modal_header-icon {
        width: 36px;
        margin: 0 14px 0 0;
    }

    .modal_header-title-area {
        width: calc(100% - 36px - 14px - 16px - 14px);
    }

    .modal_header-title {
        font-size: 18px;
        margin: 0 0 4px;
    }

    .modal_header-description {
        font-size: 12.7px;
    }

    .modal_close {
        width: 16px;
        height: 16px;
        margin: 0 0 0 14px;
    }

    .modal_body {
        padding: 26px;
    }
}

@media (max-width: 767px) {
    .modal_holder {
        max-width: 420px;
    }

    .modal_header {
        padding: 18px 24px;
    }

    .modal_body {
        padding: 24px;
    }
}

@media (max-width: 449px) {
    .modal_holder {
        max-width: 95%;
    }

    .modal_header {
        padding: 16px 5.5vw;
    }

    .modal_header-icon {
        width: 8vw;
        margin: 0 3vw 0 0;
    }

    .modal_header-title-area {
        width: calc(100% - 8vw - 3vw - 4vw - 3vw);
    }

    .modal_header-title {
        font-size: 4vw;
    }

    .modal_header-description {
        font-size: 2.8vw;
    }

    .modal_close {
        width: 4vw;
        height: 4vw;
        margin: 0 0 0 3vw;
    }

    .modal_body {
        padding: 5.5vw;
    }
}

/* --------------------------------------------------------------------------
   04.06 Aviso LGPD
   -------------------------------------------------------------------------- */
.warning {
    position: fixed;
    left: 0;
    bottom: 16px;
    right: 0;
    margin: 0 auto;
    z-index: 997;
}

.warning-wrapper {
    background-color: var(--color-white);
    border: 1px solid var(--color-border-strong);
    border-radius: 8px;
    padding: 10px 14px;
}

.warning_box {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    text-align: left;
}

.warning_text {
    font-size: 13px;
    line-height: 1.4;
}

.warning_link {
    color: var(--color-primary);
    font-weight: 600;
    transition: 0.5s ease;
}

.warning_button {
    display: block;
    width: 100%;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    padding: 8px 32px;
    transition: 0.5s ease;
}

.warning_text-area {
    width: 92%;
}

.warning_button-area {
    width: 8%;
}

.modal_header-title,
.modal_header-description,
.modal_body,
.warning_text,
.warning_link,
.warning_button {
    font-family: var(--font-family-base);
}

.modal_box {
    border-radius: 0;
}

.modal_header {
    align-items: center;
}

.modal_header-icon-area {
    flex-shrink: 0;
}

.modal_header-title {
    letter-spacing: -0.015em;
}

.modal_header-description {
    opacity: 0.85;
}

.modal_close:hover {
    opacity: 1;
}

.flatpickr-calendar.airbnbTheme .flatpickr-day.today:not(.selected):not(.startRange):not(.endRange) {
    border-color: transparent !important;
}

.flatpickr-calendar.airbnbTheme .flatpickr-day.selected,
.flatpickr-calendar.airbnbTheme .flatpickr-day.startRange,
.flatpickr-calendar.airbnbTheme .flatpickr-day.endRange,
.flatpickr-calendar.airbnbTheme .flatpickr-day.selected:hover,
.flatpickr-calendar.airbnbTheme .flatpickr-day.startRange:hover,
.flatpickr-calendar.airbnbTheme .flatpickr-day.endRange:hover,
.flatpickr-calendar.airbnbTheme .flatpickr-day.selected:focus,
.flatpickr-calendar.airbnbTheme .flatpickr-day.startRange:focus,
.flatpickr-calendar.airbnbTheme .flatpickr-day.endRange:focus {
    color: var(--color-white) !important;
    border-color: var(--color-primary) !important;
    background: var(--color-primary) !important;
}

.flatpickr-calendar {
    border-radius: 0 !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
    border-color: var(--color-primary) !important;
}

span.flatpickr-day.today:not(.selected),
span.flatpickr-day.prevMonthDay.today:not(.selected),
span.flatpickr-day.nextMonthDay.today:not(.selected) {
    border-bottom-color: var(--color-primary) !important;
}

.warning-wrapper {
    border-radius: 0;
    border-color: var(--color-border);
}

.warning_button {
    border: none;
    border-radius: 0;
    cursor: pointer;
    letter-spacing: 0.05em;
    padding: 8px 20px;
    white-space: nowrap;
}

/* Hover-only: min-width para excluir touch devices */
@media (min-width: 1024px) {

    .warning_link:hover,
    .warning_button:hover {
        opacity: 0.64;
    }
}

@media (max-width: 1559px) {

    .warning_text,
    .warning_button {
        font-size: 12px;
    }
}

@media (max-width: 1319px) {
    .warning_box {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .warning-wrapper {
        padding: 12px;
    }

    .warning_text-area {
        width: auto;
    }

    .warning_button-area {
        width: auto;
    }
}

@media (max-width: 767px) {
    .warning_box {
        gap: 8px;
    }

    .warning_text,
    .warning_button {
        font-size: 11px;
    }
}

/* --------------------------------------------------------------------------
   04.07 Campos e Estados de Formulário
   -------------------------------------------------------------------------- */
.form {
    width: 100%;
}

.form_field-area {
    position: relative;
    margin-bottom: 18px;
}

.form_field-area:last-child {
    margin-bottom: 0;
}

.form_field-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
    align-items: start;
}

.form_field {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-border-emphasis);
    border-radius: 0;
    padding: 20px 0 8px 28px;
    font-family: var(--font-family-base);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-primary);
    line-height: 1.4;
    outline: none;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form_field::placeholder {
    color: transparent;
}

.form_field:focus {
    border-bottom-color: var(--color-primary);
}

.form_field.valid {
    border-bottom-color: var(--color-border-emphasis);
}

.form_label {
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-family-base);
    font-size: 13px;
    font-weight: 400;
    color: var(--color-text-faded);
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 28px);
    transition:
        top 0.22s ease,
        transform 0.22s ease,
        font-size 0.22s ease,
        letter-spacing 0.22s ease,
        color 0.22s ease;
}

.form_field:focus~.form_label,
.form_field.valid~.form_label {
    top: 1px;
    transform: none;
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-faint);
}

.form_icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    opacity: 0.35;
    pointer-events: none;
    transition: opacity 0.3s ease;
    fill: var(--color-primary);
}

.form_field-area:focus-within .form_icon,
.form_field-area:has(.form_field.valid) .form_icon {
    opacity: 0.7;
}

.form_textarea {
    resize: none;
    min-height: 80px;
    padding-top: 24px;
}

.form_textarea~.form_label {
    top: 12px;
    transform: none;
}

.form_textarea:focus~.form_label,
.form_textarea.valid~.form_label {
    top: 1px;
}

.form_field-area:has(.form_textarea) .form_icon {
    top: 14px;
    transform: none;
}

.form_field-area--select {
    position: relative;
}

.form_select {
    cursor: pointer;
    padding-right: 28px;
    color: var(--color-text-faded);
}

.form_select.valid {
    color: var(--color-primary);
}

.form_field-area--select::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--color-text-faded);
    pointer-events: none;
    transition: border-color 0.3s ease;
}

.form_field-area--select:focus-within::after {
    border-top-color: var(--color-primary);
}

.form_select option {
    color: var(--color-primary);
    background: var(--color-white, #fff);
}

.form_select:focus~.form_label,
.form_select.valid~.form_label {
    top: 1px;
    transform: none;
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-faint);
}

/*
   Validacao hospedes (mensagem + spinner)
 */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.form_field-msg {
    display: none;
    font-family: var(--font-family-base);
    font-size: 11px;
    font-weight: 500;
    color: #c0392b;
    padding-top: 5px;
    line-height: 1.3;
}

.form_field-msg.is-visible {
    display: block;
}

.form_btn {
    display: block;
    width: 100%;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-family: var(--font-family-base);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 15px 24px;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.form_btn.wpp {
    background-color: var(--color-whatsapp);
    color: var(--color-white);
}

/* Hover-only: min-width para excluir touch devices */
@media (min-width: 1024px) {
    .form_btn:hover {
        opacity: 0.82;
    }
}

/* ==========================================================================
   05. SEÇÕES (ORDEM DA INDEX)
   ========================================================================== */
/* --------------------------------------------------------------------------
   05.01 Hero
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    width: 100%;
    background-color: var(--color-primary);
    height: 880px;
    max-height: 100vh;
}

.hero_bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.75;
    z-index: 2;
}

.hero_bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(to top, var(--color-overlay-hero), transparent 50%), linear-gradient(to bottom, var(--color-overlay-hero), transparent 50%);
    z-index: 3;
}

.hero_bg video,
.hero_bg img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hero_bg video {
    display: block;
}

.hero_bg .hero_bg-fallback {
    display: none;
}

.hero_bg.hero_bg--fallback video {
    display: none;
}

.hero_bg.hero_bg--fallback .hero_bg-fallback {
    display: block;
}

.hero_container,
.hero_box {
    position: relative;
    height: 100%;
    z-index: 5;
}

.hero_box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 44px 0;
}

.hero_logo {
    display: block;
    width: 165px;
    margin: 0 auto;
}

.hero_title {
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.28;
    text-shadow: 0 0 20px var(--color-shadow-strong);
    margin: 0 auto;
}

.hero_title span {
    display: block;
    text-align: center;
}

.hero_title span:last-child {
    font-size: 222%;
    letter-spacing: 0.1em;
    margin: 2px -10px 0 0;
}

.hero_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-top: 1px solid var(--color-white);
    padding: 10px 0 0;
}

.hero_footer p {
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    text-shadow: 0 0 10px var(--color-shadow-medium);
    letter-spacing: 0.24em;
}

/* --- Responsivo --- */
@media (max-width: 1919px) {
    .hero {
        height: 800px;
    }
}

@media (max-width: 1399px) {
    .hero {
        height: 720px;
    }

    .hero_title {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .hero {
        height: 640px;
    }

    .hero_logo {
        width: 145px;
    }

    .hero_title {
        font-size: 18px;
    }

    .hero_box {
        padding: 36px 0;
    }
}

@media (max-width: 575px) {
    .hero {
        height: 100svh;
        height: 100dvh;
        max-height: 500px;
    }

    .hero_logo {
        width: 110px;
    }

    .hero_box {
        padding: 20px 0;
    }

    .hero_title {
        font-size: 13px;
    }

    .hero_title span:last-child {
        font-size: 210%;
        margin-right: -6px;
    }

    .hero_footer p {
        font-size: 9px;
        letter-spacing: 0.16em;
    }
}

/* --------------------------------------------------------------------------
   05.02 Sobre
   -------------------------------------------------------------------------- */
.about {
    background-color: var(--color-surface-soft);
}

.about__top {
    gap: 115px;
    display: flex;
    align-items: start;
    margin-bottom: 90px;
}

.about__top .section-title-6__wrapper .title {
    max-width: 920px;
}

.about__subtitle {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: var(--color-primary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transform: translateY(8px);
    font-family: var(--font-family-base);
}

.about__wrapper {
    display: grid;
    align-items: end;
    grid-template-columns: 1.777fr 0.8fr;
}

.about__item-box {
    gap: 20px;
    width: 100%;
    display: grid;
    position: relative;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
    grid-template-columns: 0.577fr 1fr;
}

.about__item-box::before {
    content: "";
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: var(--color-surface-subtle);
    transition: all 0.6s ease-in-out;
}

.about__item-box.active {
    z-index: 2;
}

.about__item-box.active::before {
    right: 0;
    transform: translateX(100%);
}

.about__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .about__video-link {
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    padding: 0 0 20px;
}

.about .about__video-link .about__thumb {
    position: relative;
}

.about .about__video-box {
    right: 15px;
    bottom: -20px;
    z-index: 2;
    width: 112px;
    height: 112px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    transition: var(--transition-base);
    z-index: 10;
}

.about .about__video-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.about .about__video-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) saturate(100%);
    transition: var(--transition-base);
}

.about .about__video-text {
    color: var(--color-primary);
    font-size: 9px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    font-family: var(--font-family-base);
    text-align: center;
}

.about .about__video-link:hover .about__video-box {
    transform: translateY(-3px);
    border-color: var(--color-primary);
    background: var(--color-primary);
}

.about .about__video-link:hover .about__video-icon img {
    filter: brightness(0) invert(1);
}

.about .about__video-link:hover .about__video-text {
    color: var(--color-white);
}

.about__btn {
    margin-top: 111px;
    margin-bottom: 0;
}

.about__title {
    font-size: 20px;
    font-weight: 500;
    margin-top: 45px;
    line-height: 22px;
    margin-bottom: 14px;
    padding-bottom: 15px;
    color: var(--color-primary);
    letter-spacing: -0.03em;
    font-family: var(--font-family-base);
    border-bottom: 1px solid var(--color-border-subtle);
}

.about__dec {
    line-height: 22px;
    letter-spacing: -0.03em;
}

.about__list {
    margin-left: 96px;
}

.about__list li {
    gap: 10px;
    display: flex;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 400;
    color: var(--color-primary);
    line-height: 20px;
    align-items: start;
    position: relative;
    letter-spacing: -0.03em;
    padding: 25px 8px 20px 10px;
    font-family: var(--font-family-base);
    transition: var(--transition-base);
    border-bottom: 1px solid var(--color-border);
}

.about__list li:first-of-type {
    border-top: 1px solid var(--color-border-subtle);
}

.line-area {
    position: relative;
    z-index: 1;
}

.fancybox__carousel .fancybox__slide.has-video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
    width: min(1780px, calc((100vh - 140px) * (16 / 9))) !important;
    max-width: calc(100vw - 220px);
    aspect-ratio: 16 / 9;
    height: auto !important;
    max-height: calc(100vh - 140px);
}

.fancybox__carousel .fancybox__slide.has-video .fancybox__iframe,
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__html5video {
    width: 100%;
    height: 100%;
}

@media (max-width: 1023px) {

    .fancybox__carousel .fancybox__slide.has-video .fancybox__content,
    .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
        width: min(1780px, calc((100vh - 96px) * (16 / 9))) !important;
        max-width: calc(100vw - 24px);
        max-height: calc(100vh - 96px);
    }
}

/* --- Responsivo --- */
@media (max-width: 1800px) {
    .about__wrapper {
        grid-template-columns: 1fr 0.688fr;
    }
}

@media (max-width: 1699px) {
    .about__wrapper {
        margin-left: 100px;
    }
}

@media (max-width: 1599px) {
    .about__wrapper {
        margin-left: 0;
        grid-template-columns: 1fr 0.713fr;
    }

    .about__list {
        margin-left: 50px;
    }
}

@media (max-width: 1399px) {
    .about__wrapper {
        grid-template-columns: 1fr 0.694fr;
    }

    .about__list {
        margin-left: 30px;
    }
}

@media (max-width: 1199px) {
    .about__top {
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 60px;
    }

    .about__subtitle {
        transform: translateY(0px);
    }

    .about__wrapper {
        align-items: center;
        grid-template-columns: 1fr 0.771fr;
    }

    .about__item-box {
        gap: 20px;
    }

    .about .about__video-box {
        right: 16px;
        bottom: 16px;
        width: 84px;
        height: 84px;
        gap: 6px;
    }

    .about__btn {
        margin-top: 100px;
        margin-bottom: 0;
    }

    .about__title {
        margin-top: 25px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
}

@media (max-width: 991px) {
    .about__top {
        margin-bottom: 40px;
    }

    .about__wrapper {
        grid-template-columns: 1fr;
    }

    .about__list {
        margin-left: 0px;
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .about__item-box {
        gap: 10px;
        grid-template-columns: 1fr;
    }

    .about .about__video-box {
        right: 6px;
        bottom: 6px;
        width: 96px;
        height: 64px;
    }

    .about .about__video-icon {
        width: 22px;
        height: 22px;
    }

    .about .about__video-icon img {
        width: 16px;
        height: 16px;
    }

    .about .about__video-text {
        font-size: 8px;
    }

    .about__btn {
        margin-top: 20px;
    }
}

/* --------------------------------------------------------------------------
   05.03 Galeria + Destaques
   -------------------------------------------------------------------------- */
.gallery__thumb {
    overflow: hidden;
}

.gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
}

.gallery__thumb img:hover {
    transform: scale(1.1);
}

.gallery__wrap-one {
    gap: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 0.865fr;
}

.gallery__wrap-one .gallery__item:nth-child(2) {
    margin-top: 163px;
}

.gallery__wrap-two {
    gap: 30px;
    display: grid;
    margin-top: 96px;
    align-items: flex-start;
    grid-template-columns: 0.803fr 1fr 0.626fr;
}

.gallery__wrap-two .gallery__item:first-child {
    align-self: flex-end;
    margin-top: 318px;
}

.gallery__sub-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: var(--color-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    font-family: var(--font-family-base);
}

.gallery__item.one {
    padding-right: 81px;
    display: block;
}

.gallery__btn {
    margin-top: 40px;
}

.gallery__btn .btn {
    border-radius: inherit;
}

.highlights__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlights__wrapper {
    position: relative;
}

.highlights__controls {
    left: 16px;
    bottom: 16px;
    z-index: 9999;
    display: inline-flex;
    position: absolute;
    align-items: center;
    gap: 32px;
    background: var(--color-white);
    padding: 24px;
}

.highlights__arrows {
    gap: 10px;
    display: flex;
    align-items: center;
}

.highlights__divider {
    width: 1px;
    height: 24px;
    background: var(--color-border-strong);
}

.highlights__controls .highlights__swipers-pagination {
    width: auto;
    display: flex;
    position: static;
    align-items: center;
}

.highlights__controls .highlights__swipers-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    border-radius: 100%;
    margin: 0 4px !important;
    border: 1px solid var(--color-border-contrast);
    background: transparent;
}

.highlights__controls .highlights__swipers-pagination .swiper-pagination-bullet-active {
    border-color: var(--color-primary);
    background: var(--color-primary);
}

.highlights__arrow {
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: var(--transition-base);
}

.highlights__arrow .icon-arrow {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.highlights__arrow:hover {
    color: var(--color-secondary);
}

/* --- Responsivo --- */
@media (max-width: 1919px) {
    .gallery__wrap-one {
        grid-template-columns: 1fr 1fr 0.957fr;
    }

    .gallery__wrap-two {
        grid-template-columns: 1fr 1fr 0.957fr;
    }

    .gallery__item.one {
        padding-right: 0;
    }
}

@media (max-width: 1399px) {
    .gallery__wrap-one {
        grid-template-columns: 0.883fr 0.883fr 1fr;
    }

    .gallery__wrap-one .gallery__item:nth-child(2) {
        margin-top: 120px;
    }

    .gallery__wrap-two .gallery__item:first-child {
        margin-top: 165px;
    }

    .gallery__wrap-two {
        grid-template-columns: 0.883fr 1fr 0.824fr;
    }

    .highlights__controls {
        left: 40px;
        bottom: 40px;
    }
}

@media (max-width: 1199px) {
    .gallery__wrap-one {
        grid-template-columns: 1fr 1fr 0.827fr;
    }

    .gallery__wrap-one .gallery__item:nth-child(2) {
        margin-top: 90px;
    }

    .gallery__wrap-two .gallery__item:first-child {
        margin-top: 143px;
    }

    .gallery__wrap-two {
        grid-template-columns: 0.819fr 1fr 0.698fr;
    }
}

@media (max-width: 991px) {
    .gallery__wrap-one {
        grid-template-columns: 1fr 1fr;
    }

    .gallery__wrap-one .gallery__item:nth-child(2) {
        margin-top: 0;
    }

    .gallery__wrap-two .gallery__item:first-child {
        margin-top: 0;
        align-self: flex-start;
    }

    .gallery__wrap-two {
        margin-top: 30px;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .gallery__wrap-two {
        margin-top: 30px;
    }

    .highlights__controls {
        left: 25px;
        bottom: 20px;
    }
}

@media (max-width: 575px) {
    .gallery__wrap-one {
        grid-template-columns: 1fr;
    }

    .gallery__wrap-two {
        grid-template-columns: 1fr;
    }

    .gallery__btn {
        margin-top: 25px;
    }

    .highlights__controls {
        left: 7px;
        bottom: 7px;
        gap: 10px;
        padding: 8px 10px;
    }

    .highlights__divider {
        height: 20px;
    }

    .highlights__controls .highlights__swipers-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
}

/* --------------------------------------------------------------------------
   05.04 Ambientes
   -------------------------------------------------------------------------- */
.spaces__inner .section-title-4__wrapper {
    margin-bottom: 70px;
}

.spaces__item {
    gap: 30px 80px;
    display: grid;
    padding: 10px;
    border: 1px solid var(--color-border-neutral);
    grid-template-columns: 1fr 514px;
}

.spaces__item:not(:last-child) {
    margin-bottom: 80px;
}

.spaces__item .media {
    position: relative;
}

.spaces__item .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spaces__item .content {
    display: flex;
    margin-top: 40px;
    margin-bottom: 50px;
    flex-direction: column;
}

.spaces__item .content .number {
    font-size: 24px;
    font-weight: 500;
    line-height: 20px;
    color: var(--color-primary);
    letter-spacing: -0.72px;
}

.spaces__item .content .text {
    margin-top: auto;
}

.spaces__item .content .text .title {
    margin-bottom: 10px;
    text-transform: uppercase;
}

.spaces__item .content .text .title a:hover {
    color: var(--color-secondary);
}

.spaces .btn-wrap {
    margin-top: 50px;
}

/* --- Responsivo --- */
@media (max-width: 1399px) {
    .spaces__item {
        grid-template-columns: 1fr 414px;
    }
}

@media (max-width: 1199px) {
    .spaces__item {
        grid-template-columns: 1fr 314px;
        gap: 30px 50px;
    }
}

@media (max-width: 991px) {
    .spaces__inner .section-title-4__wrapper {
        margin-bottom: 50px;
    }

    .spaces__item:not(:last-child) {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .spaces__inner .section-title-4__wrapper {
        margin-bottom: 30px;
    }

    .spaces__item {
        grid-template-columns: 1fr;
        gap: 30px 50px;
    }

    .spaces__item .content {
        margin-top: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .spaces__inner .section-title-4__wrapper {
        margin-bottom: 10px;
    }
}

/* --------------------------------------------------------------------------
   05.05 Experiências
   -------------------------------------------------------------------------- */
.experiences__inner .btn {
    gap: 8px;
    border-radius: 0;
    color: var(--color-white);
    padding: 15px 29.71px;
    background-color: var(--color-primary);
}

.experiences__inner .btn .text span {
    color: var(--color-white);
}

.experiences__inner .btn .icon-arrow {
    color: var(--color-white);
}

.experiences__inner .section-title-7__wrapper {
    gap: 100px;
    display: flex;
    margin-bottom: 40px;
}

.experiences__inner .experiences__wrapper {
    display: grid;
    gap: 35px 30px;
    max-width: 1525px;
    padding-top: 40px;
    margin-left: auto;
    justify-content: space-between;
    grid-template-columns: repeat(2, 1fr);
}

.experiences__item {
    display: grid;
    gap: 20px 0px;
    grid-template-columns: 0.676fr 1fr;
    border: 1px solid var(--color-border);
}

.experiences__item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experiences__item .content {
    display: flex;
    flex-direction: column;
}

.experiences__item .content .text {
    padding-left: 40px;
    padding-top: 40px;
}

.experiences__item .content .text .title {
    margin-bottom: 2px;
}

.experiences__item .content .info {
    gap: 10px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: auto;
    padding: 20px 105px 20px 45px;
    border-top: 1px solid var(--color-border);
    justify-content: flex-start;
}

.experiences__item .content .info .mail {
    max-width: 100%;
}

.experiences__item .content .info a {
    display: block;
    position: relative;
}

.experiences__item .content .info .excerpt {
    margin: 0;
}

.experiences__item .content .info a::before {
    left: 0;
    bottom: 0;
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    transition: all 0.3s;
    background: currentColor;
}

.experiences__item .content .info a:hover {
    color: var(--color-primary);
}

.experiences__item .content .info a:hover::before {
    width: 0;
}

.experiences__item .content .info .icon {
    color: var(--color-primary);
    rotate: -45deg;
}

.experiences__item .content .info .icon::before {
    display: none;
}

/* --- Responsivo --- */
@media (max-width: 1399px) {
    .experiences__item {
        grid-template-columns: 0.536fr 1fr;
    }

    .experiences__item .content .text {
        padding-left: 20px;
    }

    .experiences__item .content .info {
        padding: 20px 62px 24px 20px;
    }
}

@media (max-width: 1199px) {
    .experiences__item {
        grid-template-columns: 0.5fr 1fr;
    }

    .experiences__item .content .info {
        padding: 20px 20px 24px 20px;
    }
}

@media (max-width: 991px) {
    .experiences__inner .section-title-7__wrapper {
        gap: 50px;
    }

    .experiences__inner .experiences__wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px 20px;
    }
}

@media (max-width: 767px) {
    .experiences__inner .section-title-7__wrapper {
        gap: 20px;
        flex-wrap: wrap;
    }
}

@media (max-width: 575px) {
    .experiences__item {
        grid-template-columns: 1fr;
    }

    .experiences__item .content .text {
        padding-top: 0;
        margin-bottom: 20px;
    }
}

/* --------------------------------------------------------------------------
   05.06 Região
   -------------------------------------------------------------------------- */
.region__wrap {
    display: flex;
    gap: 210px;
}

.region__item {
    flex-shrink: 0;
    width: 350px;
}

.region__media {
    flex: 1;
    min-width: 0;
}

.region__slider {
    width: 100%;
    overflow: hidden;
}

.region__slider .swiper-slide {
    height: auto;
}

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

.region__item .nav {
    margin-top: auto;
    display: flex;
    flex-direction: column;
}

.region .region__item {
    justify-content: space-between;
}

.region .region__title-wrap {
    margin-bottom: 20px;
}

.region .region__aside {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.region .region__item .nav {
    margin-top: 0;
}

.region .region__btn {
    margin: 25px 0 0;
}

.region__item .nav-link {
    font-size: 23px;
    font-weight: 500;
    color: var(--color-text-light);
    line-height: 30px;
    display: inline-flex;
    padding: 4px 0 4px 0;
    text-transform: uppercase;
    font-family: var(--font-family-base);
    transition: var(--transition-base);
}

.region__item .nav-link.active {
    color: var(--color-primary);
    font-family: var(--font-family-base);
}

.region__item .nav-link:hover {
    color: var(--color-primary);
}

.region__thumb {
    position: relative;
}

.region__thumb img {
    width: 100%;
    display: block;
    height: auto;
}

.region__media-controls {
    gap: 18px;
    width: 100%;
    display: flex;
    margin-top: 20px;
    align-items: center;
}

.region__progress {
    flex: 1 1 auto;
    height: 2px;
    overflow: hidden;
    position: relative;
    background: var(--color-overlay-medium);
}

.region__progress-bar {
    width: 0;
    height: 100%;
    display: block;
    background: var(--color-primary);
}

.region__arrows {
    gap: 10px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.region__arrow {
    width: 42px;
    height: 42px;
    border: 0;
    display: flex;
    cursor: pointer;
    background: var(--color-white);
    color: var(--color-primary);
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border-input);
    transition: var(--transition-base);
}

.region__arrow .icon-arrow {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.region__arrow:hover {
    color: var(--color-white);
    border-color: var(--color-primary);
    background: var(--color-primary);
}

/* --- Responsivo --- */
@media (max-width: 1399px) {
    .region__wrap {
        gap: 64px;
    }
}

@media (max-width: 991px) {
    .region__wrap {
        flex-direction: column;
        gap: 30px;
    }

    .region__item {
        width: 100%;
    }

    .region__btn {
        margin-bottom: 30px;
    }

    .region .region__item {
        justify-content: flex-start;
        gap: 30px;
    }

    .region .region__aside {
        gap: 22px;
    }
}

@media (max-width: 767px) {
    .region .region__nav .nav-link {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (max-width: 575px) {
    .region__item .nav-link {
        font-size: 18px;
    }

    .region .region__item {
        gap: 0;
    }

    .region__media-controls {
        gap: 12px;
    }

    .region__arrow {
        width: 36px;
        height: 36px;
    }

    .region__arrow .icon-arrow {
        width: 18px;
        height: 18px;
        flex-basis: 18px;
    }

    .region .region__nav .nav-link {
        font-size: 13px;
        line-height: 20px;
    }
}

/* --------------------------------------------------------------------------
   05.07 Depoimentos
   -------------------------------------------------------------------------- */
.testimonials .testimonials__layout {
    display: flex;
    gap: 24px;
    align-items: center;
}

.testimonials .testimonials__media-col {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
}

.testimonials .testimonials__content-col {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
    min-width: 0;
}

.testimonials .testimonials__content-layout {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.testimonials .testimonials__slider-col {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
    min-width: 0;
}

.testimonials .testimonials__aside-col {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
}

.testimonials {
    background-color: var(--color-surface-soft);
}

.testimonials__wrapper .section-title-6__wrapper {
    margin-bottom: 185px;
}

.testimonials__wrapper .section-title-6__wrapper .title {
    max-width: 540px;
}

.testimonials__quote {
    gap: 12px;
    display: flex;
    align-items: center;
    margin-bottom: -38px;
}

.testimonials__quote span {
    width: 44px;
    height: 90px;
    display: inline-block;
    background: var(--color-overlay-subtle);
    clip-path: polygon(50% 0, 100% 50%, 100% 100%, 0 100%, 0 0);
}

.testimonials__dec {
    text-wrap: pretty;
    font-size: 24px;
    font-weight: 500;
    max-width: 514px;
    line-height: 34px;
    margin-bottom: 33px;
    letter-spacing: -0.03em;
    font-family: var(--font-family-base);
}

.testimonials__author .name {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.02em;
    font-family: var(--font-family-base);
}

.testimonials__info {
    text-align: right;
    transform: translateY(15px);
}

.testimonials__button {
    gap: 12px;
    display: flex;
    margin-top: 66px;
    align-items: center;
}

.testimonials__arrow .icon-arrow {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    color: var(--color-primary);
}

/* --- Responsivo --- */
@media (min-width: 1400px) and (max-width: 1550px) {
    .testimonials__wrapper .section-title-6__wrapper {
        margin-bottom: 100px;
    }
}

@media (max-width: 1399px) {
    .testimonials__wrapper .section-title-6__wrapper {
        margin-bottom: 40px;
    }

    .testimonials__info {
        transform: translateY(0px);
    }
}

@media (max-width: 1199px) {
    .testimonials__quote span {
        width: 30px;
        height: 60px;
    }

    .testimonials__dec {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 20px;
    }

    .testimonials__author .name {
        font-size: 20px;
        line-height: 20px;
    }

    .testimonials__button {
        margin-top: 40px;
    }
}

@media (max-width: 991px) {
    .testimonials .testimonials__layout {
        flex-direction: column;
        align-items: stretch;
    }

    .testimonials .testimonials__media-col,
    .testimonials .testimonials__content-col {
        max-width: 100%;
        flex-basis: 100%;
    }

    .testimonials__thumb {
        margin-bottom: 30px;
    }

    .testimonials__thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 767px) {
    .testimonials .testimonials__content-layout {
        flex-direction: column;
        align-items: stretch;
    }

    .testimonials .testimonials__slider-col,
    .testimonials .testimonials__aside-col {
        max-width: 100%;
        flex-basis: 100%;
    }

    .testimonials__wrapper .section-title-6__wrapper {
        margin-bottom: 30px;
    }

    .testimonials__info {
        margin-top: 30px;
    }

    .testimonials__button {
        margin-top: 30px;
    }
}

/* --------------------------------------------------------------------------
   05.08 Como Chegar
   -------------------------------------------------------------------------- */
.directions__wrapper {
    display: grid;
    grid-template-columns: 0.543fr 1fr;
}

.directions__wrapper .directions__box {
    padding: 170px 0 140px 14px;
}

.directions__wrapper .directions__box .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.directions__wrapper .directions__box__wrapper {
    gap: 20px;
    display: flex;
    margin-top: 120px;
    justify-content: space-between;
}

.directions__wrapper .directions__item {
    max-width: 320px;
}

.directions__wrapper .directions__item .title {
    font-size: 24px;
    font-weight: 500;
    margin-top: 70px;
    line-height: 1.35;
    letter-spacing: -0.72px;
}

.directions__wrapper .directions__item .title span {
    display: block;
    width: fit-content;
    font-size: 65%;
    border: 1px solid var(--color-primary);
    padding: 1px 8px;
    margin: 4px 0;
}

.directions__wrapper .directions__item .desc {
    margin-top: 20px;
}

.directions__wrapper .directions__content {
    margin-top: 30px;
}

/* --- Responsivo --- */
@media (max-width: 1919px) {
    .directions__wrapper {
        grid-template-columns: 0.421fr 1fr;
    }
}

@media (max-width: 1399px) {
    .directions__wrapper {
        grid-template-columns: 0.54fr 1fr;
    }
}

@media (max-width: 1199px) {
    .directions__wrapper .directions__box {
        padding: 100px 14px 100px;
    }

    .directions__wrapper .directions__box__wrapper {
        flex-wrap: wrap;
        margin-top: 60px;
        gap: 30px;
    }

    .directions__wrapper .directions__item {
        max-width: 100%;
    }

    .directions__wrapper .directions__item .title {
        margin-top: 15px;
    }

    .directions__wrapper .directions__item .desc {
        margin-top: 15px;
    }
}

@media (max-width: 991px) {
    .directions__wrapper {
        grid-template-columns: 1fr;
    }

    .directions__wrapper .directions__box {
        padding: 60px 14px 60px;
    }

    .directions__wrapper .directions__box:not(:last-child) {
        border-right: none;
    }

    .directions__wrapper .directions__box:first-child {
        padding-bottom: 0;
    }

    .section-head--narrow .title {
        margin-bottom: 30px;
    }

    .section-head--narrow .title br {
        display: none;
    }
}

@media (max-width: 575px) {
    .directions__wrapper .directions__box {
        padding: 0 !important;
    }
}

/* --------------------------------------------------------------------------
   05.09 Mídia
   -------------------------------------------------------------------------- */
.media__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    align-items: center;
}

.media__video {
    display: block;
    position: relative;
    overflow: hidden;
}

.media__video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 16/9;
}

.media__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    transition: var(--transition-base);
    z-index: 2;
}

.media__play img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) saturate(100%);
    transition: var(--transition-base);
}

.media__video:hover .media__play {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translate(-50%, -50%) translateY(-3px);
}

.media__video:hover .media__play img {
    filter: brightness(0) invert(1);
}

.media__content {
    position: relative;
    z-index: 3;
    margin-left: -60px;
    background: var(--color-white);
    padding: 64px;
    border: 1px solid var(--color-border);
}

.media__content .section-title-6__wrapper {
    margin-bottom: 30px;
}

.section-head--media .title {
    max-width: 480px;
    margin: 0 0 0 80px;
}

.media__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
    text-decoration: none;
    margin: 0 0 0 80px;
    transition: all 0.3s;
}

.media__link .icon-arrow {
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
    transition: transform 0.3s;
}

.media__link:hover {
    color: var(--color-primary);
    opacity: 0.75;
}

.media__link:hover .icon-arrow {
    transform: translateX(4px);
}

/* --- Responsivo --- */
@media (max-width: 1399px) {
    .section-head--media .title {
        margin-left: 60px;
    }

    .media__link {
        margin-left: 60px;
    }
}

@media (max-width: 1199px) {
    .media__content {
        padding: 48px 44px;
    }

    .section-head--media .title {
        margin-left: 40px;
        max-width: 100%;
    }

    .media__link {
        margin-left: 40px;
    }
}

@media (max-width: 991px) {
    .media__inner {
        grid-template-columns: 1fr;
    }

    .media__content {
        margin-left: 30px;
        margin-right: 30px;
        margin-top: -50px;
        padding: 36px 36px;
    }

    .section-head--media .title {
        margin-left: 0;
    }

    .media__link {
        margin-left: 0;
    }
}

@media (max-width: 575px) {
    .media__content {
        padding: 28px 24px;
        margin-right: 16px;
        margin-left: 16px;
        margin-top: -30px;
    }

    .media__content .section-title-6__wrapper {
        margin-bottom: 20px;
    }

    .media__play {
        width: 56px;
        height: 56px;
    }

    .media__play img {
        width: 20px;
        height: 20px;
    }

    .media__link {
        font-size: 11px;
    }
}

/* --------------------------------------------------------------------------
   05.10 Idealizadores
   -------------------------------------------------------------------------- */
.founders__inner .section-title-5__wrapper {
    display: grid;
    grid-template-columns: 412px 1fr;
    border-top: 1px solid var(--color-border);
}

.founders__inner .section-title-5__wrapper .wrp {
    padding-left: 30px;
    padding-top: 30px;
}

.founders__inner .section-title-5__wrapper .title {
    padding: 26px 30px;
    padding-right: 0;
    border-left: 1px solid var(--color-border);
}

.founders__inner .founders__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.founders__inner .founders__wrapper>*:nth-child(1) {
    grid-column-start: 2;
}

.founders__inner .founders__wrapper>*:nth-child(1) .founders__item:first-child {
    margin-bottom: 60px;
}

.founders__inner .founders__wrapper>*:nth-child(2) .founders__item:first-child {
    margin-bottom: 60px;
}

.founders__inner .founders__box {
    padding: 30px;
    border-left: 1px solid var(--color-border);
}

.founders__inner .founders__box .media {
    position: relative;
    overflow: hidden;
}

.founders__inner .founders__box .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
}

.founders__inner .founders__box .content {
    margin-top: 17px;
}

.founders__inner .founders__box .content .title {
    font-size: 20px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: -1px;
    margin-bottom: 7px;
}

.founders__inner .founders__box .content .title a:hover {
    color: var(--color-secondary);
}

.founders__inner .founders__box .content .sub-title {
    color: var(--color-text-light);
}

.founders__inner .founders__item {
    overflow: hidden;
}

/* --- Responsivo --- */
@media (max-width: 1199px) {
    .founders__inner .founders__wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .founders__inner .founders__wrapper>*:nth-child(1) {
        grid-column-start: auto;
    }
}

@media (max-width: 991px) {
    .founders__inner .section-title-5__wrapper {
        grid-template-columns: 299px 1fr;
    }

    .founders__inner .section-title-5__wrapper .title {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .founders__inner .section-title-5__wrapper {
        border-bottom: none;
        grid-template-columns: 1fr;
    }

    .founders__inner .section-title-5__wrapper .wrp {
        padding-left: 0;
    }

    .founders__inner .section-title-5__wrapper .title {
        border-left: none;
        padding: 0;
    }

    .founders__inner .founders__wrapper>*:nth-child(1) .founders__item:first-child {
        margin-bottom: 30px;
    }

    .founders__inner .founders__wrapper>*:nth-child(2) .founders__item:first-child {
        margin-bottom: 30px;
    }

    .founders__inner .founders__box {
        border-left: none;
        padding: 0;
        margin-top: 30px;
    }

    .founders .founders__inner .founders__box .content .title {
        font-size: 17px;
        line-height: 22px;
    }

    .founders .founders__inner .founders__box .content .sub-title {
        font-size: 14px;
        line-height: 19px;
    }
}

@media (max-width: 575px) {
    .founders__inner .founders__wrapper {
        grid-template-columns: 1fr;
        border-top: none;
    }

    .founders .founders__inner .founders__box .content .title {
        font-size: 16px;
        line-height: 20px;
    }

    .founders .founders__inner .founders__box .content .sub-title {
        font-size: 13px;
        line-height: 18px;
    }
}

/* --------------------------------------------------------------------------
   05.11 História
   -------------------------------------------------------------------------- */
.story__inner {
    display: grid;
    gap: 56px;
    grid-template-columns: 1fr 0.63fr 0.247fr;
}

.story__inner .story__box:last-child {
    display: flex;
    flex-direction: column;
}

.story__inner .story__media {
    margin-top: auto;
}

.story__inner .story__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story__inner .story__content {
    margin-top: 250px;
    max-width: 500px;
    margin-left: auto;
}

.story__inner .story__content .desc {
    margin-left: 57px;
    margin-top: 60px;
}

.story__inner .story__content .desc+.desc {
    margin-top: 30px;
}

.story__inner .story__content .icon {
    margin-top: 80px;
    margin-left: 57px;
    display: inline-block;
}

/* --- Responsivo --- */
@media (max-width: 1919px) {
    .story__inner {
        grid-template-columns: 1fr 0.788fr 0.379fr;
    }

    .story__inner .story__content {
        margin-top: 100px;
    }
}

@media (max-width: 1399px) {
    .story__inner {
        gap: 20px;
        grid-template-columns: 1fr 0.962fr 0.481fr;
    }

    .story__inner .story__content {
        margin-top: 0px;
    }
}

@media (max-width: 1199px) {
    .story__inner {
        gap: 20px;
        grid-template-columns: 1fr 1fr 0.611fr;
    }

    .story__inner .story__content .desc {
        margin-left: 0;
        margin-top: 30px;
    }

    .story__inner .story__content .icon {
        margin-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 991px) {
    .story__inner {
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(2, 1fr);
    }

    .story__inner> :nth-child(2) {
        grid-column: 1/-1;
        order: -1;
    }

    .story__inner> :nth-child(1),
    .story__inner> :nth-child(3) {
        grid-column: span 1;
        order: 2;
    }

    .story__inner .story__content {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .story__inner {
        display: grid;
        gap: 15px;
        grid-template-columns: 1fr;
    }

    .story__inner> :nth-child(2) {
        grid-column: 1/-1;
        order: -1;
    }

    .story__inner> :nth-child(1),
    .story__inner> :nth-child(3) {
        grid-column: 1/-1;
        order: 2;
    }
}

/* --------------------------------------------------------------------------
   05.11.A Ajustes Transversais e Responsivos Entre Seções
   -------------------------------------------------------------------------- */
.section-head .title {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -1.2px;
}

.section-head .sub-title.section-kicker--line {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.12em;
    margin-bottom: 15px;
}

.about .about__item-box>.about__item:first-child {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about .about__item-box>.about__item:first-child .about__btn {
    margin-top: 0;
    margin-bottom: 0;
}

.section-kicker--line {
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-head--founders .sub-title.section-kicker--line {
    padding-left: 0;
}

.section-head--founders .sub-title.section-kicker--line::before {
    position: static;
    transform: none;
    bottom: auto;
    width: 40px;
    flex: 0 0 40px;
}

.directions .directions__item>img {
    max-width: 116px;
    height: 72px;
}

.section-head--narrow {
    max-width: 540px;
}

.section-head--narrow .title {
    margin-bottom: 50px;
}

.section-head--split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.section-head--split .title {
    max-width: 560px;
}

.spaces .excerpt {
    text-wrap: balance;
}

.spaces-card-swiper {
    position: relative;
    width: 100%;
    height: 100%;
}

.spaces-card-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.spaces-card-pagination {
    display: flex !important;
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    z-index: 10;
    justify-content: center;
    pointer-events: none;
}

.spaces-card-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    opacity: 1;
    border-radius: 100%;
    margin: 0 3px !important;
    border: 1px solid var(--color-border-inverse);
    background: transparent;
    display: inline-block !important;
}

.spaces-card-pagination .swiper-pagination-bullet-active {
    background: var(--color-white);
    border-color: var(--color-white);
}

.experiences .btn,
.experiences .btn:hover,
.experiences .btn:focus {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

#response-message {
    margin-top: 10px;
}

/* --- Responsivo --- */
@media (max-width: 1399px) {
    .section-head .title {
        font-size: 40px;
        line-height: 44px;
    }
}

@media (max-width: 991px) {
    .gallery__item.one {
        order: -1;
        grid-column: 1 / -1;
    }

    .about .about__item-box>.about__item:first-child {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .section-head .title {
        font-size: 26px;
        line-height: 32px;
        letter-spacing: -0.8px;
    }

    .spaces .spaces__item .media {
        height: 300px;
    }

    .spaces .spaces__item:not(:last-child) {
        margin-bottom: 40px;
    }

    .spaces .spaces__item .content {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
        padding: 20px 0 0;
        margin-top: 0;
        margin-bottom: 0;
        border-top: 1px solid var(--color-border);
    }

    .spaces .spaces__item .content .number {
        font-size: 13px;
        line-height: 1;
        letter-spacing: 0.06em;
        flex-shrink: 0;
        padding-top: 3px;
    }

    .spaces .spaces__item .content .text {
        margin-top: 0;
    }

    .directions .directions__box .media {
        height: 18em;
    }

    .directions .directions__box {
        padding: 2.5em 0;
    }

    .directions .directions__box:first-child {
        padding-bottom: 0;
    }

    .directions .directions__content {
        margin-top: 1.25em;
    }

    .section-head--narrow .title {
        margin-bottom: 30px;
    }

    .directions .directions__box__wrapper {
        flex-direction: column;
        flex-wrap: nowrap;
        margin-top: 0;
        gap: 0;
        border-top: 1px solid var(--color-border);
    }

    .directions .directions__item {
        display: grid;
        grid-template-columns: 4em 0.7fr 1fr;
        column-gap: 1em;
        align-items: start;
        max-width: 100%;
        padding: 1.5em 0;
        border-bottom: 1px solid var(--color-border);
    }

    .directions .directions__item>img {
        width: 3.5em;
        height: 3em;
        object-fit: contain;
        margin-top: 0.15em;
    }

    .directions .directions__item .title {
        font-size: 0.95rem;
        font-weight: 500;
        line-height: 1.35;
        letter-spacing: -0.02em;
        margin-top: 0;
    }

    .directions .directions__item .title span {
        display: block;
        font-size: 0.8em;
    }

    .directions .directions__item .desc {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-top: 0;
    }
}

@media (max-width: 575px) {
    .section-spacing-140 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .section-spacing-bottom-130 {
        padding-bottom: 40px;
    }

    .gallery__wrap-two {
        margin-top: 20px;
    }

    .experiences__inner .experiences__wrapper {
        gap: 20px;
    }

    .experiences__item .content .text {
        padding-left: 20px;
    }

    .experiences__item .content .info {
        padding: 15px 15px 20px;
    }

    .spaces .spaces__item .media {
        height: 240px;
    }

    .spaces .spaces__item:not(:last-child) {
        margin-bottom: 32px;
    }

    .spaces .spaces__item .content {
        gap: 16px;
        padding-top: 16px;
    }

    .spaces .spaces__item .content .excerpt {
        margin-top: 6px;
    }

    .testimonials__quote span {
        width: 22px;
        height: 44px;
    }

    .testimonials__quote {
        margin-bottom: -24px;
    }

    .testimonials__dec {
        font-size: 13px;
        line-height: 22px;
        margin-bottom: 16px;
    }

    .testimonials__author .name {
        font-size: 15px;
        line-height: 20px;
    }

    .testimonials__arrow .icon-arrow {
        width: 22px;
        height: 22px;
        flex-basis: 22px;
    }

    .testimonials__wrapper .section-title-6__wrapper {
        margin-bottom: 24px;
    }

    .testimonials__info .thumb img {
        max-height: 180px;
        object-fit: cover;
        width: 100%;
    }

    .testimonials__button {
        margin-top: 20px;
    }

    .directions {
        padding-bottom: 30px;
    }

    .directions .directions__box .media {
        height: 14em;
    }

    .directions .directions__box {
        padding: 2em 0;
    }

    .directions .directions__item .title {
        font-size: 0.875rem;
    }

    .directions .directions__item .desc {
        font-size: 0.75rem;
    }

    .story {
        padding-top: 40px;
    }

    .story__inner .story__content .desc {
        margin-top: 15px !important;
        font-size: 13px;
        line-height: 22px;
    }

    .story__inner .story__content .icon {
        margin-top: 20px;
    }

    .region__wrap {
        gap: 24px;
    }

    .region__media-controls {
        margin-top: 16px;
    }

    .about__list li {
        font-size: 13px;
        padding: 8px;
    }

    .about__top {
        margin-bottom: 30px;
    }

    .section-head .title {
        font-size: 20px;
        line-height: 26px;
        letter-spacing: -0.6px;
    }

    .section-kicker--line::before {
        width: 24px;
        flex: 0 0 24px;
    }

    .btn {
        font-size: 12px;
        padding: 14px 22px;
    }

    .btn.has-icon {
        padding: 12px 20px;
    }

    .btn .icon-arrow {
        width: 12px;
        height: 12px;
        flex-basis: 12px;
    }

    .highlights__arrow .icon-arrow {
        width: 16px;
        height: 16px;
        flex-basis: 16px;
    }

    .region__arrow {
        width: 32px;
        height: 32px;
    }

    .region__arrow .icon-arrow {
        width: 14px;
        height: 14px;
        flex-basis: 14px;
    }

    .testimonials__arrow .icon-arrow {
        width: 18px;
        height: 18px;
        flex-basis: 18px;
    }

    .region__btn {
        display: none;
    }

    .testimonials__info .thumb {
        display: none;
    }

    .story__inner>.story__box:last-child {
        display: none;
    }

    .section-head--gallery {
        margin: 0;
    }
}

/* --------------------------------------------------------------------------
   05.12 Contato (Base do Formulário)
   -------------------------------------------------------------------------- */
.contact .contact-formwrap {
    display: grid;
    gap: 32px 46px;
    grid-template-columns: repeat(2, 1fr);
}

.contact .contact-formwrap .message {
    grid-column: span 2;
}

.contact .contact-formfield input:-webkit-autofill,
.contact .contact-formfield input:-webkit-autofill:focus {
    transition:
        background-color 0s 600000s,
        color 0s 600000s !important;
}

/* Select (Contato) */
.contact .contact-formfield--select {
    position: relative;
}

.contact .contact-formfield--select::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--color-text-soft);
    pointer-events: none;
    transition: border-color 0.3s ease;
}

.contact .contact-formfield--select:focus-within::after {
    border-top-color: var(--color-primary);
}

.contact .contact-formfield select {
    width: 100%;
    border: none;
    outline: none;
    font-family: var(--font-family-base);
    color: var(--color-text-soft);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.03em;
    background: transparent;
    border-bottom: 1px solid var(--color-border-input);
    border-radius: 0;
    height: 46px;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    padding-right: 20px;
    transition: border-color 0.3s ease;
}

.contact .contact-formfield select:focus {
    border-bottom-color: var(--color-primary);
}

.contact .contact-formfield select.has-value {
    color: var(--color-primary);
}

.contact .contact-formfield select option {
    color: var(--color-primary);
}

.contact .submit-btn .btn {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.contact .submit-btn .btn span {
    color: var(--color-white);
}

.contact .submit-btn .btn .icon-arrow {
    color: var(--color-white);
}

/* --------------------------------------------------------------------------
   05.13 Contato (Layout da Seção)
   -------------------------------------------------------------------------- */
.contact {
    position: relative;
    overflow: hidden;
    padding-top: 24px;
    padding-bottom: 0;
}

.contact .contact-home__inner {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--color-border-medium);
    padding-top: 54px;
    padding-bottom: 130px;
}

.contact .contact-home__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(380px, 0.84fr);
    gap: 60px;
    align-items: stretch;
}

.contact .contact-home__form-panel,
.contact .contact-home__aside {
    background: transparent;
    border: none;
    box-shadow: none;
}

.contact .contact-home__form-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 56px;
    padding: 0 60px 0 0;
    border-right: 1px solid var(--color-border);
}

.contact .contact-formfield--full {
    grid-column: span 2;
}

.contact .contact-formfield input,
.contact .contact-formfield textarea {
    width: 100%;
    border: none;
    outline: none;
    font-family: var(--font-family-base);
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.03em;
    background: transparent;
    border-bottom: 1px solid var(--color-border-input);
    transition: border-color 0.3s ease;
}

.contact .contact-formfield input {
    height: 46px;
}

.contact .contact-formfield textarea {
    min-height: 100px;
    padding: 10px 0 14px;
    resize: vertical;
}

.contact .contact-formfield input::placeholder,
.contact .contact-formfield textarea::placeholder {
    color: var(--color-text-soft);
}

.contact .contact-formfield input:focus,
.contact .contact-formfield textarea:focus {
    border-bottom-color: var(--color-primary);
}

.contact .submit-btn {
    margin-top: 32px;
}

.contact .contact-home__aside {
    display: flex;
    flex-direction: column;
}

.contact .contact-home__map-panel {
    padding: 0;
}

.contact .contact-home__map-frame {
    overflow: hidden;
    min-height: 500px;
    background: var(--color-surface-muted);
}

.contact .contact-home__map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: 0;
    filter: grayscale(1) contrast(1.02);
}

.contact .contact-home__info-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
}

.contact .contact-home__info-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    filter: none;
}

.contact .contact-home__info-list {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    border: 1px solid var(--color-border-soft);
    padding: 24px 32px;
    margin-top: 72px;
}

.contact .contact-home__info-divider {
    margin: 0;
    border: 0;
    width: 1px;
    flex: 0 0 1px;
    background: var(--color-border);
    align-self: stretch;
}

.contact .contact-home__info-item {
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
    max-width: none;
    min-width: 0;
    box-sizing: border-box;
    gap: 14px;
    padding: 0;
    border-top: none;
}

.contact .contact-home__info-item:last-child {
    justify-content: flex-end;
}

.contact .contact-home__info-copy h3 {
    margin: 0 0 4px;
    color: var(--color-primary);
    font-family: var(--font-family-base);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.contact .contact-home__contact-link {
    display: block;
    max-width: 100%;
    color: var(--color-text-muted);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.32;
    text-decoration: none;
}

.contact .contact-home__contact-link:hover {
    color: var(--color-accent-dark);
}

/* --- Responsivo --- */
@media (max-width: 1399px) {
    .contact .contact-formwrap {
        gap: 40px 40px;
    }

    .contact .contact-home__form-panel {
        padding-right: 40px;
    }

    .contact .contact-home__map-frame,
    .contact .contact-home__map-frame iframe {
        min-height: 420px;
    }
}

@media (max-width: 1199px) {
    .contact .contact-formwrap {
        gap: 30px 30px;
    }

    .contact .contact-home__inner {
        padding-top: 40px;
        padding-bottom: 80px;
    }

    .contact .contact-home__grid {
        grid-template-columns: 1fr;
    }

    .contact .contact-home__grid {
        gap: 36px;
    }

    .contact .contact-home__form-panel {
        gap: 32px;
        padding-right: 0;
        border-right: none;
    }

    .contact .contact-home__map-frame,
    .contact .contact-home__map-frame iframe {
        min-height: 320px;
    }

    .contact .contact-home__info-list {
        margin-top: 20px;
    }
}

@media (max-width: 991px) {
    .contact {
        padding-top: 8px;
    }

    .contact .contact-home__inner {
        padding-bottom: 60px;
    }

    .contact .contact-home__info-list {
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .contact .contact-formwrap {
        grid-template-columns: repeat(1, 1fr);
    }

    .contact .contact-formwrap .message {
        grid-column: auto;
    }

    .contact .contact-formwrap {
        gap: 28px;
    }

    .contact .contact-formfield--full {
        grid-column: auto;
    }

    .contact .contact-home__map-frame,
    .contact .contact-home__map-frame iframe {
        min-height: 280px;
    }

    .contact .contact-home__info-item {
        gap: 10px;
    }

    .contact .contact-home__info-icon {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .contact .contact-home__info-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact .contact-home__info-divider {
        display: none;
    }

    .contact .contact-home__info-item {
        max-width: 100%;
        justify-content: flex-start;
        padding-left: 0;
        padding-right: 0;
    }

    .section-kicker--line,
    .section-head .sub-title {
        font-size: 11px !important;
        line-height: 16px !important;
    }

    .about__title,
    .item-title {
        font-size: 18px;
        line-height: 24px;
    }

    .item-copy {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
}

@media (max-width: 575px) {
    .contact .contact-home__inner {
        padding-top: 32px;
        padding-bottom: 40px;
    }

    .contact .contact-formfield input,
    .contact .contact-formfield textarea {
        font-size: 14px;
    }

    .contact .submit-btn {
        margin-top: 20px;
    }

    .contact .contact-home__map-frame,
    .contact .contact-home__map-frame iframe {
        min-height: 220px;
    }

    .contact .contact-home__info-item {
        gap: 12px;
    }

    .contact .contact-home__info-icon {
        width: 26px;
        height: 26px;
        flex-basis: 26px;
    }

    .contact .contact-home__info-copy h3 {
        font-size: 11px;
    }

    .contact .contact-home__contact-link {
        font-size: 13px;
        line-height: 1.5;
    }

    .item-copy {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }

    .item-title {
        font-size: 17px;
        line-height: 22px;
    }

    .about .about__title {
        font-size: 15px;
        line-height: 22px;
    }
}

/* --------------------------------------------------------------------------
   05.14 Footer
   -------------------------------------------------------------------------- */
.footer {
    background-color: var(--color-primary);
    padding: 32px 0;
    font-family: var(--font-family-base);
}

.footer_container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    max-width: 1790px;
}

.footer p,
.footer small,
.footer a {
    color: var(--color-white);
    font-family: var(--font-family-base);
    line-height: 1.4;
}

.footer_lgpd-link,
.footer_copyright-title,
.footer_copyright-disclaimer,
.footer_author-text {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.footer_copyright-title {
    font-weight: 600;
}

.footer_lgpd-area {
    order: 1;
}

.footer_lgpd-list {
    display: block;
    justify-content: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_lgpd-link {
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.footer_lgpd-link::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border: solid var(--color-white);
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
    margin: 0 10px 1px 0;
}

.footer_copyright-area {
    text-align: center;
    order: 2;
    width: 56%;
}

.footer_copyright-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 8px;
}

.footer_copyright-disclaimer {
    display: block;
    text-wrap: balance;
    line-height: 1.4;
}

.footer_author-area {
    text-align: right;
    order: 3;
}

.footer_author-link {
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.footer_author-logo {
    display: inline-block;
    width: 60px;
    margin: 0 0 0 3px;
}

/* --- Responsivo --- */
@media (max-width: 1559px) {
    .footer {
        padding: 24px 0;
    }

    .footer_lgpd-link,
    .footer_copyright-disclaimer,
    .footer_author-text {
        font-size: 13px;
    }

    .footer_lgpd-link::before {
        width: 4px;
        height: 4px;
    }

    .footer_copyright-title {
        font-size: 14px;
        margin: 0 0 6px;
    }

    .footer_author-logo {
        width: 48px;
    }
}

@media (max-width: 1319px) {
    .footer {
        padding: 18px 0;
    }

    .footer_container {
        flex-direction: column;
        gap: 12px;
    }

    .footer_lgpd-link,
    .footer_copyright-title,
    .footer_copyright-disclaimer,
    .footer_author-text {
        font-size: 11px;
    }

    .footer_lgpd-area {
        order: 0;
    }

    .footer_lgpd-list {
        display: flex;
    }

    .footer_lgpd-link::before {
        width: 4px;
        height: 4px;
        margin: 0 6px 1px 0;
    }

    .footer_copyright-area {
        order: 0;
        width: auto;
    }

    .footer_copyright-title {
        font-size: 13px;
        font-weight: 500;
        margin: 0 0 4px;
    }

    .footer_author-area {
        order: 0;
    }

    .footer_author-logo {
        width: 44px;
    }
}

/* Hover-only: min-width para excluir touch devices */
@media (min-width: 1024px) {

    .footer_lgpd-link:hover,
    .footer_author-link:hover {
        opacity: 0.64;
    }
}