@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ========== TOKENS ========== */
:root {
    --cream: #F5EFE6;
    --cream-2: #EFE7DA;
    --paper: #FFFFFF;
    --sand: #D9CBB4;
    --sand-2: #C9B89A;
    --taupe: #4A4A4A;
    --taupe-2: #2E2E2E;
    --ink: #1F1B17;
    --ink-soft: #3B342C;
    --concrete: #7A7368;
    --line: rgba(31, 27, 23, .14);
    --line-strong: rgba(31, 27, 23, .32);

    /* FeelViana brand green */
    --green: #00833e;
    --green-soft: #1a9351;
    --green-deep: #006a30;

    --serif: 'Manrope', system-ui, -apple-system, Segoe UI, sans-serif;
    --display: 'Outfit', 'Manrope', system-ui, sans-serif;
    --sans: 'Manrope', system-ui, -apple-system, Segoe UI, sans-serif;

    --ease: cubic-bezier(.22, 1, .36, 1);

    --maxw: 1320px;
    --gutter: clamp(20px, 4vw, 56px);
}

/* ========== RESET ========== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

li::marker {
    content: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: 0;
    background: transparent;
    color: inherit;
}

ul,
ol,
dl {
    margin: 0;
    padding: 0;
    list-style: none;
}

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ========== TYPE PRIMITIVES ========== */
.display {
    font-family: var(--display);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.02;
    color: var(--ink);
    margin: 0;
}

.display em {
    font-style: normal;
    font-weight: 500;
    color: var(--green);
}

.display--xl {
    font-size: clamp(40px, 5.4vw, 88px);
}

.display--xxl {
    font-size: clamp(54px, 8vw, 140px);
    line-height: .96;
    letter-spacing: -0.028em;
}

.lede {
    font-size: clamp(18px, 1.35vw, 21px);
    line-height: 1.55;
    color: var(--ink-soft);
    margin: 0 0 1em;
    max-width: 56ch;
    text-wrap: pretty;
}

.eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--green);
}

.eyebrow--light {
    color: #00833e;
    font-weight: 700;
}

.numeral {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--green);
    font-feature-settings: "tnum";
}

.meta-label {
    display: block;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--concrete);
    margin-bottom: 6px;
}

.meta-label--light {
    color: rgba(255, 255, 255, .7);
}

.meta-value {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--ink);
}

.section-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.section-head::before {
    content: "";
    width: 56px;
    height: 1px;
    background: var(--green);
}

.section-head--center {
    justify-content: center;
    text-align: center;
}

/* ========== BUTTONS / LINKS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .6em;
    padding: 14px 22px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid var(--ink);
    background: transparent;
    color: var(--ink);
    border-radius: 999px;
    transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

.btn--ghost {
    padding: 10px 18px;
}

.btn {
    white-space: nowrap;
}

/* Language switch */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: inherit;
}

.lang-switch__btn {
    background: transparent;
    border: 0;
    padding: 6px 2px;
    cursor: pointer;
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
    opacity: .5;
    transition: opacity .2s var(--ease);
}

.lang-switch__btn:hover {
    opacity: 1;
}

.lang-switch__btn.is-active {
    opacity: 1;
    font-weight: 600;
}

.lang-switch__sep {
    opacity: .3;
}

.btn--solid {
    background: var(--green);
    color: var(--cream);
    border-color: var(--green);
}

.btn--solid:hover {
    background: var(--green-deep);
    border-color: var(--green-deep);
    color: var(--cream);
}

.btn--ghost:hover {
    background: var(--ink);
    color: var(--cream);
}

.btn--light {
    background: var(--cream);
    color: var(--ink);
    border-color: var(--cream);
}

.btn--light:hover {
    background: transparent;
    color: var(--cream);
    border-color: var(--cream);
}

.btn--lg {
    padding: 18px 28px;
    font-size: 12px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: .5em;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--green);
    color: var(--green);
    transition: gap .25s var(--ease), color .25s var(--ease);
}

.link-arrow:hover {
    gap: .9em;
    color: var(--green-deep);
}

.link-arrow--sm {
    font-size: 11px;
    letter-spacing: .2em;
}

/* ========== NAV ========== */
.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    padding: 18px 0;
    background: rgba(245, 239, 230, .78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: background .3s var(--ease);
}

.nav.is-top {
    background: transparent;
    border-bottom-color: transparent;
}

.nav.is-top,
.nav.is-top a {
    color: var(--cream);
}

.nav.is-top .btn {
    border-color: rgba(245, 239, 230, .5);
    color: var(--cream);
}

.nav.is-top .btn:hover {
    background: var(--cream);
    color: var(--ink);
    border-color: var(--cream);
}

.nav__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__brand-logo {
    display: block;
    height: clamp(44px, 5.5vw, 80px);
    width: auto;
    transition: opacity .3s var(--ease);
}

.nav__brand-logo--white {
    display: none;
}

.nav.is-top .nav__brand-logo--green {
    display: none;
}

.nav.is-top .nav__brand-logo--white {
    display: block;
}

.nav__brand-mark {
    font-family: var(--display);
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: var(--green);
}

.nav__brand-mark .amp {
    font-size: .8em;
    opacity: .8;
    margin: 0 1px;
}

.nav__brand-word {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.nav__links {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.nav__links a {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: .15em;
    text-transform: uppercase;
    position: relative;
}

/* .nav__links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
}

.nav__links a:hover::after {
    transform: scaleX(1);
} */

.nav__links ul.nav__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* ou o que já tens no nav__links */
    gap: inherit;
    align-items: inherit;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: flex-end;
}

.nav__phone {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: .1em;
    white-space: nowrap;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    color: var(--cream);
    overflow: hidden;
    isolation: isolate;
}

.hero__slides {
    position: absolute;
    inset: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.1s var(--ease);
    pointer-events: none;
}

.hero__slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 8s linear;
}

.hero__slide.is-active .hero__media img {
    transform: scale(1.0);
}

.hero__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 12, 10, .55) 0%, rgba(15, 12, 10, .18) 30%, rgba(15, 12, 10, .18) 55%, rgba(15, 12, 10, .78) 100%);
}

/* slider controls */
.hero__controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 38px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    pointer-events: none;
}

.hero__controls>* {
    pointer-events: auto;
}

.hero__btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(245, 239, 230, .55);
    background: rgba(20, 16, 12, .18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}

.hero__btn:hover {
    background: var(--cream);
    color: var(--ink);
    border-color: var(--cream);
}

.hero__dots {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero__dot {
    width: 32px;
    height: 2px;
    background: rgba(245, 239, 230, .4);
    border: 0;
    cursor: pointer;
    transition: background .25s var(--ease), width .25s var(--ease);
    padding: 0;
}

.hero__dot.is-active {
    background: var(--green);
    width: 56px;
}

.hero__counter {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: .22em;
    color: rgba(245, 239, 230, .85);
    font-feature-settings: "tnum";
    min-width: 56px;
    text-align: left;
}

.hero__rail {
    display: none;
}

.hero__rail--left {
    left: var(--gutter);
}

.hero__rail--right {
    right: var(--gutter);
}

.rail-label {
    position: absolute;
    bottom: 36vh;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: .3em;
    text-transform: uppercase;
    white-space: nowrap;
    transform: rotate(-90deg);
    transform-origin: left bottom;
    color: rgba(245, 239, 230, .7);
}

.hero__rail--left .rail-label {
    left: 18px;
}

.hero__rail--right .rail-label {
    right: 18px;
    transform: rotate(90deg);
    transform-origin: right bottom;
}

.hero__content {
    position: relative;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 calc(var(--gutter) + 32px);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 14vh;
}

.hero__title {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(48px, 8vw, 132px);
    line-height: .98;
    letter-spacing: -0.022em;
    margin: 16px 0 24px;
}

.hero__title em {
    font-style: normal;
    font-weight: 500;
    color: #00833e;
    text-shadow: 0 2px 30px rgba(0, 0, 0, .45);
}

.hero__title .line {
    display: block;
}

.hero__title .line:nth-child(3) {
    padding-left: clamp(0px, 8vw, 120px);
}

.hero__lede {
    max-width: 46ch;
    font-size: clamp(18px, 1.4vw, 22px);
    font-weight: 300;
    color: rgba(245, 239, 230, .92);
    margin: 0 0 56px;
}

.hero__meta {
    display: flex;
    gap: 56px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid rgba(245, 239, 230, .25);
}

.hero__meta .meta-label {
    color: rgba(245, 239, 230, .65);
}

.hero__meta .meta-value {
    color: var(--cream);
    font-size: 17px;
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(245, 239, 230, .8);
    z-index: 2;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, rgba(245, 239, 230, .7), rgba(245, 239, 230, 0));
    animation: heroPulse 2.4s var(--ease) infinite;
}

@keyframes heroPulse {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ========== 01 · PROJETO ========== */
.projeto {
    padding: clamp(80px, 12vw, 160px) 0;
    background: var(--cream);
}

.projeto__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
    position: relative;
}

.projeto__media {
    margin: 0;
}

.projeto__media img,
.projeto__media .projeto__video {
    width: 100%;
    height: clamp(420px, 60vw, 720px);
    object-fit: cover;
    filter: contrast(1.05) saturate(.92);
}

.projeto__media--accent {
    position: absolute;
    right: -4%;
    bottom: -10%;
    width: clamp(150px, 14vw, 200px);
    z-index: 2;
    border: 8px solid var(--cream);
    box-shadow: 0 24px 40px -28px rgba(31, 27, 23, .35);
}

.projeto__media--accent img {
    height: clamp(200px, 22vw, 280px);
}

/* Projeto — YouTube poster + play */
.projeto__video {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: var(--ink);
    cursor: pointer;
    overflow: hidden;
    color: var(--cream);
    font: inherit;
}

.projeto__video-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) saturate(.92);
    transition: transform .6s var(--ease), filter .4s var(--ease);
}

.projeto__video-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(31, 27, 23, .05) 0%, rgba(31, 27, 23, .35) 100%);
    transition: background .3s var(--ease);
    pointer-events: none;
}

.projeto__video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: clamp(72px, 8vw, 96px);
    height: clamp(72px, 8vw, 96px);
    border-radius: 999px;
    background: var(--cream);
    color: var(--green-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 24px 50px -22px rgba(31, 27, 23, .55);
    transition: transform .3s var(--ease), background .25s var(--ease), color .25s var(--ease);
}

.projeto__video-play svg {
    margin-left: 4px;
    /* optical center for the triangle */
}

.projeto__video-label {
    position: absolute;
    left: 50%;
    bottom: clamp(20px, 3vw, 36px);
    transform: translateX(-50%);
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--cream);
    text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
    pointer-events: none;
}

.projeto__video:hover .projeto__video-poster {
    transform: scale(1.03);
}

.projeto__video:hover .projeto__video-scrim {
    background: linear-gradient(180deg, rgba(31, 27, 23, .15) 0%, rgba(31, 27, 23, .45) 100%);
}

.projeto__video:hover .projeto__video-play {
    transform: translate(-50%, -50%) scale(1.06);
    background: var(--green);
    color: var(--cream);
}

.projeto__video:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 4px;
}

.projeto__video.is-playing .projeto__video-poster,
.projeto__video.is-playing .projeto__video-scrim,
.projeto__video.is-playing .projeto__video-play,
.projeto__video.is-playing .projeto__video-label {
    display: none;
}

.projeto__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.projeto__copy {
    max-width: 580px;
}

.projeto__copy h2 {
    margin-top: 6px;
    margin-bottom: 28px;
}

.projeto__copy p {
    color: var(--ink-soft);
    margin: 0 0 1em;
}

.projeto__signoff {
    margin-top: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.signature {
    font-family: var(--display);
    font-style: normal;
    font-weight: 500;
    font-size: 19px;
    color: var(--green);
    letter-spacing: -0.01em;
}

/* ========== 02 · ACOMODAÇÕES (vertical, 2 tipologias) ========== */
.acom {
    padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 100px);
    background: var(--cream-2);
}

.acom__head {
    margin-bottom: clamp(64px, 8vw, 112px);
}

.acom__head-row {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: end;
    margin-top: 12px;
}

.acom__head-aside {
    max-width: 460px;
}

.acom__intro {
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0 0 28px;
}

.acom__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 24px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.acom__stats dt {
    font-family: var(--display);
    font-size: clamp(28px, 2.6vw, 40px);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    line-height: 1;
}

.acom__stats dd {
    margin: 0;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--concrete);
}

/* type block */
.acom__type {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
    margin-bottom: clamp(80px, 10vw, 140px);
}

.acom__type--reverse .acom__slider {
    order: 2;
}

.acom__type--reverse .acom__copy {
    order: 1;
}

/* slider */
.acom__slider {
    position: relative;
    overflow: hidden;
    background: var(--cream);
    aspect-ratio: 4/5;
    min-height: 480px;
}

.acom__slides {
    position: absolute;
    inset: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.acom__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .7s var(--ease);
    pointer-events: none;
}

.acom__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.acom__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) saturate(.95);
}

.acom__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 1px solid rgba(245, 239, 230, .7);
    border-radius: 999px;
    background: rgba(31, 27, 23, .32);
    backdrop-filter: blur(6px);
    color: var(--cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .25s var(--ease), border-color .25s var(--ease);
    z-index: 3;
}

.acom__nav:hover {
    background: var(--cream);
    color: var(--ink);
    border-color: var(--cream);
}

.acom__nav--prev {
    left: 18px;
}

.acom__nav--next {
    right: 18px;
}

.acom__dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.acom__dot {
    width: 24px;
    height: 2px;
    background: rgba(245, 239, 230, .45);
    border: 0;
    cursor: pointer;
    transition: background .25s var(--ease), width .25s var(--ease);
}

.acom__dot.is-active {
    background: var(--cream);
    width: 36px;
}

.acom__counter {
    position: absolute;
    top: 18px;
    right: 20px;
    padding: 6px 12px;
    background: rgba(245, 239, 230, .92);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: .2em;
    font-feature-settings: "tnum";
    z-index: 3;
}

.acom__counter-sep {
    margin: 0 6px;
    color: var(--line-strong);
}

/* copy */
.acom__copy {
    max-width: 520px;
}

.acom__index {
    display: inline-block;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line-strong);
}

.acom__title {
    margin: 0 0 22px;
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(40px, 5.4vw, 88px);
    line-height: 1.0;
    letter-spacing: -0.022em;
}

.acom__title em {
    font-style: normal;
    color: var(--green);
    font-weight: 500;
}

.acom__lede {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0 0 32px;
    max-width: 44ch;
}

.acom__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 0 0 36px;
    border-top: 1px solid var(--line);
}

.acom__features li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.acom__features li:nth-child(odd) {
    padding-right: 18px;
    border-right: 1px solid var(--line);
}

.acom__features li:nth-child(even) {
    padding-left: 18px;
}

.acom__feat-key {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--concrete);
    flex: 0 0 auto;
}

.acom__feat-val {
    font-family: var(--serif);
    font-size: 15px;
    color: var(--ink);
    text-align: right;
}

/* shared principles */
.acom__principles {
    margin-top: clamp(40px, 6vw, 80px);
    padding-top: 48px;
    border-top: 1px solid var(--line);
    text-align: center;
}

.acom__principles-head {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 0 auto 48px;
}

.acom__principles-head::after {
    content: "";
    width: 56px;
    height: 1px;
    background: var(--green);
}

.acom__principles ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(16px, 2.4vw, 32px);
    list-style: none;
    margin: 0;
    padding: 0;
}

.acom__principles li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 8px 4px;
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(15px, 1.15vw, 18px);
    color: var(--ink);
    letter-spacing: -0.005em;
    line-height: 1.25;
    text-wrap: balance;
}

.acom__principles li svg {
    color: var(--green);
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.acom__title-icon {
    display: inline-flex;
    vertical-align: middle;
    margin-right: 14px;
    color: var(--green);
    width: clamp(36px, 4vw, 56px);
    height: clamp(36px, 4vw, 56px);
}

.acom__title-icon svg {
    width: 100%;
    height: 100%;
}

/* ========== TENDAS — pinned horizontal ========== */
.pintendas {
    position: relative;
    height: 600vh;
    /* travel distance for horizontal scroll */
    background: var(--cream-2);
}

.pintendas__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.pintendas__inner {
    display: flex;
    align-items: center;
    gap: clamp(28px, 3vw, 56px);
    padding: 0 var(--gutter);
    will-change: transform;
    height: 100%;
}

.pinpanel--intro {
    flex: 0 0 clamp(420px, 44vw, 640px);
    height: 100%;
    display: flex;
    align-items: center;
}

.pinintro {
    max-width: 520px;
}

.pinintro h2 {
    margin: 12px 0 28px;
}

.pinintro__lede {
    font-size: 18px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 44ch;
    margin: 0 0 36px;
}

.pinintro__hint {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--taupe);
}

.pinintro__hint-line {
    width: 56px;
    height: 1px;
    background: var(--line-strong);
}

.pincard {
    flex: 0 0 clamp(320px, 36vw, 480px);
    height: clamp(540px, 76vh, 720px);
    background: var(--paper);
    display: flex;
    flex-direction: column;
    transition: transform .4s var(--ease);
}

.pincard__media {
    position: relative;
    margin: 0;
    flex: 0 0 64%;
    overflow: hidden;
}

.pincard__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) saturate(.94);
}

.pincard__num {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 6px 12px;
    background: var(--cream);
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.pincard__body {
    padding: 28px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.pincard__title {
    margin: 0;
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(28px, 2.4vw, 38px);
    line-height: 1.1;
    letter-spacing: -0.015em;
}

.pincard__title em {
    font-style: normal;
    color: var(--green);
    font-weight: 500;
}

.pincard__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--concrete);
}

.pincard__meta li+li::before {
    content: "·";
    margin-right: 14px;
    color: var(--line-strong);
}

.pincard__body p {
    font-size: 15px;
    color: var(--ink-soft);
    margin: 4px 0 8px;
}

.pincard__foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.pincard__price {
    font-family: var(--display);
    font-size: 22px;
}

.pincard__price small {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: .12em;
    color: var(--concrete);
    margin-left: 4px;
}

.pintendas__progress {
    position: absolute;
    left: var(--gutter);
    right: var(--gutter);
    bottom: 40px;
    height: 1px;
    background: var(--line-strong);
}

.pintendas__progress span {
    display: block;
    height: 3px;
    margin-top: -1px;
    width: 0%;
    background: var(--ink);
    transition: width .12s linear;
}

.carousel {
    position: relative;
}

.carousel__track {
    display: flex;
    gap: 28px;
    padding: 8px var(--gutter) 8px var(--gutter);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.carousel__track::-webkit-scrollbar {
    display: none;
}

.tcard {
    flex: 0 0 clamp(280px, 32vw, 440px);
    scroll-snap-align: start;
    background: var(--paper);
    display: flex;
    flex-direction: column;
    transition: transform .4s var(--ease);
}

.tcard:hover {
    transform: translateY(-4px);
}

.tcard__media {
    position: relative;
    margin: 0;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.tcard__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
    filter: contrast(1.04) saturate(.94);
}

.tcard:hover .tcard__media img {
    transform: scale(1.04);
}

.tcard__price {
    position: absolute;
    left: 16px;
    top: 16px;
    padding: 6px 12px;
    background: var(--cream);
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: .12em;
    border-radius: 999px;
}

.tcard__body {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.tcard__index {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--taupe);
}

.tcard__title {
    margin: 0;
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(26px, 2.3vw, 36px);
    line-height: 1.1;
    letter-spacing: -0.015em;
}

.tcard__title em {
    font-style: normal;
    font-weight: 500;
    color: var(--green);
}

.tcard__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: .12em;
    color: var(--concrete);
    text-transform: uppercase;
}

.tcard__meta li+li::before {
    content: "·";
    margin-right: 14px;
    color: var(--line-strong);
}

.tcard__body p {
    font-size: 16px;
    color: var(--ink-soft);
    margin: 4px 0 8px;
}

.tcard__body .link-arrow {
    margin-top: auto;
    align-self: flex-start;
}

.carousel__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 40px;
}

.carousel__progress {
    flex: 1;
    height: 1px;
    background: var(--line-strong);
    position: relative;
    max-width: 480px;
}

.carousel__progress span {
    position: absolute;
    top: -1px;
    left: 0;
    height: 3px;
    width: 25%;
    background: var(--ink);
    transition: left .3s var(--ease), width .3s var(--ease);
}

.carousel__buttons {
    display: flex;
    gap: 12px;
}

.cbtn {
    width: 52px;
    height: 52px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .25s var(--ease), color .25s var(--ease);
}

.cbtn:hover {
    background: var(--ink);
    color: var(--cream);
}

/* ========== 03 · CARAVANING ========== */
.caravan {
    padding: clamp(80px, 12vw, 160px) 0;
    background: var(--cream);
}

.caravan__head {
    margin-bottom: 24px;
}

.caravan__title {
    margin: 0 0 80px;
}

.caravan__title>span {
    display: block;
}

.caravan__title-row {
    display: inline-flex;
    align-items: center;
    gap: clamp(14px, 1.6vw, 24px);
    flex-wrap: wrap;
}

.caravan__title-img {
    display: inline-block;
    vertical-align: middle;
    width: clamp(140px, 18vw, 260px);
    aspect-ratio: 3/2;
    overflow: hidden;
}

.caravan__title-img--a {
    aspect-ratio: 3/2;
}

.caravan__title-img--b {
    aspect-ratio: 4/2.4;
    width: clamp(160px, 20vw, 300px);
}

.caravan__title-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(.15) contrast(1.05);
}

.caravan__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: stretch;
}

.caravan__photo {
    margin: 0;
    position: relative;
}

.caravan__photo img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    filter: contrast(1.05);
}

.caravan__photo figcaption {
    position: absolute;
    left: 20px;
    bottom: 20px;
    padding: 8px 14px;
    background: var(--cream);
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.caravan__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 520px;
}

.caravan__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
    margin: 32px 0 40px;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.caravan__features dt {
    font-family: var(--display);
    font-size: clamp(34px, 3.4vw, 52px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 6px;
}

.caravan__features dd {
    margin: 0;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--concrete);
}

/* caravan list */
.caravan__list {
    list-style: none;
    margin: 32px 0 36px;
    padding: 0;
    border-top: 1px solid var(--line);
}

.caravan__list li {
    display: grid;
    grid-template-columns: minmax(160px, 0.9fr) 1.4fr;
    gap: 18px;
    align-items: baseline;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.caravan__list-key {
    font-family: var(--display);
    font-size: clamp(20px, 1.8vw, 26px);
    letter-spacing: -0.015em;
    line-height: 1.1;
}

.caravan__list-val {
    font-family: var(--serif);
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.5;
}

/* ========== 05 · HYROX PERFORMANCE CENTER ========== */
.hyrox {
    position: relative;
    padding: clamp(80px, 12vw, 160px) 0;
    background: var(--cream-2);
    overflow: hidden;
    isolation: isolate;
}

.hyrox__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.hyrox__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.09;
    filter: grayscale(.6) contrast(1.1);
    mix-blend-mode: multiply;
}

.hyrox__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--cream-2) 0%, rgba(239, 231, 218, .4) 30%, rgba(239, 231, 218, .4) 70%, var(--cream-2) 100%);
}

.hyrox__head {
    position: relative;
    text-align: center;
    margin: 0 auto 80px;
    max-width: 920px;
}

.hyrox__head .section-head {
    justify-content: center;
}

.hyrox__head .section-head::before {
    display: none;
}

.hyrox__title {
    margin: 12px auto 24px;
}

.hyrox__lede {
    color: var(--ink-soft);
    font-size: 18px;
    margin: 0 auto;
    max-width: 58ch;
    font-style: italic;
    text-wrap: pretty;
}

.hyrox__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.hyfac {
    position: relative;
    isolation: isolate;
    background: transparent;
    padding: 44px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 320px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: color .35s var(--ease);
    cursor: default;
    overflow: hidden;
}

.hyfac::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hover);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity .55s var(--ease), transform .9s var(--ease);
    z-index: -2;
}

.hyfac::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 16, 12, .45) 0%, rgba(20, 16, 12, .65) 60%, rgba(20, 16, 12, .78) 100%);
    opacity: 0;
    transition: opacity .55s var(--ease);
    z-index: -1;
}

.hyfac:hover {
    color: var(--cream);
}

.hyfac:hover::before {
    opacity: 1;
    transform: scale(1.0);
}

.hyfac:hover::after {
    opacity: 1;
}

.hyfac:hover .hyfac__icon,
.hyfac:hover .hyfac__title,
.hyfac:hover .hyfac__title em,
.hyfac:hover p {
    color: var(--cream);
}

/* remove outer borders */
.hyfac:nth-child(4n) {
    border-right: 0;
}

.hyfac:nth-last-child(-n+4) {
    border-bottom: 0;
}

.hyfac__icon {
    margin: 4px 0 10px;
    color: var(--green);
    transition: color .35s var(--ease);
}

.hyfac__title {
    margin: 0;
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(22px, 1.9vw, 30px);
    letter-spacing: -0.018em;
    line-height: 1.1;
    transition: color .35s var(--ease);
}

.hyfac__title em {
    font-style: normal;
    font-weight: 500;
    color: var(--green);
    transition: color .35s var(--ease);
}

.hyfac p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.55;
    transition: color .35s var(--ease);
}

/* ========== 05 · BEM-ESTAR (legacy) ========== */
.bemestar {
    padding: clamp(80px, 12vw, 160px) 0;
    background: var(--cream-2);
}

.bemestar__head {
    text-align: center;
    margin: 0 auto 80px;
    max-width: 920px;
}

.bemestar__head .section-head {
    justify-content: center;
}

.bemestar__head .section-head::before {
    display: none;
}

.bemestar__title {
    margin: 12px auto 24px;
}

.bemestar__lede {
    color: var(--ink-soft);
    font-size: 18px;
    margin: 0 auto;
    max-width: 56ch;
    font-style: italic;
}

.services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.service {
    padding: 48px 32px 44px;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background .3s var(--ease);
}

.service:last-child {
    border-right: 0;
}

.service:hover {
    background: var(--cream);
}

.service__num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    color: var(--taupe);
}

.service__icon {
    margin: 8px 0 12px;
    color: var(--green);
}

.service__title {
    margin: 0;
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(22px, 1.9vw, 28px);
    letter-spacing: -0.015em;
    line-height: 1.15;
}

.service__title em {
    font-style: normal;
    font-weight: 500;
    color: var(--green);
}

.service p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 16px;
}

.service__tag {
    margin-top: auto;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--taupe);
    padding-top: 18px;
}

/* ========== 05 · BANNER DESTAQUE ========== */
.feature {
    position: relative;
    isolation: isolate;
    color: var(--cream);
    padding: clamp(120px, 18vw, 220px) 0;
    overflow: hidden;
}

.feature__media {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 16, 12, .55), rgba(20, 16, 12, .78));
}

.feature__content {
    text-align: center;
}

.feature__content .eyebrow {
    color: rgba(245, 239, 230, .78);
}

.feature__quote {
    margin: 18px auto 56px;
    color: var(--cream);
    max-width: 14ch;
}

.feature__quote em {
    color: #6ddc9a;
    font-style: normal;
    font-weight: 500;
}

.feature__cta {
    display: inline-flex;
    align-items: center;
    gap: clamp(20px, 4vw, 56px);
    padding: 24px 32px;
    border-top: 1px solid rgba(245, 239, 230, .3);
    border-bottom: 1px solid rgba(245, 239, 230, .3);
    flex-wrap: wrap;
    justify-content: center;
}

.feature__price {
    text-align: left;
}

.feature__amount {
    display: block;
    font-family: var(--display);
    font-size: clamp(32px, 3.4vw, 50px);
    font-weight: 400;
    letter-spacing: 0;
}

.feature__amount small {
    font-size: .45em;
    font-family: var(--sans);
    letter-spacing: .1em;
    color: rgba(245, 239, 230, .7);
    margin-left: 6px;
}

/* ========== 06 · CONTACT ========== */
.contact {
    padding: clamp(80px, 12vw, 160px) 0;
    background: var(--cream);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(40px, 6vw, 96px);
}

.contact__aside h2 {
    margin: 8px 0 24px;
}

.contact__info {
    margin-top: 40px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
    padding-top: 32px;
}

.contact__info li {
    font-size: 16px;
    color: var(--ink-soft);
}

/* form */
.form {
    background: var(--paper);
    padding: clamp(28px, 4vw, 48px);
    display: grid;
    gap: 22px;
    border: 1px solid var(--line);
}

.form__row {
    display: grid;
    gap: 22px;
}

.form__row--2 {
    grid-template-columns: 1fr 1fr;
}

.form__row--3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.field {
    display: block;
}

.field__label {
    display: block;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 8px;
}

.field__opt {
    font-style: italic;
    letter-spacing: .05em;
    text-transform: none;
    color: var(--concrete);
    font-size: 10px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line-strong);
    padding: 10px 0 12px;
    font-family: var(--serif);
    font-size: 18px;
    color: var(--ink);
    outline: none;
    transition: border-color .25s var(--ease);
    border-radius: 0;
    appearance: none;
}

.field textarea {
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--concrete);
    font-style: italic;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--ink);
}

.field select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%231F1B17' stroke-width='1.2'/></svg>");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 24px;
}

.checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-family: var(--sans);
    font-size: 12px;
    color: var(--ink-soft);
    line-height: 1.5;
}

.checkbox input {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid var(--line-strong);
    border-radius: 2px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    margin-top: 2px;
}

.checkbox input:checked {
    background: var(--ink);
    border-color: var(--ink);
}

.checkbox input:checked::after {
    content: "";
    width: 8px;
    height: 4px;
    border-left: 1.5px solid var(--cream);
    border-bottom: 1.5px solid var(--cream);
    transform: rotate(-45deg) translate(1px, -1px);
}

.checkbox a {
    text-decoration: underline;
}

.form__success {
    margin: 0;
    padding: 14px 16px;
    background: var(--cream-2);
    border-left: 2px solid var(--taupe);
    font-style: italic;
    color: var(--ink);
}

/* ========== GALERIA — coverflow ========== */
.galeria {
    padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 100px);
    background: var(--cream);
    overflow: hidden;
}

.galeria__head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(24px, 5vw, 80px);
    align-items: end;
    margin-bottom: 56px;
}

.galeria__head .section-head {
    margin-bottom: 0;
}

.galeria__head h2 {
    justify-self: end;
    text-align: right;
}

.galeria__stage {
    position: relative;
    height: clamp(420px, 56vw, 640px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.galeria__rail {
    position: relative;
    width: 100%;
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gslide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(360px, 48vw, 720px);
    height: clamp(420px, 56vw, 640px);
    transform: translate(-50%, -50%) scale(.7);
    opacity: 0;
    pointer-events: none;
    transition: transform .7s var(--ease), opacity .7s var(--ease), filter .7s var(--ease);
    overflow: hidden;
    background: var(--cream-2);
}

.gslide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05);
}

.gslide__cap {
    position: absolute;
    left: 24px;
    bottom: 24px;
    padding: 8px 14px;
    background: rgba(245, 239, 230, .94);
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ink);
    opacity: 0;
    transition: opacity .5s var(--ease) .2s;
}

.gslide.is-center {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    z-index: 3;
    pointer-events: auto;
    box-shadow: 0 40px 80px -40px rgba(31, 27, 23, .45);
}

.gslide.is-center .gslide__cap {
    opacity: 1;
}

.gslide.is-left,
.gslide.is-right {
    width: clamp(220px, 26vw, 360px);
    height: clamp(280px, 36vw, 440px);
    opacity: .55;
    filter: grayscale(.2) brightness(.85);
    z-index: 2;
}

.gslide.is-left {
    transform: translate(calc(-50% - clamp(220px, 30vw, 420px)), -50%) scale(1);
}

.gslide.is-right {
    transform: translate(calc(-50% + clamp(220px, 30vw, 420px)), -50%) scale(1);
}

.gslide.is-far-left,
.gslide.is-far-right {
    width: clamp(140px, 16vw, 220px);
    height: clamp(200px, 24vw, 300px);
    opacity: .2;
    filter: grayscale(.4) brightness(.7);
    z-index: 1;
}

.gslide.is-far-left {
    transform: translate(calc(-50% - clamp(380px, 52vw, 720px)), -50%) scale(1);
}

.gslide.is-far-right {
    transform: translate(calc(-50% + clamp(380px, 52vw, 720px)), -50%) scale(1);
}

.galeria__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(245, 239, 230, .92);
    backdrop-filter: blur(8px);
}

.galeria__nav--prev {
    left: clamp(16px, 4vw, 56px);
}

.galeria__nav--next {
    right: clamp(16px, 4vw, 56px);
}

.galeria__foot {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.galeria__count {
    font-family: var(--display);
    font-size: clamp(20px, 1.8vw, 28px);
    letter-spacing: -0.01em;
    color: var(--ink);
    font-feature-settings: "tnum";
}

.galeria__count-sep {
    color: var(--line-strong);
    margin: 0 8px;
}

/* ========== TESTEMUNHOS ========== */
.testimonials {
    padding: clamp(80px, 12vw, 160px) 0;
    background: var(--cream-2);
}

.testimonials__head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 72px;
}

.testimonials__head .section-head {
    justify-content: center;
}

.testimonials__head .section-head::before {
    display: none;
}

.testimonials__head h2 {
    margin-top: 12px;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.quote {
    margin: 0;
    background: var(--paper);
    padding: 48px 36px 36px;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.quote:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 40px -28px rgba(31, 27, 23, .35);
}

.quote--featured {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
}

.quote__mark {
    position: absolute;
    top: 18px;
    left: 24px;
    font-family: var(--display);
    font-size: 84px;
    line-height: .7;
    color: var(--taupe-2);
    opacity: .45;
}

.quote--featured .quote__mark {
    color: var(--sand);
    opacity: .55;
}

.quote blockquote {
    margin: 16px 0 28px;
    font-family: var(--serif);
    font-size: 19px;
    font-style: italic;
    line-height: 1.5;
    color: var(--ink-soft);
    flex: 1;
}

.quote--featured blockquote {
    color: rgba(245, 239, 230, .92);
}

.quote blockquote em {
    font-style: normal;
    color: var(--taupe-2);
}

.quote--featured blockquote em {
    color: var(--sand);
}

.quote figcaption {
    display: grid;
    gap: 4px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.quote--featured figcaption {
    border-top-color: rgba(245, 239, 230, .2);
}

.quote__author {
    font-family: var(--display);
    font-size: 20px;
    letter-spacing: -0.01em;
}

.quote__meta {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--concrete);
}

.quote--featured .quote__meta {
    color: rgba(245, 239, 230, .6);
}

.quote__stars {
    margin-top: 6px;
    letter-spacing: .12em;
    font-size: 11px;
    color: var(--taupe);
}

.quote--featured .quote__stars {
    color: var(--sand);
}

.testimonials__foot {
    margin-top: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonials__score {
    font-family: var(--display);
    font-size: clamp(28px, 3vw, 44px);
    letter-spacing: -0.01em;
}

/* ========== INSTAGRAM ========== */
.insta {
    padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 100px);
    background: var(--cream);
}

.insta__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.insta__head-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.insta__grid {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
}

.igitem {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    display: block;
}

.igitem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
    filter: contrast(1.04);
}

.igitem:hover img {
    transform: scale(1.06);
}

.igitem__overlay {
    position: absolute;
    inset: 0;
    background: rgba(31, 27, 23, .55);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity .3s var(--ease);
}

.igitem:hover .igitem__overlay {
    opacity: 1;
}

.igitem__icon {
    display: inline-flex;
}

.igitem__likes {
    font-family: var(--sans);
    font-size: 13px;
    letter-spacing: .08em;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--ink);
    color: var(--cream);
    padding: 72px 0 28px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(245, 239, 230, .18);
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 360px;
    align-items: flex-start;
}

.footer__brand img {
    display: block;
    height: 84px;
    width: auto;
    max-width: 100%;
}

.footer__brand p {
    margin: 0;
    color: rgba(245, 239, 230, .7);
    font-size: 15px;
}

.footer__links,
.footer__social {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.footer__links a,
.footer__social a {
    color: rgba(245, 239, 230, .85);
    transition: color .25s var(--ease);
}

.footer__links a:hover,
.footer__social a:hover {
    color: var(--cream);
}

.footer__legal {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 24px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: .14em;
    color: rgba(245, 239, 230, .55);
    text-transform: uppercase;
}

.projeto .projeto__lede p {
    font-size: 17px;
    opacity: 1;
    transform: translateY(0px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.projeto .projeto__lede p:first-child {
    font-size: 19px;
    font-weight: 600;
}

.acom__principles img {
    width: 36px;
    height: auto;
}

.contact form {
    background: var(--paper);
    display: grid;
    gap: 22px;
}

.contact form textarea {
    height: 120px;
}

.contact form .wpcf7-acceptance label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-family: var(--sans);
    font-size: 12px;
    color: var(--ink-soft);
    line-height: 1.5;
}

.contact form .wpcf7-list-item {
    margin: 0;
}

.contact form .wpcf7-submit {
    text-align: left;
    cursor: pointer;
}

.wpcf7-not-valid-tip {
    font-size: 14px;
}

.wpcf7 form .wpcf7-response-output {
    margin-top: 0;
    font-size: 14px;
    border-radius: 10px;
}

.hero__btn svg,
.acom__nav svg,
.galeria__nav svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}






/* -------------------------------------------*-----------------*--------------------------------------------------*/
/*                    -----------------------*   MEDIA QUERIES   *------------------------                         */
/* -------------------------------------------*-----------------*--------------------------------------------------*/



/* --- 1180px --- */
@media (max-width: 1180px) {
    .nav__phone {
        display: none;
    }
}

/* --- 1040px --- */
@media (max-width: 1040px) {
    .lang-switch {
        font-size: 11px;
    }

    .nav__links {
        gap: 22px;
    }

    .nav__links a {
        font-size: 11px;
        letter-spacing: .12em;
    }
}

/* --- 900px --- */
@media (max-width: 900px) {

    /* Nav */
    .nav__inner {
        grid-template-columns: auto auto;
    }

    .nav__links {
        display: none;
    }

    .nav__actions .btn {
        display: none;
    }

    /* Projeto */
    .projeto__grid {
        grid-template-columns: 1fr;
    }

    .projeto__media--accent {
        position: static;
        width: clamp(140px, 42vw, 220px);
        margin: 24px 0 0 auto;
        border-width: 6px;
    }

    .projeto__media--accent img {
        height: auto;
        aspect-ratio: 3/4;
    }

    /* Acomodações */
    .acom__head-row {
        grid-template-columns: 1fr;
    }

    .acom__type {
        grid-template-columns: 1fr;
    }

    .acom__type--reverse .acom__slider {
        order: 0;
    }

    .acom__type--reverse .acom__copy {
        order: 0;
    }

    .acom__slider {
        aspect-ratio: 4/3;
        min-height: 320px;
        width: 100%;
    }

    .acom__features {
        grid-template-columns: 1fr;
    }

    .acom__features li:nth-child(odd) {
        padding-right: 0;
        border-right: 0;
    }

    .acom__features li:nth-child(even) {
        padding-left: 0;
    }

    .acom__principles {
        text-align: center;
    }

    .acom__principles ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 20px;
    }

    .acom__counter {
        top: 12px;
        right: 12px;
        font-size: 10px;
    }

    /* Pintendas */
    .pintendas {
        height: auto;
    }

    .pintendas__sticky {
        position: static;
        height: auto;
    }

    .pintendas__inner {
        flex-direction: column;
        height: auto;
        padding: 80px var(--gutter);
    }

    .pinpanel--intro {
        flex: 0 0 auto;
        height: auto;
    }

    .pincard {
        flex: 0 0 auto;
        height: auto;
        width: 100%;
        max-width: 480px;
    }

    .pincard__media {
        flex: 0 0 auto;
        aspect-ratio: 4/3;
    }

    .pintendas__progress {
        display: none;
    }

    /* Tendas */
    .tendas__head-row {
        grid-template-columns: 1fr;
    }

    /* Caravaning */
    .caravan__grid {
        grid-template-columns: 1fr;
    }

    .caravan__photo img {
        min-height: 360px;
    }

    .caravan__title-img {
        width: clamp(110px, 28vw, 180px);
    }

    .caravan__title-img--b {
        width: clamp(120px, 30vw, 200px);
    }

    .caravan__title-row {
        gap: 10px;
    }

    .caravan__features {
        grid-template-columns: 1fr 1fr;
    }

    /* Hyrox */
    .hyrox__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hyfac {
        min-height: 260px;
        padding: 32px 24px;
    }

    .hyfac:nth-child(4n) {
        border-right: 1px solid var(--line);
    }

    .hyfac:nth-child(2n) {
        border-right: 0;
    }

    .hyfac:nth-last-child(-n+4) {
        border-bottom: 1px solid var(--line);
    }

    .hyfac:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    /* Serviços */
    .services {
        grid-template-columns: repeat(2, 1fr);
    }

    .service:nth-child(2) {
        border-right: 0;
    }

    .service:nth-child(1),
    .service:nth-child(2) {
        border-bottom: 1px solid var(--line);
    }

    /* Galeria */
    .galeria__head {
        grid-template-columns: 1fr;
    }

    .galeria__head h2 {
        justify-self: start;
        text-align: left;
    }

    .gslide.is-far-left,
    .gslide.is-far-right {
        opacity: 0;
    }

    .gslide.is-left {
        transform: translate(calc(-50% - clamp(160px, 36vw, 280px)), -50%) scale(1);
    }

    .gslide.is-right {
        transform: translate(calc(-50% + clamp(160px, 36vw, 280px)), -50%) scale(1);
    }

    .galeria__nav--prev {
        left: 8px;
    }

    .galeria__nav--next {
        right: 8px;
    }

    /* Testemunhos */
    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    /* Instagram */
    .insta__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .nav__brand-logo {
        height: clamp(64px, 5.5vw, 80px);
    }

    header.nav {
        padding: 3px 0;
    }
}

/* --- 700px --- */
@media (max-width: 700px) {

    /* Hero */
    .hero__rail {
        display: none;
    }

    .hero__content {
        padding-left: var(--gutter);
        padding-right: var(--gutter);
        padding-bottom: 18vh;
        padding-top: 96px;
    }

    .hero__title .line:nth-child(3) {
        padding-left: 0;
    }

    .hero__lede {
        margin-bottom: 32px;
    }

    .hero__meta {
        flex-direction: column;
        gap: 16px;
    }

    .hero__scroll {
        display: none;
    }

    /* Projeto */
    .projeto__media img {
        height: clamp(280px, 56vw, 420px);
    }

    .projeto__signoff {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Acomodações */
    .acom__head-row {
        gap: 24px;
    }

    .acom__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .acom__stats dt {
        font-size: 24px;
    }

    .acom__title {
        font-size: clamp(36px, 10vw, 56px);
    }

    /* Caravaning */
    .caravan__features {
        grid-template-columns: 1fr 1fr;
        gap: 16px 20px;
    }

    .caravan__features dt {
        font-size: 28px;
    }

    .caravan__title {
        font-size: clamp(46px, 11vw, 80px);
    }

    .caravan__title-row {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 12px;
    }

    .caravan__title-img {
        width: clamp(80px, 24vw, 140px);
    }

    .caravan__title-img--b {
        width: clamp(90px, 26vw, 160px);
    }

    /* Feature banner */
    .feature {
        padding: clamp(72px, 18vw, 120px) 0;
    }

    .feature__quote {
        font-size: clamp(42px, 11vw, 72px);
    }

    .feature__cta {
        flex-direction: column;
        gap: 16px;
        padding: 20px 18px;
        text-align: center;
    }

    .feature__price {
        text-align: center;
    }

    /* Hyrox */
    .hyfac__title {
        font-size: clamp(22px, 5vw, 28px);
    }

    /* Formulário / Contacto */
    .form__row--2,
    .form__row--3 {
        grid-template-columns: 1fr;
    }

    .contact__grid {
        grid-template-columns: 1fr;
    }

    .contact__info {
        grid-template-columns: 1fr;
    }

    .testimonials__head h2,
    .contact__aside h2 {
        font-size: clamp(36px, 9vw, 56px);
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* --- 600px --- */
@media (max-width: 600px) {
    .caravan__list li {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

/* --- 560px --- */
@media (max-width: 560px) {

    /* Tipografia */
    .display--xl {
        font-size: clamp(34px, 9vw, 56px);
    }

    .display--xxl {
        font-size: clamp(42px, 11vw, 72px);
    }

    .hero__title {
        font-size: clamp(44px, 13vw, 88px);
    }

    /* Acomodações */
    .acom__title {
        font-size: clamp(32px, 10vw, 52px);
    }

    .acom__counter {
        font-size: 9px;
        padding: 5px 9px;
    }

    /* Caravaning */
    .caravan__features {
        grid-template-columns: 1fr;
    }

    /* Hyrox */
    .hyrox__grid {
        grid-template-columns: 1fr;
    }

    .hyfac {
        border-right: 0 !important;
    }

    .hyfac:nth-last-child(-n+4) {
        border-bottom: 1px solid var(--line);
    }

    .hyfac:last-child {
        border-bottom: 0;
    }

    /* Serviços */
    .services {
        grid-template-columns: 1fr;
    }

    .service {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .service:last-child {
        border-bottom: 0;
    }

    /* Galeria */
    .gslide {
        width: 86vw;
    }

    .gslide.is-left,
    .gslide.is-right {
        width: 0;
        opacity: 0;
    }

    .galeria__stage {
        height: clamp(360px, 80vw, 480px);
    }

    /* Instagram */
    .insta__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contacto */
    .contact__info {
        grid-template-columns: 1fr;
    }

    /* Padding de secções */
    .acom,
    .caravan,
    .galeria,
    .hyrox,
    .testimonials,
    .contact {
        padding-top: 64px;
        padding-bottom: 64px;
    }

}

/* --- 480px --- */
@media (max-width: 480px) {
    .acom__principles ul {
        grid-template-columns: 1fr 1fr;
    }
}

