/* ─── Scroll reveal ──────────────────────────────────────────────────────── */
.will-reveal {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity .7s ease, transform .7s ease;
}
.will-reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ─── Reset & Custom Properties ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --wine:    #5c1520;
    --lime:    #b8c40f;
    --cream:   #ece4d0;
    --dark:    #0d0b0a;
    --darkish: #181412;
    --grey:    #2a2826;
    --white:   #ffffff;
    --text:    #2a2320;

    --font-body: 'Poppins', system-ui, sans-serif;

    --container: 1200px;
    --gap:       clamp(1.5rem, 4vw, 3rem);

    /* Galeria: até 800px, respeitando a altura visível da tela */
    --gallery-height: clamp(280px, 75svh, 800px);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--dark);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.site-main,
.site-main button,
.site-main a.btn,
.site-main button.btn {
    font-family: var(--font-body);
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ─── Utilities ───────────────────────────────────────────────────────────── */
.container {
    width: min(var(--container), 100%);
    margin-inline: auto;
    padding-inline: clamp(1rem, 5vw, 3rem);
}

.section-logo {
    height: 2.4rem;
    width: auto;
    filter: brightness(0) invert(1);
}
.section-logo--dark {
    filter: brightness(0);
}

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: .75rem 2rem;
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background .25s, color .25s, border-color .25s;
}

button.btn {
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    text-align: center;
}
.btn--lime {
    background: var(--lime);
    color: var(--dark);
    border-color: var(--lime);
}
.btn--lime:hover {
    background: transparent;
    color: var(--lime);
}
.btn--outline {
    background: transparent;
    color: var(--text);
    border-color: var(--text);
}
.btn--outline:hover {
    background: var(--text);
    color: var(--white);
}
.btn--lg {
    padding: 1rem 2.8rem;
    font-size: .95rem;
}

/* ─── Placeholder images ──────────────────────────────────────────────────── */
.placeholder-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: rgba(255,255,255,.05);
    border: 1px dashed rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.4);
    font-size: .8rem;
    text-align: center;
    padding: 1rem;
}
.placeholder-img--map { aspect-ratio: 4 / 3; }
.placeholder-video {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.4);
    font-size: .85rem;
}


/* ═══════════════════════════════════════════════════════════════════════════
   SITE HEADER (fixo, aparece após 600px de scroll)
═══════════════════════════════════════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: max(var(--header-offset, 0px), env(safe-area-inset-top, 0px));
    left: 0;
    right: 0;
    z-index: 9990;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    will-change: transform, opacity;

    /* oculto por padrão */
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, calc(-100% - var(--header-offset, 0px)), 0);
    pointer-events: none;
    transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
}

.site-header.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem clamp(1.5rem, 5vw, 3.5rem);
    max-width: 100%;
}

.site-header__logo {
    height: clamp(1.8rem, 3vw, 2.4rem);
    width: auto;
    display: block;
}

.site-header__cta {
    display: inline-block;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 999px;
    padding: .55rem 1.6rem;
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: background .2s;
    white-space: nowrap;
    cursor: pointer;
}

.site-header__cta:hover {
    background: #333;
}

@media (max-width: 768px) {
    .site-header__inner {
        padding: .65rem 1rem;
    }

    .site-header__logo {
        height: 1.65rem;
    }

    .site-header__cta {
        padding: .5rem 1.15rem;
        font-size: .68rem;
        letter-spacing: .1em;
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    height: 100svh;
    min-height: 560px;
    overflow: hidden;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
}

/* overlay escuro uniforme */
.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .48);
    pointer-events: none;
    z-index: 0;
}

/* área central: logo esquerda + tagline direita */
.hero__inner {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(3rem, 9vw, 7.5rem);
    gap: 2rem;
}

/* ── Logo block ── */
.hero__logo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    flex: 0 0 auto;
}

.hero__logo-img {
    width: clamp(300px, 52vw, 680px);
    height: auto;
    display: block;
}

.hero__wf {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(.7rem, 1.2vw, .95rem);
    font-weight: 300;
    letter-spacing: .45em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85);
    text-align: center;
}

/* ── Tagline block ── */
.hero__tagline-block {
    flex: 0 0 auto;
    max-width: clamp(200px, 26vw, 360px);
    text-align: left;
}

.hero__tagline-text {
    font-family: var(--font-body);
    font-size: clamp(1.3rem, 2.4vw, 2.2rem);
    font-weight: 300;
    color: rgba(255, 255, 255, .9);
    line-height: 1.45;
}

.hero__tagline-text strong {
    font-weight: 700;
    color: var(--white);
}

.hero__subtitle {
    margin-top: 1.25rem;
    font-family: var(--font-body);
    font-size: clamp(.8rem, 1.2vw, .95rem);
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, .85);
}

.hero__meta {
    margin-top: .75rem;
    font-family: var(--font-body);
    font-size: clamp(.75rem, 1.1vw, 1rem);
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
}

/* ── CTA pill (rodapé) ── */
.hero__footer {
    position: absolute;
    bottom: clamp(2rem, 6vh, 4.5rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;

    /* oculto por padrão */
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
}

.hero__footer.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.btn--hero-cta {
    display: inline-block;
    background: #ccd84a;
    color: #3a3a1a;
    border: none;
    border-radius: 999px;
    padding: 1.1rem clamp(2.5rem, 5vw, 3.8rem);
    font-family: var(--font-body);
    font-size: clamp(.85rem, 1.2vw, 1rem);
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: background .25s, transform .2s;
}

.btn--hero-cta:hover {
    background: #d8e460;
    transform: scale(1.03);
}

/* ── Responsivo ── */
@media (max-width: 640px) {
    .hero__inner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0 1.5rem;
    }
    .hero__tagline-block {
        max-width: 100%;
        text-align: center;
    }
    .hero__logo-img {
        width: min(90vw, 320px);
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   SOBRE / ABOUT
═══════════════════════════════════════════════════════════════════════════ */
.section-about {
    background: #C5DC6F;
    padding: clamp(4rem, 8vw, 8rem) 0;
}

.section-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
}

.section-about__col {
    color: #5F6611;
}

.section-about__col p {
    font-size: clamp(.9rem, 1.5vw, 1rem);
    color: #5F6611;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.section-about__col:first-child p {
    font-size: 40px;
}

.section-about__col .btn--outline {
    color: #5F6611;
    border-color: #5F6611;
    border-radius: 75px;
}

.section-about__col .btn--outline:hover {
    background: #5F6611;
    color: #C5DC6F;
}

.section-about__col .btn { margin-top: .75rem; }

@media (max-width: 700px) {
    .section-about__grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   STATS / DIFERENCIAIS
═══════════════════════════════════════════════════════════════════════════ */
.section-stats {
    position: relative;
    background: var(--wine);
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.section-stats__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #C5DC6F;
}

.section-stats__list {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.section-stats__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2vw, 2rem);
    border-right: 1px solid #C5DC6F;
    gap: clamp(.5rem, 1.5vw, 1rem);
}

.section-stats__item:last-child { border-right: none; }

.section-stats__label {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(.75rem, 1.1vw, .9rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.4;
    letter-spacing: .02em;
}

.section-stats__value {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 300;
    color: #C5DC6F;
    line-height: 1.15;
    letter-spacing: .01em;
}

@media (max-width: 600px) {
    .section-stats__list { flex-direction: column; }
    .section-stats__item {
        border-right: none;
        border-bottom: 1px solid #C5DC6F;
    }
    .section-stats__item:last-child { border-bottom: none; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════════════════════════ */
.section-gallery {
    background: var(--white);
    padding-block: 0;
    overflow: hidden;
}

.section-gallery__stage {
    position: relative;
    overflow: hidden;
    user-select: none;
    height: var(--gallery-height);
}

.section-gallery__track {
    display: flex;
    height: 100%;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.section-gallery__slide {
    flex: 0 0 calc(100% / 3);
    position: relative;
    height: 100%;
}

.section-gallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-gallery__slide .placeholder-img {
    height: 100%;
    min-height: var(--gallery-height);
    aspect-ratio: unset;
}

/* overlay escuro nas laterais */
.section-gallery__slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    transition: opacity .4s ease;
    pointer-events: none;
}

.section-gallery__slide.is-center .section-gallery__slide-overlay {
    opacity: 0;
}

/* setas posicionadas no centro de cada terço lateral */
.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    z-index: 4;
    background: none;
    border: none;
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
    cursor: pointer;
    padding: 0 1rem;
    transform: translateY(-50%);
    transition: transform .2s, opacity .2s;
    opacity: .85;
}

.gallery-prev { left: calc(100% / 6); transform: translate(-50%, -50%); }
.gallery-next { left: calc(100% * 5 / 6); transform: translate(-50%, -50%); }

.gallery-prev:hover,
.gallery-next:hover { opacity: 1; }

/* botão flutuante central inferior */
.section-gallery__cta {
    position: absolute;
    bottom: clamp(2rem, 5vh, 3.5rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none;
}

.section-gallery__cta .btn--gallery-cta {
    pointer-events: auto;
    display: inline-block;
    background: #C5DC6F;
    color: #3a3a1a;
    border: none;
    border-radius: 75px;
    padding: 1rem clamp(2.5rem, 5vw, 4rem);
    font-family: var(--font-body);
    font-size: clamp(.78rem, 1.1vw, .9rem);
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: background .25s, transform .2s;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .18);
}

.section-gallery__cta .btn--gallery-cta:hover {
    background: #d4e67a;
    transform: scale(1.03);
}

/* Galeria — telas baixas (ex: 1280×720) */
@media (max-height: 800px) {
    :root {
        --gallery-height: clamp(260px, 68svh, 800px);
    }
}

/* Galeria — mobile */
@media (max-width: 768px) {
    :root {
        --gallery-height: clamp(240px, 62svh, 800px);
    }

    .section-gallery__slide {
        flex: 0 0 100%;
    }

    .gallery-prev,
    .gallery-next {
        font-size: clamp(2rem, 8vw, 2.75rem);
        padding: 0 .5rem;
    }

    .gallery-prev {
        left: clamp(.75rem, 3vw, 1.25rem);
        transform: translateY(-50%);
    }

    .gallery-next {
        left: auto;
        right: clamp(.75rem, 3vw, 1.25rem);
        transform: translateY(-50%);
    }

    .section-gallery__cta {
        bottom: clamp(1rem, 4svh, 2rem);
        width: calc(100% - 2rem);
        text-align: center;
    }

    .section-gallery__cta .btn--gallery-cta {
        padding: .85rem clamp(1.5rem, 6vw, 2.5rem);
        font-size: clamp(.7rem, 2.8vw, .82rem);
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    :root {
        --gallery-height: clamp(220px, 58svh, 800px);
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   LOCALIZAÇÃO
═══════════════════════════════════════════════════════════════════════════ */
.section-location {
    background: var(--white);
    padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
}

.section-location__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
}

.section-location__title {
    font-family: var(--font-body);
    font-size: clamp(1.85rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #111;
    margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
    line-height: 1.2;
}

.section-location__desc p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 400;
    color: #333;
    line-height: 1.65;
    margin-bottom: 0;
}

.section-location__iframe-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 72%;
    height: 0;
    overflow: hidden;
}

.section-location__iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

.section-location__map .placeholder-img--map {
    aspect-ratio: 4 / 3;
    min-height: 280px;
}

/* Pontos de referência */
.section-location__refs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem clamp(1rem, 2.5vw, 2.5rem);
    margin-top: clamp(2.75rem, 5vw, 4rem);
    list-style: none;
    padding: 0;
}

.section-location__ref {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: .85rem;
    min-width: 0;
    max-width: 100%;
}

.section-location__ref-icon {
    display: block;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    max-width: 42px;
    max-height: 42px;
    object-fit: contain;
}

.section-location__ref-text {
    flex: 1;
    min-width: 0;
    font-family: var(--font-body);
    font-size: clamp(.68rem, 1vw, .82rem);
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #111;
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
}

@media (max-width: 768px) {
    .section-location__refs {
        grid-template-columns: 1fr;
    }

    .section-location__grid {
        grid-template-columns: 1fr;
    }

    .section-location__map {
        order: -1;
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   COMODIDADES
═══════════════════════════════════════════════════════════════════════════ */
.section-comodidades {
    background: var(--white);
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.section-comodidades__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.section-comodidades__title {
    font-family: var(--font-body);
    font-size: clamp(2rem, 4.2vw, 3.75rem);
    font-weight: 700;
    color: #111;
    line-height: 1.08;
    margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
}

.section-comodidades__desc p {
    font-size: clamp(.95rem, 1.35vw, 1.05rem);
    font-weight: 400;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

.section-comodidades__carousel {
    display: flex;
    align-items: center;
    gap: clamp(.5rem, 1.5vw, 1.25rem);
    min-width: 0;
}

.section-comodidades__stage {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.section-comodidades__track {
    display: flex;
    will-change: transform;
}

.section-comodidades__slide {
    flex: 0 0 100%;
    min-width: 0;
}

.section-comodidades__media {
    border-radius: clamp(1rem, 2vw, 1.35rem);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #e8e8e8;
}

.section-comodidades__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-comodidades__media--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(220px, 32vw, 320px);
    border: 1px dashed #ccc;
    color: #888;
    font-size: .9rem;
    text-align: center;
    padding: 2rem;
}

.section-comodidades__label {
    margin: clamp(1rem, 2vw, 1.35rem) auto 0;
    width: fit-content;
    max-width: 100%;
    padding: .65rem clamp(1.25rem, 3vw, 2rem);
    background: #ccd84a;
    color: #3a3a1a;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: clamp(.68rem, 1vw, .78rem);
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
}

.comodidades-prev,
.comodidades-next {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(2rem, 4vw, 2.75rem);
    height: clamp(2rem, 4vw, 2.75rem);
    padding: 0;
    border: 0;
    background: transparent;
    color: #111;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
}

.comodidades-prev:hover,
.comodidades-next:hover {
    opacity: .65;
}

.comodidades-prev:active,
.comodidades-next:active {
    transform: scale(.92);
}

@media (max-width: 900px) {
    .section-comodidades__grid {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 5vw, 3rem);
    }

    .section-comodidades__title {
        max-width: 14ch;
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   FOLDER
═══════════════════════════════════════════════════════════════════════════ */
.section-highlights {
    --hl-bg:      #8f8e87;
    --hl-accent:  #fffca0;
    --hl-text:    #ffffff;
    background: var(--hl-bg);
    padding: clamp(4rem, 8vw, 6.5rem) 0;
    color: var(--hl-text);
}

.section-highlights__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

.section-highlights__image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: clamp(320px, 45vw, 520px);
    object-fit: contain;
}

.section-highlights__placeholder {
    width: 100%;
    min-height: clamp(260px, 40vw, 420px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(255, 255, 255, .35);
    color: rgba(255, 255, 255, .65);
    font-size: .9rem;
    text-align: center;
    padding: 2rem;
}

.section-highlights__title {
    font-family: var(--font-body);
    font-size: clamp(1.65rem, 3vw, 2.75rem);
    font-weight: 600;
    color: var(--hl-accent);
    line-height: 1.2;
    margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
    max-width: 16ch;
}

.section-highlights__text p {
    font-size: clamp(.95rem, 1.4vw, 1.1rem);
    font-weight: 400;
    color: var(--hl-text);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.section-highlights__text p:last-child {
    margin-bottom: 0;
}

.section-highlights__cta {
    display: inline-block;
    margin-top: clamp(1.75rem, 3vw, 2.5rem);
    background: var(--hl-accent);
    color: var(--hl-bg);
    border: 0;
    border-radius: 999px;
    padding: .85rem clamp(1.75rem, 4vw, 2.75rem);
    font-size: clamp(.72rem, 1vw, .82rem);
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: opacity .2s ease, transform .2s ease;
    cursor: pointer;
    font-family: var(--font-body);
}

.section-highlights__cta:hover {
    opacity: .92;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .section-highlights__grid {
        grid-template-columns: 1fr;
    }

    .section-highlights__title {
        max-width: none;
    }

    .section-highlights__image {
        order: -1;
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   MODAL FOLDER
═══════════════════════════════════════════════════════════════════════════ */
.folder-modal {
    --folder-modal-bg:     #fffda0;
    --folder-modal-accent: #4c0000;
    --folder-modal-border: rgba(76, 0, 0, .45);
    /* Aliases para o wizard compartilhado (.contact-wizard) */
    --contact-modal-bg:     var(--folder-modal-bg);
    --contact-modal-accent: var(--folder-modal-accent);
    --contact-modal-border: var(--folder-modal-border);
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 4vw, 2rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
}

.folder-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.folder-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.folder-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 420px);
    background: var(--folder-modal-bg);
    padding: clamp(2rem, 5vw, 2.75rem) clamp(1.75rem, 4vw, 2.5rem);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    transform: translateY(1rem);
    transition: transform .3s ease;
}

.folder-modal.is-open .folder-modal__dialog {
    transform: translateY(0);
}

.folder-modal__close {
    position: absolute;
    top: .75rem;
    right: .75rem;
    width: 2rem;
    height: 2rem;
    border: 0;
    background: transparent;
    color: var(--folder-modal-accent);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    opacity: .7;
    transition: opacity .2s;
}

.folder-modal__close:hover {
    opacity: 1;
}

.folder-modal__title {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 600;
    color: var(--folder-modal-accent);
    text-align: center;
    line-height: 1.35;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    padding-inline: 1.5rem;
}

.folder-modal__form {
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.folder-modal__field input {
    width: 100%;
    padding: .85rem 1rem;
    border: 2px solid var(--folder-modal-accent);
    border-radius: 0;
    background: var(--folder-modal-bg);
    color: var(--folder-modal-accent);
    font-family: var(--font-body);
    font-size: .95rem;
    outline: none;
    transition: box-shadow .2s;
}

.folder-modal__field input::placeholder {
    color: rgba(76, 0, 0, .72);
}

.folder-modal__field input:focus {
    box-shadow: 0 0 0 2px rgba(76, 0, 0, .15);
}

.folder-modal__submit {
    align-self: center;
    margin-top: .75rem;
    padding: .75rem 2rem;
    border: 1px solid var(--folder-modal-accent);
    border-radius: 0;
    background: transparent;
    color: var(--folder-modal-accent);
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, color .2s;
}

.folder-modal__submit:hover {
    background: var(--folder-modal-accent);
    color: var(--folder-modal-bg);
}

.folder-modal__submit:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.folder-modal__feedback {
    margin-top: 1rem;
    text-align: center;
    font-size: .9rem;
    color: var(--folder-modal-accent);
}

.folder-modal__feedback.is-error {
    color: #8b1e1e;
}

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

.folder-modal__form-wrap {
    width: 100%;
}

.folder-modal__label {
    display: block;
    margin-bottom: .35rem;
    font-family: var(--font-body);
    font-size: .82rem;
    font-weight: 600;
    color: var(--folder-modal-accent);
}

.folder-modal--result .folder-modal__form-wrap {
    display: none;
}

.folder-modal__result {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(1.5rem, 4vw, 2.5rem) clamp(.5rem, 2vw, 1rem);
    min-height: clamp(220px, 40vw, 280px);
}

.folder-modal--result .folder-modal__result {
    display: flex;
}

.folder-modal__result-icon {
    width: clamp(3.5rem, 10vw, 4.5rem);
    height: clamp(3.5rem, 10vw, 4.5rem);
    margin-bottom: clamp(1rem, 2.5vw, 1.35rem);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    line-height: 1;
}

.folder-modal__result.is-success .folder-modal__result-icon {
    background: rgba(76, 0, 0, .08);
    color: var(--folder-modal-accent);
}

.folder-modal__result.is-success .folder-modal__result-icon::before {
    content: '✓';
}

.folder-modal__result.is-error .folder-modal__result-icon {
    background: rgba(139, 30, 30, .1);
    color: #8b1e1e;
}

.folder-modal__result.is-error .folder-modal__result-icon::before {
    content: '!';
}

.folder-modal__result-message {
    margin: 0 0 clamp(1.25rem, 3vw, 1.75rem);
    font-family: var(--font-body);
    font-size: clamp(.95rem, 2vw, 1.05rem);
    font-weight: 500;
    line-height: 1.55;
    color: var(--folder-modal-accent);
    max-width: 32ch;
}

.folder-modal__result.is-error .folder-modal__result-message {
    color: #8b1e1e;
}

.folder-modal__result-btn {
    min-width: clamp(8rem, 30vw, 10rem);
    padding: .9rem 2rem;
    border: 1px solid var(--folder-modal-accent);
    border-radius: 0;
    background: var(--folder-modal-accent);
    color: var(--folder-modal-bg);
    font-family: var(--font-body);
    font-size: .92rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s;
}

.folder-modal__result-btn:hover {
    opacity: .92;
}

/* Wizard folder — visual amarelo */
.folder-modal .contact-wizard__progress-label {
    color: var(--folder-modal-accent);
    opacity: .85;
}

.folder-modal .contact-wizard__progress-bar {
    height: 4px;
    background: rgba(76, 0, 0, .18);
}

.folder-modal .contact-wizard__progress-fill {
    background: var(--folder-modal-accent);
}

.folder-modal .contact-wizard__step-title {
    color: var(--folder-modal-accent);
    font-weight: 600;
}

.folder-modal .contact-wizard__option-text {
    padding: 1rem 1.15rem;
    border: 2px solid var(--folder-modal-accent);
    color: var(--folder-modal-accent);
    background: var(--folder-modal-bg);
    font-weight: 600;
    box-shadow: 0 1px 0 rgba(76, 0, 0, .06);
}

.folder-modal .contact-wizard__option:hover .contact-wizard__option-text {
    background: rgba(76, 0, 0, .08);
    box-shadow: 0 2px 8px rgba(76, 0, 0, .12);
}

.folder-modal .contact-wizard__option input:focus-visible + .contact-wizard__option-text {
    border-color: var(--folder-modal-accent);
    box-shadow: 0 0 0 3px rgba(76, 0, 0, .15);
}

.folder-modal .contact-wizard__option input:checked + .contact-wizard__option-text,
.folder-modal .contact-wizard__option.is-selected .contact-wizard__option-text {
    background: var(--folder-modal-accent);
    color: var(--folder-modal-bg);
    border-color: var(--folder-modal-accent);
    box-shadow: 0 2px 10px rgba(76, 0, 0, .2);
}

.folder-modal .contact-wizard__back,
.folder-modal .contact-wizard__next {
    flex: 1;
    padding: .95rem 1.15rem;
    border: 2px solid var(--folder-modal-accent);
    background: var(--folder-modal-bg);
    color: var(--folder-modal-accent);
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .02em;
    cursor: pointer;
    transition: background .2s, color .2s, box-shadow .2s, transform .2s;
}

.folder-modal .contact-wizard__back:hover {
    background: rgba(76, 0, 0, .08);
    box-shadow: 0 2px 8px rgba(76, 0, 0, .12);
}

.folder-modal .contact-wizard__next {
    background: var(--folder-modal-accent);
    color: var(--folder-modal-bg);
    box-shadow: 0 2px 10px rgba(76, 0, 0, .22);
}

.folder-modal .contact-wizard__next:hover {
    opacity: 1;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(76, 0, 0, .28);
}

.folder-modal .contact-wizard__submit {
    flex: 1;
    width: 100%;
    margin-top: 0;
    padding: .95rem 2rem;
    border: 2px solid var(--folder-modal-accent);
    background: var(--folder-modal-accent);
    color: var(--folder-modal-bg);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    box-shadow: 0 2px 10px rgba(76, 0, 0, .22);
}

.folder-modal .contact-wizard__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(76, 0, 0, .28);
}

.folder-modal .contact-wizard__nav .contact-wizard__submit:not([hidden]) {
    display: block;
    width: 100%;
}


/* ═══════════════════════════════════════════════════════════════════════════
   MODAL CONTATO
═══════════════════════════════════════════════════════════════════════════ */
.contact-modal {
    --contact-modal-bg:     var(--white);
    --contact-modal-accent: #4c0000;
    --contact-modal-border: rgba(76, 0, 0, .22);
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 4vw, 2rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
}

.contact-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.contact-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .72);
}

.contact-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    max-height: min(92vh, 720px);
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--contact-modal-bg);
    padding: clamp(2rem, 5vw, 2.75rem) clamp(1.75rem, 4vw, 2.5rem);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
    transform: translateY(1rem);
    transition: transform .3s ease;
}

.contact-modal.is-open .contact-modal__dialog {
    transform: translateY(0);
}

.contact-modal__close {
    position: absolute;
    top: .75rem;
    right: .75rem;
    z-index: 2;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--contact-modal-accent);
    color: var(--white);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
}

.contact-modal__close:hover {
    opacity: .92;
    transform: scale(1.04);
}

.contact-modal__title {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 500;
    color: var(--contact-modal-accent);
    text-align: center;
    line-height: 1.45;
    margin: 0 0 clamp(1.5rem, 3vw, 2rem);
    padding-inline: 2.5rem;
}

.contact-modal__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-modal__field {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.contact-modal__label {
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 500;
    color: var(--contact-modal-accent);
    line-height: 1.35;
}

.contact-modal__label span {
    color: var(--contact-modal-accent);
}

.contact-modal__field input,
.contact-modal__field select {
    width: 100%;
    padding: .8rem 1rem;
    border: 1px solid var(--contact-modal-border);
    border-radius: 0;
    background: var(--contact-modal-bg);
    color: var(--contact-modal-accent);
    font-family: var(--font-body);
    font-size: .92rem;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    appearance: none;
}

.contact-modal__field select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234c0000' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.contact-modal__field input:focus,
.contact-modal__field select:focus {
    border-color: var(--contact-modal-accent);
    box-shadow: 0 0 0 2px rgba(76, 0, 0, .08);
}

.contact-modal__submit {
    width: 100%;
    margin-top: .5rem;
    padding: .95rem 1.25rem;
    border: none;
    border-radius: 0;
    background: var(--contact-modal-accent);
    color: var(--white);
    font-family: var(--font-body);
    font-size: .92rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
}

.contact-modal__submit:hover {
    opacity: .92;
}

.contact-modal__submit:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.contact-modal__feedback {
    margin-top: 1rem;
    text-align: center;
    font-size: .9rem;
    color: var(--contact-modal-accent);
}

.contact-modal__feedback.is-error {
    color: #8b1e1e;
}

.contact-modal--result .contact-modal__form-wrap {
    display: none;
}

.contact-modal__result {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(1.5rem, 4vw, 2.5rem) clamp(.5rem, 2vw, 1rem);
    min-height: clamp(220px, 40vw, 280px);
}

.contact-modal--result .contact-modal__result {
    display: flex;
}

.contact-modal__result-icon {
    width: clamp(3.5rem, 10vw, 4.5rem);
    height: clamp(3.5rem, 10vw, 4.5rem);
    margin-bottom: clamp(1rem, 2.5vw, 1.35rem);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    line-height: 1;
}

.contact-modal__result.is-success .contact-modal__result-icon {
    background: rgba(76, 0, 0, .08);
    color: var(--contact-modal-accent);
}

.contact-modal__result.is-success .contact-modal__result-icon::before {
    content: '✓';
}

.contact-modal__result.is-error .contact-modal__result-icon {
    background: rgba(139, 30, 30, .1);
    color: #8b1e1e;
}

.contact-modal__result.is-error .contact-modal__result-icon::before {
    content: '!';
}

.contact-modal__result-message {
    margin: 0 0 clamp(1.25rem, 3vw, 1.75rem);
    font-family: var(--font-body);
    font-size: clamp(.95rem, 2vw, 1.05rem);
    font-weight: 500;
    line-height: 1.55;
    color: var(--contact-modal-accent);
    max-width: 32ch;
}

.contact-modal__result.is-error .contact-modal__result-message {
    color: #8b1e1e;
}

.contact-modal__result-btn {
    min-width: clamp(8rem, 30vw, 10rem);
    padding: .9rem 2rem;
    border: none;
    border-radius: 0;
    background: var(--contact-modal-accent);
    color: var(--white);
    font-family: var(--font-body);
    font-size: .92rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s;
}

.contact-modal__result-btn:hover {
    opacity: .92;
}

/* Wizard — modal contato */
.contact-wizard__progress {
    margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.contact-wizard__progress-label {
    margin: 0 0 .5rem;
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(76, 0, 0, .65);
    text-align: center;
}

.contact-wizard__progress-bar {
    height: 3px;
    background: rgba(76, 0, 0, .12);
    overflow: hidden;
}

.contact-wizard__progress-fill {
    display: block;
    height: 100%;
    background: var(--contact-modal-accent);
    transition: width .35s ease;
}

.contact-wizard__step-title {
    font-family: var(--font-body);
    font-size: clamp(.95rem, 2vw, 1.05rem);
    font-weight: 500;
    color: var(--contact-modal-accent);
    line-height: 1.45;
    text-align: center;
    margin: 0 0 clamp(1.1rem, 2.5vw, 1.35rem);
}

.contact-wizard__options {
    margin: 0;
    padding: 0;
    border: 0;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.contact-wizard__option {
    display: block;
    cursor: pointer;
}

.contact-wizard__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.contact-wizard__option-text {
    display: block;
    padding: .9rem 1rem;
    border: 1px solid var(--contact-modal-border);
    background: var(--contact-modal-bg);
    color: var(--contact-modal-accent);
    font-family: var(--font-body);
    font-size: .92rem;
    font-weight: 500;
    line-height: 1.35;
    text-align: center;
    transition: border-color .2s, background .2s, color .2s;
}

.contact-wizard__option:hover .contact-wizard__option-text {
    border-color: rgba(76, 0, 0, .45);
}

.contact-wizard__option input:focus-visible + .contact-wizard__option-text {
    border-color: var(--contact-modal-accent);
    box-shadow: 0 0 0 2px rgba(76, 0, 0, .08);
}

.contact-wizard__option input:checked + .contact-wizard__option-text,
.contact-wizard__option.is-selected .contact-wizard__option-text {
    border-color: var(--contact-modal-accent);
    background: rgba(76, 0, 0, .06);
}

.contact-wizard__nav {
    display: flex;
    align-items: stretch;
    gap: .75rem;
    margin-top: clamp(1.25rem, 3vw, 1.5rem);
}

.contact-wizard__nav:has(.contact-wizard__back[hidden]) .contact-wizard__next {
    flex: 1 1 100%;
}

.contact-wizard__back,
.contact-wizard__next {
    flex: 1;
    padding: .9rem 1rem;
    border: 1px solid var(--contact-modal-border);
    background: var(--contact-modal-bg);
    color: var(--contact-modal-accent);
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s, border-color .2s, background .2s;
}

.contact-wizard__back:hover,
.contact-wizard__next:hover {
    border-color: var(--contact-modal-accent);
}

.contact-wizard__next {
    background: var(--contact-modal-accent);
    border-color: var(--contact-modal-accent);
    color: var(--white);
}

.contact-wizard__next:hover {
    opacity: .92;
}

.contact-wizard__submit {
    flex: 1;
    margin-top: 0;
}

.contact-wizard__nav .contact-wizard__submit:not([hidden]) {
    display: block;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* ═══════════════════════════════════════════════════════════════════════════
   TOUR VIRTUAL (Kuula)
═══════════════════════════════════════════════════════════════════════════ */
.section-video {
    background: var(--white);
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-video__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.section-video__iframe-wrap {
    position: relative;
    width: 100%;
    max-width: 960px;
    aspect-ratio: 16 / 9;
    min-height: clamp(320px, 50vw, 640px);
    overflow: hidden;
    border-radius: clamp(14px, 2vw, 22px);
    background: #e8e8e8;
}

.section-video__iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

.section-video__caption {
    font-family: var(--font-body);
    font-size: clamp(.72rem, 1.1vw, .85rem);
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #8a8a8a;
    text-align: center;
    margin: 0;
}

.section-video__placeholder {
    width: 100%;
    max-width: 960px;
    min-height: clamp(240px, 52vw, 420px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(0, 0, 0, .15);
    border-radius: clamp(14px, 2vw, 22px);
    background: #f5f5f5;
    padding: 2rem;
    text-align: center;
    font-size: .9rem;
    color: rgba(0, 0, 0, .45);
}


/* ═══════════════════════════════════════════════════════════════════════════
   SÉRIE DOCUMENTAL
═══════════════════════════════════════════════════════════════════════════ */
.section-documental {
    background: var(--white);
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.section-documental__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

@media (min-width: 769px) {
    .section-documental__carousel {
        justify-content: center;
    }

    .section-documental__stage {
        flex: 0 1 auto;
        width: min(100%, calc(min(72vh, 620px) * 9 / 16 + 5rem));
    }
}

.section-documental__title {
    font-family: var(--font-body);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: #111;
    line-height: 1.15;
    margin: 0 0 clamp(.65rem, 1.2vw, .85rem);
    max-width: 18ch;
}

.section-documental__subtitle {
    font-family: var(--font-body);
    font-size: clamp(.78rem, 1.1vw, .92rem);
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--wine);
    margin: 0 0 clamp(1rem, 2vw, 1.35rem);
}

.section-documental__desc p {
    font-size: clamp(.95rem, 1.35vw, 1.05rem);
    font-weight: 400;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

.section-documental__cta {
    display: inline-block;
    margin-top: clamp(1.5rem, 2.5vw, 2rem);
    background: #ccd84a;
    color: #3a3a1a;
    border: none;
    border-radius: 999px;
    padding: .85rem clamp(1.75rem, 4vw, 2.5rem);
    font-family: var(--font-body);
    font-size: clamp(.72rem, 1vw, .82rem);
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .25s, transform .2s;
}

.section-documental__cta:hover {
    background: #d8e460;
    transform: translateY(-1px);
}

.section-documental__carousel {
    display: flex;
    align-items: center;
    gap: clamp(.5rem, 1.5vw, 1.25rem);
    min-width: 0;
}

.section-documental__stage {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    border-radius: 0;
}

.section-documental__track {
    display: flex;
    gap: 0;
    will-change: transform;
}

.section-documental__slide {
    flex: 0 0 auto;
    min-width: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.section-documental__media {
    border-radius: 0;
    overflow: hidden;
    background: #e8e8e8;
    width: 100%;
    max-width: calc(min(72vh, 620px) * 9 / 16);
    margin-inline: auto;
}

.section-documental__embed-frame {
    position: relative;
    --doc-embed-h: min(72vh, 620px);
    width: min(100%, calc(var(--doc-embed-h) * 9 / 16));
    height: var(--doc-embed-h);
    max-width: 100%;
    margin-inline: auto;
    background: #000;
    overflow: hidden;
}

.section-documental__embed-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.section-documental__media img,
.section-documental__media iframe {
    display: block;
    width: 100%;
    max-width: 100%;
}

.section-documental__media--embed {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, calc(min(72vh, 620px) * 9 / 16));
    max-width: 100%;
    margin-inline: auto;
}

.section-documental__media--embed blockquote.instagram-media {
    width: min(100%, calc(min(72vh, 620px) * 9 / 16)) !important;
    max-width: min(100%, calc(min(72vh, 620px) * 9 / 16)) !important;
    min-width: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

.section-documental__media--embed iframe {
    border: 0;
    border-radius: 0 !important;
}

.section-documental__carousel .section-documental__media--embed > div {
    width: min(100%, calc(min(72vh, 620px) * 9 / 16)) !important;
    max-width: min(100%, calc(min(72vh, 620px) * 9 / 16)) !important;
    min-width: 0 !important;
    border-radius: 0 !important;
}

.section-documental__media--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(260px, 40vw, 420px);
    border: 1px dashed #ccc;
    color: #888;
    font-size: .9rem;
    text-align: center;
    padding: 2rem;
}

.documental-prev,
.documental-next {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(1.75rem, 3.5vw, 2.5rem);
    height: clamp(1.75rem, 3.5vw, 2.5rem);
    padding: 0;
    border: 0;
    background: transparent;
    color: #111;
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
}

.documental-prev:hover,
.documental-next:hover {
    opacity: .65;
}

@media (max-width: 768px) {
    .section-documental__grid {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 5vw, 3rem);
    }

    .section-documental__title {
        max-width: none;
    }

    .section-documental__carousel {
        order: -1;
        position: relative;
        gap: 0;
        width: 100%;
    }

    .section-documental__stage {
        width: 100%;
        flex: 1 1 auto;
    }

    .section-documental__media,
    .section-documental__media--embed {
        max-width: min(100%, calc(min(75vh, 640px) * 9 / 16));
    }

    .section-documental__embed-frame {
        --doc-embed-h: min(75vh, 640px);
    }

    .documental-prev,
    .documental-next {
        position: absolute;
        top: 50%;
        z-index: 3;
        transform: translateY(-50%);
        width: clamp(2rem, 8vw, 2.5rem);
        height: clamp(2rem, 8vw, 2.5rem);
        background: rgba(255, 255, 255, .82);
        border-radius: 50%;
        font-size: clamp(1.45rem, 5.5vw, 1.85rem);
    }

    .documental-prev {
        left: clamp(.35rem, 2vw, .65rem);
    }

    .documental-next {
        right: clamp(.35rem, 2vw, .65rem);
    }

    .documental-prev:hover,
    .documental-next:hover {
        transform: translateY(-50%);
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   MEMÓRIA
═══════════════════════════════════════════════════════════════════════════ */
.section-memoria {
    --memoria-media-height: clamp(260px, 38vw, 380px);
    background: #f4f4f4;
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-memoria__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1rem, 2vw, 1.35rem);
    max-width: min(760px, 100%);
    margin-inline: auto;
}

.section-memoria__carousel {
    display: flex;
    align-items: center;
    gap: clamp(.35rem, 1vw, .85rem);
    width: 100%;
}

.section-memoria__media {
    display: block;
    border-radius: clamp(1rem, 2vw, 1.35rem);
    overflow: hidden;
    background: #e8e8e8;
}

.section-memoria__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-memoria__media--photo {
    height: var(--memoria-media-height);
    width: 100%;
    aspect-ratio: auto;
}

.section-memoria__media--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--memoria-media-height);
    border: 1px dashed #ccc;
    color: #888;
    font-size: .85rem;
    text-align: center;
    padding: 1.5rem;
}

.section-memoria__caption {
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(.68rem, 1vw, .78rem);
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #8a8a8a;
    text-align: center;
    line-height: 1.45;
}

.section-memoria__stage {
    flex: 1;
    min-width: 0;
    height: var(--memoria-media-height);
    overflow: hidden;
    border-radius: clamp(1rem, 2vw, 1.35rem);
    isolation: isolate;
}

.section-memoria__track {
    display: flex;
    gap: 0;
    height: 100%;
    will-change: transform;
}

.section-memoria__slide {
    flex: 0 0 auto;
    flex-shrink: 0;
    height: 100%;
    overflow: hidden;
}

.section-memoria__slide .section-memoria__media--photo {
    height: 100%;
    width: 100%;
    border-radius: 0;
}

.memoria-prev,
.memoria-next {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(1.75rem, 3.5vw, 2.5rem);
    height: clamp(1.75rem, 3.5vw, 2.5rem);
    padding: 0;
    border: 0;
    background: transparent;
    color: #111;
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
}

.memoria-prev:hover,
.memoria-next:hover {
    opacity: .65;
}

.section-memoria__download {
    display: inline-block;
    width: auto;
    max-width: 100%;
    margin-top: clamp(.5rem, 1.5vw, 1rem);
    background: #ccd84a;
    color: #3a3a1a;
    border: none;
    border-radius: 999px;
    padding: clamp(.85rem, 1.5vw, 1.05rem) clamp(2rem, 4vw, 3rem);
    font-family: var(--font-body);
    font-size: clamp(.68rem, .95vw, .78rem);
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.35;
    white-space: nowrap;
    text-decoration: none;
    transition: background .25s, transform .2s;
}

.section-memoria__download:hover {
    background: #d8e460;
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .section-memoria {
        --memoria-media-height: clamp(220px, 56vw, 300px);
    }

    .section-memoria__inner {
        max-width: 100%;
    }

    .section-memoria__carousel {
        position: relative;
        gap: 0;
        width: 100%;
    }

    .section-memoria__stage {
        width: 100%;
    }

    .memoria-prev,
    .memoria-next {
        position: absolute;
        top: 50%;
        z-index: 3;
        transform: translateY(-50%);
        width: clamp(2rem, 8vw, 2.5rem);
        height: clamp(2rem, 8vw, 2.5rem);
        background: rgba(255, 255, 255, .82);
        border-radius: 50%;
        font-size: clamp(1.45rem, 5.5vw, 1.85rem);
    }

    .memoria-prev {
        left: clamp(.35rem, 2vw, .65rem);
    }

    .memoria-next {
        right: clamp(.35rem, 2vw, .65rem);
    }

    .memoria-prev:hover,
    .memoria-next:hover {
        opacity: .85;
        transform: translateY(-50%);
    }

    .section-memoria__download {
        white-space: normal;
        padding-inline: clamp(1.25rem, 5vw, 2rem);
        font-size: clamp(.62rem, 2.8vw, .72rem);
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   STATUS DA OBRA
═══════════════════════════════════════════════════════════════════════════ */
.section-launch {
    --launch-bg:     #c5dc6f;
    --launch-accent: #4c0000;
    --launch-track:  #b8cf62;
    background: var(--launch-bg);
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
    color: var(--launch-accent);
}

.section-launch__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 4vw, 3rem);
}

.section-launch__header {
    text-align: center;
}

.section-launch__title {
    font-family: var(--font-body);
    font-size: clamp(1.35rem, 2.8vw, 2.25rem);
    font-weight: 700;
    color: var(--launch-accent);
    letter-spacing: .04em;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: .65rem;
}

.section-launch__sub {
    font-size: clamp(.9rem, 1.4vw, 1.05rem);
    font-weight: 400;
    color: var(--launch-accent);
    margin: 0;
}

.section-launch__progress {
    display: flex;
    align-items: center;
    gap: clamp(.75rem, 2vw, 1.25rem);
    width: 100%;
    max-width: 720px;
}

.section-launch__progress-label,
.section-launch__progress-max {
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    font-weight: 700;
    color: var(--launch-accent);
    flex-shrink: 0;
    min-width: 3rem;
}

.section-launch__progress-max {
    text-align: right;
}

.section-launch__progress-track {
    flex: 1;
    height: 30px;
    border: 2px solid var(--launch-accent);
    border-radius: 999px;
    background: var(--launch-track);
    overflow: hidden;
}

.section-launch__progress-fill {
    height: 100%;
    background: var(--white);
    border-radius: 999px 0 0 999px;
    transition: width .6s ease;
}

.section-launch__phases {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.5rem, 4vw, 3rem);
    width: 100%;
    max-width: 900px;
}

.section-launch__phase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .65rem 0;
    font-size: clamp(.82rem, 1.1vw, .95rem);
}

.section-launch__phase-label {
    font-size: 20px;
    font-weight: 500;
    color: var(--launch-accent);
}

.section-launch__phase-value {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 700;
    color: var(--launch-accent);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .section-launch__phases {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   PLANTAS
═══════════════════════════════════════════════════════════════════════════ */
.section-plants {
    --plants-bg:     #fffda0;
    --plants-accent: #4c0000;
    background: var(--plants-bg);
    padding: clamp(4rem, 8vw, 6rem) 0;
    color: var(--plants-accent);
}

.section-plants__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
}

.section-plants__title {
    font-family: var(--font-body);
    font-size: clamp(1.45rem, 2.6vw, 2.15rem);
    font-weight: 400;
    color: var(--plants-accent);
    line-height: 1.25;
    margin-bottom: clamp(1rem, 2vw, 1.35rem);
    max-width: 22ch;
}

.section-plants__subtitle {
    font-family: var(--font-body);
    font-size: clamp(.82rem, 1.15vw, .95rem);
    font-weight: 400;
    color: var(--plants-accent);
    line-height: 1.65;
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
    max-width: 42ch;
}

.section-plants__subtitle p {
    margin-bottom: 1rem;
}

.section-plants__subtitle p:last-child {
    margin-bottom: 0;
}

.section-plants__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-plants__item {
    display: block;
    width: 100%;
    padding: clamp(.85rem, 1.5vw, 1.1rem) 0;
    border: 0;
    border-bottom: 1px solid var(--plants-accent);
    background: none;
    text-align: left;
    font-family: var(--font-body);
    font-size: clamp(.72rem, 1.1vw, .85rem);
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--plants-accent);
    cursor: pointer;
    transition: opacity .2s ease;
}

.section-plants__list-item:last-child .section-plants__item {
    border-bottom: 0;
}

.section-plants__item:hover,
.section-plants__item.is-active {
    opacity: 1;
}

.section-plants__item:not(.is-active) {
    opacity: .72;
}

.section-plants__preview {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(260px, 42vw, 480px);
}

.section-plants__image-stack {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-plants__image-stack .section-plants__image {
    display: block;
    width: 100%;
    height: auto;
    max-height: clamp(320px, 48vw, 520px);
    object-fit: contain;
    transition: opacity .45s ease;
}

.section-plants__image-stack .section-plants__image:not(.is-visible) {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100%;
    opacity: 0;
    pointer-events: none;
}

.section-plants__image-stack .section-plants__image.is-visible {
    position: relative;
    opacity: 1;
}

.section-plants__image {
    display: block;
    width: 100%;
    height: auto;
    max-height: clamp(320px, 48vw, 520px);
    object-fit: contain;
}

.section-plants__placeholder {
    width: 100%;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(76, 0, 0, .25);
    color: rgba(76, 0, 0, .55);
    font-size: .9rem;
    text-align: center;
    padding: 2rem;
}

.section-plants__footer {
    display: flex;
    justify-content: center;
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.section-plants__cta {
    background: var(--plants-accent);
    color: var(--plants-bg);
    border: 0;
    border-radius: 999px;
    padding: .85rem clamp(1.75rem, 4vw, 2.75rem);
    font-size: clamp(.72rem, 1vw, .82rem);
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: opacity .2s ease, transform .2s ease;
    cursor: pointer;
}

.section-plants__cta:hover {
    opacity: .92;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .section-plants__grid {
        grid-template-columns: 1fr;
    }

    .section-plants__title {
        max-width: none;
    }

    .section-plants__preview {
        order: -1;
        min-height: 240px;
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   ANDAMENTO (carousel cards)
═══════════════════════════════════════════════════════════════════════════ */
.section-gallery2 {
    --gallery2-gap: clamp(.65rem, 1.5vw, 1rem);
    --gallery2-radius: clamp(18px, 2.5vw, 28px);
    background: var(--white);
    padding: clamp(3rem, 6vw, 5rem) 0;
    overflow: hidden;
}

.section-gallery2__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.section-gallery2__carousel-wrap {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: clamp(.35rem, 1vw, .75rem);
}

.section-gallery2__stage {
    position: relative;
    overflow: hidden;
    user-select: none;
    flex: 1;
    min-width: 0;
    container-type: inline-size;
}

.section-gallery2__track {
    display: flex;
    gap: var(--gallery2-gap);
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.section-gallery2__slide {
    flex: 0 0 calc((100cqw - (2 * var(--gallery2-gap))) / 3);
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(.5rem, 1.2vw, .75rem);
}

.section-gallery2__media {
    aspect-ratio: 4 / 3;
    border-radius: var(--gallery2-radius);
    overflow: hidden;
    background: var(--wine);
}

button.section-gallery2__trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    cursor: zoom-in;
    font: inherit;
    text-align: inherit;
    color: inherit;
}

.section-gallery2__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-gallery2__media--placeholder {
    background: var(--wine);
}

.section-gallery2__caption {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--wine);
    text-align: center;
    margin: 0;
}

.section-gallery2__caption--empty {
    visibility: hidden;
}

.section-gallery2__title {
    font-family: var(--font-body);
    font-size: clamp(.9rem, 1.3vw, 1rem);
    font-weight: 500;
    color: var(--text);
    text-align: center;
    margin: 0;
}

.section-gallery2--carousel .gallery2-prev,
.section-gallery2--carousel .gallery2-next {
    flex-shrink: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(2.5rem, 4.5vw, 3.25rem);
    height: clamp(2.5rem, 4.5vw, 3.25rem);
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--wine);
    color: var(--white);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    line-height: 1;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
    opacity: .92;
}

.section-gallery2--carousel .gallery2-prev:hover,
.section-gallery2--carousel .gallery2-next:hover {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .section-gallery2 {
        --gallery2-gap: .5rem;
        --gallery2-radius: clamp(14px, 4vw, 20px);
    }

    .section-gallery2__carousel-wrap {
        gap: .25rem;
    }

    .section-gallery2--carousel .section-gallery2__slide {
        flex: 0 0 100cqw;
    }

    .section-gallery2--carousel .section-gallery2__track {
        gap: 0;
    }

    .section-gallery2:not(.section-gallery2--carousel) .section-gallery2__track {
        flex-direction: column;
        align-items: stretch;
    }

    .section-gallery2:not(.section-gallery2--carousel) .section-gallery2__slide {
        flex: 0 0 auto;
        width: 100%;
    }

    .section-gallery2--carousel .gallery2-prev,
    .section-gallery2--carousel .gallery2-next {
        width: clamp(2.25rem, 9vw, 2.75rem);
        height: clamp(2.25rem, 9vw, 2.75rem);
        font-size: clamp(1.15rem, 4.5vw, 1.45rem);
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   LIGHTBOX — Andamento
═══════════════════════════════════════════════════════════════════════════ */
.gallery2-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(3.5rem, 8vw, 5rem) clamp(1rem, 4vw, 2rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
}

.gallery2-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gallery2-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .88);
}

.gallery2-lightbox__close {
    position: absolute;
    top: clamp(.75rem, 2.5vw, 1.5rem);
    right: clamp(.75rem, 2.5vw, 1.5rem);
    z-index: 2;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1;
    cursor: pointer;
    opacity: .9;
    transition: opacity .2s, transform .2s;
}

.gallery2-lightbox__close:hover {
    opacity: 1;
    transform: scale(1.05);
}

.gallery2-lightbox__figure {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: min(92vw, 1100px);
    max-height: 100%;
}

.gallery2-lightbox__img {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - clamp(5rem, 12vw, 8rem));
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: clamp(8px, 1.2vw, 14px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .45);
}

body.gallery2-lightbox-open {
    overflow: hidden;
}


/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════════════ */
.site-footer {
    background: #000;
    padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, .75fr) minmax(0, .75fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.site-footer__brand-top {
    max-width: 170px;
}

.site-footer__logo {
    display: block;
    width: 100%;
    max-width: 150px;
    height: auto;
}

.site-footer__logo-text {
    display: none;
}

.site-footer__tagline {
    margin: .45rem 0 0;
    font-size: .62rem;
    font-weight: 400;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .82);
    line-height: 1.4;
}

.site-footer__newsletter {
    margin-top: clamp(1.75rem, 3vw, 2.25rem);
    max-width: 290px;
}

.site-footer__newsletter input[type="email"] {
    width: 100%;
    padding: .55rem 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .55);
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: .875rem;
    outline: none;
}

.site-footer__newsletter input[type="email"]::placeholder {
    color: rgba(255, 255, 255, .45);
}

.site-footer__newsletter input[type="email"]:focus {
    border-bottom-color: var(--white);
}

.site-footer__newsletter-btn {
    margin-top: 1rem;
    padding: .6rem 1.35rem;
    border: none;
    background: #8d8d8d;
    color: var(--white);
    font-family: var(--font-body);
    font-size: .82rem;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s;
}

.site-footer__newsletter-btn:hover {
    background: #9a9a9a;
}

.site-footer__newsletter-btn:disabled {
    opacity: .65;
    cursor: not-allowed;
}

.site-footer__newsletter-note {
    margin: .7rem 0 0;
    font-size: .72rem;
    color: rgba(255, 255, 255, .42);
    line-height: 1.45;
}

.site-footer__newsletter-feedback {
    margin: .65rem 0 0;
    font-size: .75rem;
    color: rgba(255, 255, 255, .75);
}

.site-footer__newsletter-feedback.is-error {
    color: #f0a0a0;
}

.site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
    margin-top: clamp(2rem, 4vw, 3rem);
}

.site-footer__contact-label {
    display: block;
    margin-bottom: .3rem;
    font-size: .62rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .42);
}

.site-footer__contact a {
    color: var(--white);
    font-size: .92rem;
    font-weight: 400;
    text-decoration: none;
    transition: opacity .2s;
}

.site-footer__contact a:hover {
    opacity: .8;
}

.site-footer__heading {
    margin: 0 0 1.35rem;
    font-family: var(--font-body);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--white);
}

.site-footer__menu,
.site-footer__social {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__menu a,
.site-footer__social a {
    color: var(--white);
    font-size: .875rem;
    font-weight: 400;
    text-decoration: none;
    transition: opacity .2s;
}

.site-footer__menu-btn {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: var(--white);
    font-size: .875rem;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    transition: opacity .2s;
}

.site-footer__menu a:hover,
.site-footer__social a:hover,
.site-footer__menu-btn:hover {
    opacity: .75;
}

@media (max-width: 900px) {
    .site-footer__inner {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__col--brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .site-footer__newsletter {
        max-width: 100%;
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   WHATSAPP FLUTUANTE
═══════════════════════════════════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    right: max(clamp(1rem, 3vw, 1.75rem), env(safe-area-inset-right, 0px));
    bottom: max(clamp(1rem, 3vw, 1.75rem), env(safe-area-inset-bottom, 0px));
    z-index: 9995;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(3.25rem, 8vw, 3.75rem);
    height: clamp(3.25rem, 8vw, 3.75rem);
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .22);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.whatsapp-float:hover {
    background: #20bd5a;
    transform: scale(1.06);
    box-shadow: 0 6px 22px rgba(0, 0, 0, .28);
}

.whatsapp-float:active {
    transform: scale(.98);
}

.whatsapp-float__icon {
    display: block;
    width: clamp(1.55rem, 4vw, 1.75rem);
    height: clamp(1.55rem, 4vw, 1.75rem);
}

body.admin-bar .whatsapp-float {
    bottom: calc(max(clamp(1rem, 3vw, 1.75rem), env(safe-area-inset-bottom, 0px)) + 32px);
}

@media screen and (max-width: 782px) {
    body.admin-bar .whatsapp-float {
        bottom: calc(max(clamp(1rem, 3vw, 1.75rem), env(safe-area-inset-bottom, 0px)) + 46px);
    }
}
