
/* tweak-driven toggles */
html.hide-faixa body::after { display: none; }
html.hide-meta .meta { display: none; }
html.plain-price .book-price { background: var(--cocoa); }
html.red-intense h1.display em,
html.red-intense h2.section-title em { color: var(--terracotta); }
html.red-intense .voice .stars,
html.red-intense .marquee-track .star,
html.red-intense .eyebrow,
html.red-intense .section-tag,
html.red-intense .place-list .km,
html.red-intense .amen .num,
html.red-intense .about-card .num { color: var(--terracotta); }
html.red-intense .eyebrow::before,
html.red-intense .section-tag::before { background: var(--terracotta); }

/* ═══════════════════════════════════════════
          FULLSCREEN SLIDER
       ═══════════════════════════════════════════ */
.fs-slider {
    position: relative;
    width: 100%; height: 100vh;
    min-height: 560px;
    overflow: hidden;
    background: #111;
    z-index: 0;
}

/* slides */
.fs-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(.4,0,.2,1);
    will-change: opacity;
}
.fs-slide.active { opacity: 1; z-index: 1; }
.fs-slide.prev   { opacity: 0; z-index: 0; }

/* placeholder gradient backgrounds (swap for real <img> later) */
.fs-slide-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 6s ease;
    will-change: transform;
}
.fs-slide.active .fs-slide-bg { transform: scale(1); }

/* gradient overlays per slide */
.fs-slide-bg::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(
        160deg,
        rgba(26,22,20,.55) 0%,
        rgba(26,22,20,.15) 50%,
        rgba(26,22,20,.65) 100%
    );
}

/* slide-specific gradient palettes */
.fs-slide:nth-child(1) .fs-slide-bg { background-image: url(assets/slide-1.jpg), linear-gradient(135deg,#2C1A0E 0%,#5C3820 30%,#8B5E38 60%,#C9974A 100%); }
.fs-slide:nth-child(2) .fs-slide-bg { background-image: linear-gradient(160deg,#0A1F1A 0%,#1A4030 35%,#2E6B50 65%,#4A9070 100%); }
.fs-slide:nth-child(3) .fs-slide-bg { background-image: linear-gradient(120deg,#0F1C2E 0%,#1A3048 40%,#1E4D6E 70%,#2A6090 100%); }
.fs-slide:nth-child(4) .fs-slide-bg { background-image: linear-gradient(150deg,#1A160A 0%,#3A2E18 40%,#6B5228 65%,#9A7A42 100%); }
.fs-slide:nth-child(5) .fs-slide-bg { background-image: linear-gradient(140deg,#160C18 0%,#2E1A38 40%,#6B3860 60%,#C87040 100%); }

/* content overlay */
.fs-slide-content {
    position: absolute; z-index: 2;
    bottom: 0; left: 0; right: 0;
    padding: 0 80px 100px;
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 40px;
    background: linear-gradient(0deg, rgba(15,10,5,.65) 0%, transparent 60%);
}
.fs-slide-text { max-width: fit-contentpx; }
.fs-slide-tag {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--mono); font-size: 11px;
    letter-spacing: .28em; text-transform: uppercase;
    color: rgba(247,244,237,.55);
    margin-bottom: 16px;
}
.fs-slide-tag .bar { width: 28px; height: 1px; background: var(--terracotta); display: block; }
.fs-slide-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(36px, 5.5vw, 75px);
    line-height: .93;
    letter-spacing: -.02em;
    color: var(--paper);
    margin: 0 0 18px;
    text-wrap: pretty;
}
.fs-slide-title em { font-style: italic; color: #E8C87A; font-weight: 400; }
.fs-slide-desc {
    font-family: var(--serif);
    font-style: italic;
    line-height: 1.5;
    /*
    font-size: 18px;
    color: rgba(247,244,237,.6);
    max-width: 42ch;
    */
    font-size: 1.4rem;
    color:#FFFFFF;
    width: fit-content;
    background: var(--terracotta);
    padding: 0 10px;
}

/* slide counter + cta (right side) */
.fs-slide-aside {
    display: flex; flex-direction: column;
    align-items: flex-end; gap: 20px;
    flex-shrink: 0;
}
.fs-counter {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: .2em; text-transform: uppercase;
    color: rgba(247,244,237,.4);
}
.fs-counter strong { color: var(--paper); font-weight: 500; font-size: 15px; }
.fs-cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 22px;
    background: var(--terracotta); color: var(--paper);
    text-decoration: none; font-size: 12px; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer; font-family: var(--sans);
    transition: background .25s ease;
    white-space: nowrap;
}
.fs-cta:hover { background: var(--terracotta-d); }

/* dots */
.fs-dots {
    position: absolute; z-index: 3;
    bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; align-items: center;
}
.fs-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(247,244,237,.3);
    border: none; cursor: pointer; padding: 0;
    transition: background .3s ease, transform .3s ease;
}
.fs-dot.active {
    background: var(--terracotta);
    transform: scale(1.4);
}

/* arrows */
.fs-arrow {
    position: absolute; z-index: 3;
    top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(247,244,237,.1);
    border: 1px solid rgba(247,244,237,.18);
    color: var(--paper); font-size: 18px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .25s ease, border-color .25s ease;
    backdrop-filter: blur(4px);
}
.fs-arrow:hover { background: var(--terracotta); border-color: var(--terracotta); }
.fs-arrow.prev { left: 36px; }
.fs-arrow.next { right: 36px; }
.fs-arrow svg { pointer-events: none; }

/* progress bar */
.fs-progress {
    position: absolute; z-index: 3;
    top: 0; left: 0; height: 2px;
    background: var(--terracotta);
    width: 0%;
    transition: width 5s linear;
}
.fs-progress.running { width: 100%; }

/* scroll indicator */
.fs-scroll {
    position: absolute; z-index: 3;
    bottom: 28px; right: 80px;
    display: flex; align-items: center; gap: 10px;
    font-family: var(--mono); font-size: 10px;
    letter-spacing: .24em; text-transform: uppercase;
    color: rgba(247,244,237,.35);
    writing-mode: vertical-rl;
    gap: 12px;
    animation: scrollPulse 2.5s ease-in-out infinite;
}
.fs-scroll::after {
    content: "";
    display: block; width: 1px; height: 40px;
    background: linear-gradient(180deg, rgba(247,244,237,.35), transparent);
}
@keyframes scrollPulse {
    0%,100% { opacity: .5; transform: translateY(0); }
    50%      { opacity: 1;  transform: translateY(6px); }
}

/* ── slider responsive ── */
@media (max-width: 767px) {
    .fs-slide-content { padding: 0 20px 80px; flex-direction: column; align-items: flex-start; gap: 20px; }
    .fs-slide-title { font-size: clamp(30px, 9vw, 52px); }
    .fs-slide-aside { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
    .fs-arrow { width: 40px; height: 40px; font-size: 14px; }
    .fs-arrow.prev { left: 14px; }
    .fs-arrow.next { right: 14px; }
    .fs-scroll { display: none; }
    .fs-counter { display: none; }
}
@media (max-width: 1199px) and (min-width: 768px) {
    .fs-slide-content { padding: 0 48px 80px; }
    .fs-slide-title { font-size: clamp(32px, 5vw, 64px); }
}

/* Whites palette — caiada pura, cal velha, papel artesanal
   com um único momento de vermelho almagre */
:root {
    --cream:        #F7F4ED;   /* warm off-white background */
    --cream-deep:   #EAE4D5;   /* sun-bleached cal */
    --paper:        #FFFFFF;   /* pure caiada */
    --cocoa:        #1A1614;   /* tinta escura */
    --cocoa-soft:   #5A4F45;   /* texto secundário */
    --terracotta:   #C8341C;   /* VERMELHO ALMAGRE — accent primário */
    --terracotta-d: #9A2412;   /* vermelho profundo */
    --ocean:        #8A2C12;   /* tom complementar */
    --ocean-deep:   #6A1F0C;   /* tom complementar profundo */
    --forest:       #C9B888;   /* ocre claro decorativo */
    --forest-deep:  #8C7A52;   /* ocre profundo */
    --sun:          #E6B23F;   /* amarelo trigo (residual) */
    --rule:         rgba(26,22,20,.14);

    --serif: "Cormorant Garamond", "Times New Roman", serif;
    --sans:  "Manrope", -apple-system, system-ui, sans-serif;
    --mono:  "JetBrains Mono", ui-monospace, monospace;
}

*  { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    background: var(--cream);
    color: var(--cocoa);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    transition: background-color .4s ease, color .4s ease;
}

::selection { background: var(--terracotta); color: var(--paper); }

/* ─── subtle paper grain ─── */
body::before {
    content: "";
    position: fixed; inset: 0;
    background-image:
        radial-gradient(rgba(26,22,20,.025) 1px, transparent 1px),
        radial-gradient(rgba(26,22,20,.018) 1px, transparent 1px);
    background-size: 3px 3px, 7px 7px;
    background-position: 0 0, 1px 1px;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply;
}

/* ─── faixa vermelha — fixed baseboard accent (small red moment) ─── */
body::after {
    content: "";
    position: fixed;
    left: 0; right: 0; bottom: 0;
    height: 6px;
    background: var(--terracotta);
    z-index: 100;
    pointer-events: none;
}

.wrap { max-width: 1360px; margin: 0 auto; padding: 0 48px; position: relative; z-index: 2; }

/* ─── meta bar — small red accent strip ─── */
.meta {
    border-bottom: 1px solid rgba(255,255,255,.18);
    background: var(--terracotta);
    color: var(--paper);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.meta-inner {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0;
}
.meta-inner span { display: inline-flex; align-items: center; gap: 8px; }
.meta-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sun); display: inline-block; }

/* ─── header / nav ─── */
header.nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--rule);
}
.nav-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 18px 0;
}
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--cocoa); }
.logo img { height: 52px; width: auto; display: block; }
.logo .lock { font-family: var(--serif); font-weight: 600; font-size: 20px; line-height: 1; letter-spacing: .01em; }
.logo .lock small { display: block; font-family: var(--mono); font-size: 9px; letter-spacing: .25em; color: var(--cocoa-soft); margin-top: 4px; }

nav ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; gap: 36px; justify-content: center;
    font-size: 13px; letter-spacing: .04em;
}
nav a {
    color: var(--cocoa); text-decoration: none; font-weight: 500;
    position: relative; padding: 6px 0;
}
nav a::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
    height: 1px; background: var(--terracotta);
    transition: right .35s ease;
}
nav a:hover::after { right: 0; }

.nav-cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 22px;
    background: var(--cocoa); color: var(--paper);
    text-decoration: none; font-size: 12px; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    border-radius: 999px;
    transition: background .25s ease;
}
.nav-cta:hover { background: var(--terracotta); }
.nav-cta::after { content: "→"; }

/* ─── HERO ─── */
section.hero { padding: 72px 0 96px; position: relative; }

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: end;
}

.eyebrow {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: .28em; text-transform: uppercase;
    color: var(--terracotta-d);
    display: inline-flex; align-items: center; gap: 14px;
    margin-bottom: 28px;
}
.eyebrow::before {
    content: ""; width: 36px; height: 1px; background: var(--terracotta-d);
}

h1.display {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(56px, 7.5vw, 110px);
    line-height: .92;
    letter-spacing: -.015em;
    margin: 0 0 32px;
    color: var(--cocoa);
}
h1.display em {
    font-style: italic;
    color: var(--terracotta-d);
    font-weight: 400;
}
h1.display .amp {
    font-style: italic; color: var(--ocean);
    font-weight: 400;
}

.hero-lede {
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.45;
    color: var(--cocoa-soft);
    font-style: italic;
    /* max-width: 38ch; */
    max-width: 50ch;
    margin: 0 0 40px;
}

.hero-stats {
    display: flex; gap: 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    margin-bottom: 36px;
}
.hero-stats > div {
    flex: 1;
    padding: 18px 18px 18px 0;
    border-right: 1px solid var(--rule);
}
.hero-stats > div:last-child { border-right: none; padding-right: 0; padding-left: 0; text-align: right; }
.hero-stats > div:not(:first-child):not(:last-child) { padding-left: 18px; }
.hero-stats .num {
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 500;
    line-height: 1;
    display: block;
}
.hero-stats .num small { font-size: 18px; vertical-align: super; color: var(--cocoa-soft); }
.hero-stats .lbl {
    display: block; margin-top: 8px;
    font-family: var(--mono); font-size: 10px;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--cocoa-soft);
}

.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 28px;
    font-size: 13px; font-weight: 600; letter-spacing: .1em;
    text-transform: uppercase; text-decoration: none;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .25s ease;
    font-family: var(--sans);
}
.btn-primary {
    background: var(--terracotta); color: var(--paper);
}
.btn-primary:hover { background: var(--terracotta-d); transform: translate(0, -2px); }
.btn-ghost {
    background: transparent; color: var(--cocoa);
    border-color: var(--cocoa);
}
.btn-ghost:hover { background: var(--cocoa); color: var(--paper); }
.btn .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }

/* hero side — video placeholder */
.hero-media {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--cream-deep);
    border-radius: 6px;
    overflow: hidden;
    box-shadow:
        0 1px 0 rgba(255,255,255,.4) inset,
        0 30px 60px -25px rgba(58,31,15,.35);
}

.hero-media .placeholder {
    position: absolute; inset: 0;
    background:
        repeating-linear-gradient(135deg, rgba(58,31,15,.06) 0 2px, transparent 2px 14px),
        linear-gradient(180deg, var(--cream-deep), #DBC9A6);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    color: var(--cocoa-soft);
    padding: 24px;
}
.hero-media .placeholder .tag {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: .25em; text-transform: uppercase;
    margin-bottom: 14px;
}
.hero-media .placeholder .desc {
    font-family: var(--serif); font-style: italic;
    font-size: 22px; max-width: 22ch; line-height: 1.3;
}

.hero-media-meta {
    position: absolute; left: 24px; right: 24px; bottom: 24px;
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--mono); font-size: 10px;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--paper);
    z-index: 2;
}
.hero-media-meta::before {
    content: ""; position: absolute; inset: -24px;
    background: linear-gradient(180deg, transparent, rgba(58,31,15,.45));
    z-index: -1;
}

/* decorative number label */
.nbr {
    position: absolute;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .2em;
    color: var(--cocoa-soft);
}
.nbr.tr { top: 20px; right: 0; }
.nbr-line { width: 60px; height: 1px; background: var(--rule); display: inline-block; vertical-align: middle; margin-right: 10px; }

/* ─── marquee strip ─── */
.marquee {
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    overflow: hidden;
    background: var(--paper);
}
.marquee-track {
    display: flex; gap: 56px;
    padding: 22px 0;
    white-space: nowrap;
    animation: marq 38s linear infinite;
    font-family: var(--serif);
    font-size: 26px;
    color: var(--cocoa);
    font-style: italic;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee-track .star { color: var(--terracotta); font-style: normal; }
@keyframes marq {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ─── SOBRE ─── */
section.about { padding: 140px 0 120px; }

.section-head {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: end; margin-bottom: 72px;
}
.section-tag {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: .28em; text-transform: uppercase;
    color: var(--ocean);
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 24px;
}
.section-tag::before {
    content: ""; width: 36px; height: 1px; background: var(--ocean);
}
h2.section-title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(40px, 4.5vw, 65px);
    line-height: 1;
    letter-spacing: -.01em;
    margin: 0;
    color: var(--cocoa);
}
h2.section-title em { font-style: italic; color: var(--terracotta-d); font-weight: 400; }
.section-head p {
    font-family: var(--serif);
    font-size: 19px; line-height: 1.55; font-style: italic;
    color: var(--cocoa-soft);
    margin: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 24px;
}
.about-grid > div { border-radius: 4px; overflow: hidden; position: relative; }
.about-card { background: var(--paper); padding: 32px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--rule); }
.about-card h3 { font-family: var(--serif); font-size: 30px; font-weight: 500; margin: 0; line-height: 1.05; }
.about-card p { margin: 16px 0 0; color: var(--cocoa-soft); font-size: 14.5px; }
.about-card .num { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; color: var(--terracotta-d); }

.img-slot {
    background: linear-gradient(135deg, var(--cream-deep), #C9B888);
    position: relative;
}
.img-slot::before {
    content: "";
    position: absolute; inset: 0;
    background:
        repeating-linear-gradient(45deg, rgba(58,31,15,.05) 0 1px, transparent 1px 12px);
}
.img-slot .lbl {
    position: absolute; left: 20px; bottom: 18px;
    font-family: var(--mono); font-size: 10px;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--cocoa);
    background: var(--paper);
    padding: 6px 10px;
    border-radius: 2px;
}
.img-slot.ocean { background: linear-gradient(160deg, #4A82BD, var(--terracotta-d)); }
.img-slot.ocean .lbl { background: var(--paper); }
.img-slot.forest { background: linear-gradient(160deg, #DDB55A, var(--forest-deep)); }

.about-grid .tall { grid-row: span 2; }
.about-grid .feature {
    background: var(--cocoa);
    color: var(--paper);
    padding: 36px;
    display: flex; flex-direction: column; justify-content: space-between;
}
.about-grid .feature h3 { font-family: var(--serif); font-size: 38px; font-weight: 500; line-height: 1.05; margin: 0; }
.about-grid .feature h3 em { color: var(--sun); font-style: italic; }
.about-grid .feature p { color: rgba(251,246,236,.7); font-size: 14.5px; margin: 16px 0 0; }
.about-grid .feature .meta {
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
    color: rgba(251,246,236,.55);
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(251,246,236,.15);
}

/* ─── MONTES GRID ─── */
.montes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
}
.monte-thumb-wrap {
    flex: 1 1 13%;
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}
.monte-thumb-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 4px;
    background: linear-gradient(
        90deg,
        var(--cream-deep) 25%,
        #f0ead9       50%,
        var(--cream-deep) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    pointer-events: none;
}
.monte-thumb-wrap.img-loaded::before {
    animation: none;
    /*opacity: 0;*/
}
.monte-thumb {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    /*transition: opacity .4s ease, outline-offset .2s ease;*/
    outline: 3px solid transparent;
    outline-offset: 0;
    position: relative;
    z-index: 1;
    opacity: 0;
}
.monte-thumb.is-loaded        { opacity: 1; }
.monte-thumb.is-loaded:hover  { opacity: .88; }
.monte-thumb.is-active {
    outline-color: var(--terracotta);
    outline-offset: 3px;
    opacity: 1;
}
.monte-thumb-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cocoa-soft);
    text-align: center;
}

/* ─── MONTE DETAIL PANEL ─── */
.monte-detail {
    max-height: 0;
    overflow: hidden;
    /*transition: max-height .2s cubic-bezier(.4,0,.2,1);*/
    margin-top: 0;
}
.monte-detail.is-open {
    max-height: 1400px;
    margin-top: 40px;
}
@keyframes detailOpen {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: none; }
}
.monte-detail.is-open .monte-detail-inner {
    animation: detailOpen .18s ease both;
}
.monte-detail-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 48px;
    background: var(--cream-deep);
    border-radius: 4px;
    border: 1px solid var(--rule);
    position: relative;
}
.monte-detail-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}
.monte-detail-tag {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--terracotta-d);
    display: flex;
    align-items: center;
    gap: 12px;
}
.monte-detail-tag::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--terracotta-d);
    display: block;
}
.monte-detail-name {
    font-family: var(--serif);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 500;
    line-height: 1.05;
    margin: 0;
    color: var(--cocoa);
}
.monte-detail-desc {
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.6;
    font-style: italic;
    color: var(--cocoa-soft);
    margin: 0;
}
.monte-detail-right {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-content: flex-start;
}
.monte-mini-wrap {
    position: relative;
    width: calc(33.33% - 7px);
    aspect-ratio: 1;
}
.monte-mini-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 3px;
    background: linear-gradient(
        90deg,
        #cfc8b5 25%,
        #dbd4c0 50%,
        #cfc8b5 75%
    );
    background-size: 200% 100%;
    /*animation: shimmer 1.5s infinite linear;*/
    pointer-events: none;
}
.monte-mini-wrap.img-loaded::before {
    animation: none;
    opacity: 0;
}
.monte-detail-mini {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 3px;
    cursor: pointer;
    outline: 3px solid transparent;
    outline-offset: 0px;
    position: relative;
    z-index: 1;
}
.monte-detail-mini:hover   { opacity: .82; }
.monte-detail-mini.is-active {
    outline-color: var(--terracotta);
    outline-offset: 2px;
    opacity: 1;
}
.monte-detail-viewer {
    grid-column: 1 / -1;
    max-height: 0;
    overflow: hidden;
    /*transition: max-height .4s cubic-bezier(.4,0,.2,1);*/
    position: relative;
}
.monte-detail-viewer.is-open {
    max-height: 700px;
}
.monte-detail-viewer-img {
    width: 100%;
    max-height: 620px;
    object-fit: contain;
    border-radius: 3px;
    display: block;
}
.monte-viewer-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--paper);
    border: 1px solid var(--rule);
    color: var(--cocoa);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.10);
}
.monte-viewer-arrow:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: var(--paper);
}
.monte-viewer-arrow svg { pointer-events: none; }
.monte-viewer-prev { left: 16px; }
.monte-viewer-next { right: 16px; }
.monte-detail-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: 1px solid var(--rule);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    color: var(--cocoa-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}
.monte-detail-close:hover {
    background: var(--cocoa);
    color: var(--paper);
    border-color: var(--cocoa);
}

/* ─── VIDEO — fundo neutro escuro sobre paredes brancas ─── */
section.video-section {
    background: var(--cocoa);
    color: var(--paper);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
section.video-section::before {
    content: "";
    position: absolute; top: -20%; right: -10%;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(200,52,28,.18), transparent 60%);
    pointer-events: none;
}
.video-head {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: end; margin-bottom: 48px;
}
.video-head .section-tag { color: var(--sun); }
.video-head .section-tag::before { background: var(--sun); }
.video-head h2.section-title { color: var(--paper); }
.video-head h2.section-title em { color: var(--sun); }
.video-head p { color: rgba(251,246,236,.65); font-family: var(--serif); font-style: italic; font-size: 19px; margin: 0; }

.video-grid {
    display: flex;
    gap: 16px;
}
.video-frame {
    flex: 1 1 0;
    min-width: 0;
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(251,246,236,.12);
}
.video-frame video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}



.video-corners {
    position: absolute; inset: 18px;
    pointer-events: none;
}
.video-corners::before, .video-corners::after,
.video-corners > span::before, .video-corners > span::after {
    content: ""; position: absolute;
    width: 22px; height: 22px;
    border-color: rgba(251,246,236,.5);
    border-style: solid;
    border-width: 0;
}
.video-corners::before { top: 0; left: 0; border-top-width: 1px; border-left-width: 1px; }
.video-corners::after  { top: 0; right: 0; border-top-width: 1px; border-right-width: 1px; }
.video-corners > span::before { bottom: 0; left: 0; border-bottom-width: 1px; border-left-width: 1px; }
.video-corners > span::after  { bottom: 0; right: 0; border-bottom-width: 1px; border-right-width: 1px; }

.video-caption {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 24px;
    font-family: var(--mono); font-size: 11px;
    letter-spacing: .2em; text-transform: uppercase;
    color: rgba(251,246,236,.55);
}
.video-caption .rec { color: var(--terracotta); display: inline-flex; align-items: center; gap: 8px; }
.video-caption .rec::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--terracotta); animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 50% { opacity: .25; } }
@keyframes shimmer {
    0%   { background-position:  200% 0; }
    100% { background-position: -200% 0; }
}

/* ─── COMODIDADES ─── */
section.amenities { padding: 140px 0 60px; }

.amen-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
}
.amen {
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 36px 28px 36px 12px;
    position: relative;
    transition: background .3s ease;
}
.amen:nth-child(4n) { border-right: none; }
.amen:hover { background: var(--paper); padding-left: 12px; }
.amen .num { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; color: var(--terracotta-d); margin-bottom: 16px; display: block; }
.amen .mark {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--cocoa);
    border-radius: 50%;
    margin-bottom: 24px;
    font-family: var(--serif);
    font-size: 22px;
    font-style: italic;
    color: var(--cocoa);
}
.amen h4 {
    font-family: var(--serif); font-weight: 500;
    font-size: 24px; line-height: 1.15; margin: 0 0 10px;
}
.amen p { margin: 0; font-size: 14px; color: var(--cocoa-soft); line-height: 1.55; }

/* ─── EXPERIENCIA / LOCAL ─── */
section.place {
    padding: 120px 0;
    background: var(--paper);
    position: relative;
}
.place-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center;
}
.place-imgs {
    display: grid; grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px;
    gap: 16px;
}
.place-imgs .img-slot { border-radius: 4px; }
.place-imgs .img-slot:first-child { grid-row: span 2; }

.place-list {
    list-style: none; padding: 0; margin: 36px 0 0;
    border-top: 1px solid var(--rule);
}
.place-list li {
    display: grid; grid-template-columns: 80px 1fr auto;
    align-items: baseline;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid var(--rule);
    font-size: 15px;
}
.place-list .km { font-family: var(--mono); font-size: 12px; color: var(--terracotta-d); letter-spacing: .1em; }
.place-list .name { font-family: var(--serif); font-size: 22px; }
.place-list .type { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--cocoa-soft); }

/* ─── Quinta / FORM ─── */
section.quinta {
    padding: 140px 0;
    background: var(--cream-deep);
}

/* ─── RESERVAS / FORM ─── */
section.book {
    padding: 140px 0;
    background: var(--cream-deep);
}
.book-grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px;
    align-items: start;
}
.book-info h2 { margin-bottom: 24px; }
.book-info .lede {
    font-family: var(--serif); font-style: italic;
    font-size: 22px; line-height: 1.5; color: var(--cocoa-soft);
    margin: 0 0 36px;
    /*max-width: 32ch;*/
}
.book-meta {
    border-top: 1px solid var(--rule);
    padding-top: 20px;
    font-family: var(--mono); font-size: 11px;
    letter-spacing: .15em; text-transform: uppercase;
    color: var(--cocoa-soft);
    line-height: 1.9;
}
.book-meta strong { color: var(--cocoa); font-weight: 600; }
/* small red moment: price card */
.book-price {
    margin-top: 36px;
    padding: 24px;
    background: #386FF0;
    color: var(--paper);
    border-radius: 4px;
    display: flex; justify-content: space-between; align-items: center;
}
.book-price .from { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; opacity: .6; }
.book-price .price { font-family: var(--serif); font-size: 42px; line-height: 1; }
.book-price .price small { font-size: 16px; opacity: .6; margin-left: 6px; }

form.reservation {
    background: var(--paper);
    padding: 44px;
    border-radius: 6px;
    border: 1px solid var(--rule);
    box-shadow: 0 30px 60px -40px rgba(58,31,15,.25);
}
form .form-head {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--rule);
}
form .form-head h3 {
    font-family: var(--serif); font-size: 30px; font-weight: 500;
    margin: 0;
}
form .form-head .step {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--cocoa-soft);
}

.field-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    margin-bottom: 18px;
}
.field-row.three { grid-template-columns: 1fr 1fr 1fr; }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--cocoa-soft);
    margin-bottom: 8px;
}
.field input, .field select, .field textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--rule);
    padding: 10px 0;
    font-family: var(--serif);
    font-size: 19px;
    color: var(--cocoa);
    outline: none;
    border-radius: 0;
    transition: border-color .25s ease;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(58,31,15,.3); font-style: italic; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--terracotta); }
.field textarea { resize: vertical; min-height: 90px; font-size: 16px; line-height: 1.5; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--cocoa) 50%), linear-gradient(135deg, var(--cocoa) 50%, transparent 50%); background-position: calc(100% - 14px) 18px, calc(100% - 8px) 18px; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 28px; cursor: pointer; }

.pax-stepper { display: flex; align-items: center; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--rule); }
.pax-stepper button {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid var(--cocoa);
    background: transparent; color: var(--cocoa);
    cursor: pointer; font-size: 16px; line-height: 1;
    transition: all .2s;
}
.pax-stepper button:hover { background: var(--cocoa); color: var(--paper); }
.pax-stepper .val { font-family: var(--serif); font-size: 19px; min-width: 30px; text-align: center; }

.form-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--rule);
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px;
}
.form-footer .check {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 12px; color: var(--cocoa-soft); line-height: 1.4;
    max-width: 280px;
}
.form-footer .check input { margin-top: 3px; accent-color: var(--terracotta); }
.form-footer button[type=submit] {
    flex-shrink: 0;
}

/* confirmation banner */
.confirm {
    display: none;
    margin-top: 16px;
    padding: 16px 20px;
    background: var(--forest);
    color: var(--paper);
    border-radius: 4px;
    font-size: 14px;
    font-family: var(--sans);
}
.confirm.on { display: block; animation: slideIn .4s ease; }
@keyframes slideIn { from { transform: translateY(8px); opacity: 0; } to { transform: none; opacity: 1; } }

/* ─── TESTIMONIALS ─── */
section.voices { padding: 120px 0; border-top: 1px solid var(--rule); }
.voices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.voice {
    border-top: 2px solid var(--cocoa);
    padding-top: 28px;
}
.voice .stars { color: var(--terracotta); font-size: 14px; letter-spacing: 4px; margin-bottom: 18px; }
.voice blockquote {
    margin: 0 0 24px;
    font-family: var(--serif); font-style: italic;
    font-size: 22px; line-height: 1.4; color: var(--cocoa);
}
.voice .who { font-family: var(--mono); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--cocoa-soft); }
.voice .who strong { color: var(--cocoa); font-weight: 600; display: block; font-size: 12px; margin-bottom: 4px; letter-spacing: .1em; }

/* ─── FOOTER — paredes brancas, com faixa vermelha em baixo ─── */
footer {
    background: var(--paper);
    color: var(--cocoa);
    padding: 100px 0 48px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--rule);
}
footer::after {
    content: "";
    position: absolute; left: 0; right: 0; bottom: 0;
    height: 60px;
    background: #386FF0;
    z-index: 1;
}
footer::before {
    content: "Alentejo";
    position: absolute;
    bottom: 80px; left: 50%;
    transform: translateX(-50%) translateY(50%);
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(120px, 18vw, 280px);
    color: rgba(31,26,18,.05);
    white-space: nowrap;
    pointer-events: none;
    line-height: 1;
    z-index: 0;
}
.foot-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px;
    position: relative; z-index: 2;
}
footer h5 {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--terracotta);
    margin: 0 0 22px;
    font-weight: 500;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { font-family: var(--serif); font-size: 19px; margin-bottom: 8px; color: var(--cocoa); }
footer a { color: var(--cocoa); text-decoration: none; transition: color .25s; }
footer a:hover { color: var(--terracotta); }
footer .brand p { font-family: var(--serif); font-style: italic; font-size: 18px; max-width: 32ch; color: var(--cocoa-soft); }
footer .brand .lockup {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 20px;
}
footer .brand .lockup img { height: 64px; background: var(--cream); padding: 6px; border-radius: 4px; border: 1px solid var(--rule); }
footer .brand .lockup .name {
    font-family: var(--serif); font-size: 20px; line-height: 1;
}
footer .brand .lockup .name small { display: block; font-family: var(--mono); font-size: 9px; letter-spacing: .25em; opacity: .55; margin-top: 6px; }

.foot-bottom {
    margin-top: 72px;
    padding-top: 24px;
    border-top: 1px solid var(--rule);
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--mono); font-size: 10px;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--cocoa-soft);
    position: relative; z-index: 2;
}

/* ═══════════════════════════════════════════
   TABLET  768px – 1199px
═══════════════════════════════════════════ */
@media (max-width: 1199px) and (min-width: 768px) {
    .wrap { padding: 0 36px; }

    /* nav — hide long links, keep logo + CTA */
    nav ul { gap: 20px; font-size: 12px; }

    /* hero */
    section.hero { padding: 52px 0 72px; }
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
    h1.display { font-size: clamp(44px, 6vw, 80px); }
    .hero-lede { font-size: 18px; }
    .hero-stats .num { font-size: 26px; }

    /* about */
    section.about { padding: 80px 0 72px; }
    .section-head { grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 48px; }
    h2.section-title { font-size: clamp(32px, 4vw, 56px); }
    .about-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 220px 220px;
        gap: 16px;
    }
    .about-grid .tall { grid-row: span 2; }
    .about-grid .feature { grid-column: span 2; grid-row: auto; }

    /* video */
    section.video-section { padding: 80px 0; }
    .video-head { grid-template-columns: 1fr 1fr; gap: 40px; }

    /* amenities */
    section.amenities { padding: 80px 0 48px; }
    .amen-grid { grid-template-columns: repeat(4, 1fr); }
    .amen { padding: 28px 20px 28px 8px; }
    .amen:hover { padding-left: 8px; }

    /* place */
    section.place { padding: 80px 0; }
    .place-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
    .place-imgs { grid-template-rows: 150px 150px; gap: 12px; }
    .place-list li { grid-template-columns: 60px 1fr auto; gap: 16px; }

    /* book */
    section.book { padding: 80px 0; }
    .book-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
    form.reservation { padding: 36px; }
    .field-row { grid-template-columns: 1fr 1fr; }
    .field-row.three { grid-template-columns: 1fr 1fr 1fr; }

    /* voices */
    section.voices { padding: 80px 0; }
    .voices-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .voice blockquote { font-size: 19px; }

    /* footer */
    footer { padding: 72px 0 36px; }
    .foot-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
    .foot-grid > div:last-child { display: none; } /* hide morada on tablet */
}

/* ═══════════════════════════════════════════
   SMARTPHONE  ≤ 767px
═══════════════════════════════════════════ */
@media (max-width: 900px) {
    header.nav {
        display:none;
    }
/*}
@media (max-width: 767px) {
*/
    .eyebrow { font-size: 9px; }

    #header-reserve{
        display: none;
    }

    .wrap { padding: 0 20px; }

    /* ── meta bar ── */
    .meta-inner { flex-direction: column; gap: 6px; padding: 10px 0; text-align: center; font-size: 10px; }
    /*.meta-inner > span:nth-child(3) { display: none; }*/

    /* ── nav ── */
    .nav-inner { grid-template-columns: 1fr auto; padding: 14px 0; gap: 0; }
    nav { display: none; }
    .nav-cta { padding: 10px 16px; font-size: 11px; }
    .logo .lock { font-size: 15px; }
    .logo .lock small { display: none; }

    /* ── hero ── */
    section.hero { padding: 36px 0 52px; }
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    h1.display { font-size: clamp(40px, 11vw, 64px); margin-bottom: 20px; }
    h1.display br { display: none; }
    .hero-lede { font-size: 17px; margin-bottom: 24px; }
    .hero-stats { flex-wrap: wrap; }
    .hero-stats > div { flex: 1 1 40%; padding: 14px 10px; border-right: none; border-bottom: 1px solid var(--rule); }
    .hero-stats > div:last-child { border-bottom: none; text-align: left; padding-left: 0; }
    .hero-stats .num { font-size: 26px; }
    .hero-stats .lbl { font-size: 8px; }
    .hero-actions { flex-direction: column; gap: 10px; }
    .btn { width: 100%; justify-content: center; padding: 14px 20px; }
    .hero-media { aspect-ratio: 4 / 3; }
    .nbr { display: none; }

    /* ── marquee ── */
    .marquee-track { font-size: 20px; gap: 36px; }

    /* ── about ── */
    section.about { padding: 60px 0 52px; }
    .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }
    h2.section-title { font-size: clamp(30px, 8vw, 48px); }
    .section-head p { font-size: 16px; }
    .about-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 14px;
    }
    .about-grid .tall { grid-row: auto; min-height: 260px; }
    .about-grid .feature { min-height: 240px; }
    .about-grid .feature h3 { font-size: 26px; }
    .about-card h3 { font-size: 24px; }
    .img-slot { min-height: 120px; }
    .img-slot .lbl { font-size: 8px; letter-spacing: .14em; padding: 4px 8px; }

    /* ── montes grid ── */
    .montes-grid { gap: 12px; }
    .monte-thumb-wrap { flex: 0 0 calc(50% - 6px); min-width: 0; }
    .monte-thumb { aspect-ratio: 1; }

    /* ── monte detail panel ── */
    .monte-detail.is-open { max-height: 2200px; }
    .monte-detail-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px 20px;
    }
    .monte-mini-wrap { width: calc(25% - 8px); }
    .monte-detail-viewer.is-open { max-height: 400px; }
    .monte-detail-viewer-img { max-height: 360px; }

    /* ── video ── */
    section.video-section { padding: 60px 0; }
    .video-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
    .video-head p { font-size: 16px; }
    .video-grid { flex-direction: column; }
    .video-caption { flex-direction: column; gap: 6px; align-items: flex-start; font-size: 10px; }

    /* ── amenities ── */
    section.amenities { padding: 60px 0 40px; }
    .amen-grid { grid-template-columns: 1fr 1fr; }
    .amen { padding: 24px 16px 24px 8px; }
    .amen:nth-child(4n) { border-right: 1px solid var(--rule); }
    .amen:nth-child(2n) { border-right: none; }
    .amen:hover { padding-left: 8px; }
    .amen h4 { font-size: 19px; }
    .amen p { font-size: 13px; }
    .amen .mark { width: 36px; height: 36px; font-size: 18px; margin-bottom: 16px; }

    /* ── place ── */
    section.place { padding: 60px 0; }
    .place-grid { grid-template-columns: 1fr; gap: 40px; }
    .place-imgs {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 120px 120px;
        gap: 10px;
    }
    .place-imgs .img-slot:first-child { grid-row: span 2; }
    .place-list li { grid-template-columns: 52px 1fr; gap: 12px; padding: 16px 0; }
    .place-list .type { display: none; }
    .place-list .name { font-size: 18px; }
    .place-list .km { font-size: 11px; }

    /* ── book ── */
    section.book { padding: 60px 0; }
    .book-grid { grid-template-columns: 1fr; gap: 36px; }
    .book-info .lede { font-size: 18px; }
    .book-price .price { font-size: 32px; }
    form.reservation { padding: 24px 20px; border-radius: 4px; }
    form .form-head h3 { font-size: 24px; }
    .field-row, .field-row.three { grid-template-columns: 1fr; gap: 0; }
    .field { margin-bottom: 18px; }
    .field input, .field select, .field textarea { font-size: 17px; }
    .form-footer { flex-direction: column; align-items: stretch; gap: 16px; }
    .form-footer .check { max-width: 100%; }

    /* ── voices ── */
    section.voices { padding: 60px 0; border-top: 1px solid var(--rule); }
    .voices-grid { grid-template-columns: 1fr; gap: 32px; margin-top: 36px; }
    .voice blockquote { font-size: 19px; }

    /* ── footer ── */
    footer { padding: 60px 0 32px; }
    footer::after { height: 44px; }
    .foot-grid { grid-template-columns: 1fr; gap: 36px; }
    /*.foot-grid > div:nth-child(3), .foot-grid > div:nth-child(4) { display: none; }*/
    footer .brand .lockup .name { font-size: 22px; }
    .foot-bottom { flex-direction: column; gap: 8px; text-align: center; font-size: 9px; }
    .foot-bottom > span:last-child { display: none; }
}

/* ═══════════════════════════════════════════
   POLÍTICA DE PRIVACIDADE
═══════════════════════════════════════════ */
.policy-page body,
body.policy-page {
    background: var(--cream);
}
.policy-main {
    padding: 80px 0 120px;
}
.policy-hero {
    max-width: 720px;
    margin-bottom: 72px;
}
.policy-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -.02em;
    color: var(--cocoa);
    margin: 16px 0 20px;
}
.policy-title em { color: var(--terracotta); font-style: italic; }
.policy-meta {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cocoa-soft);
}
.policy-body {
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 56px;
}
.policy-section h2 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 22px;
    color: var(--cocoa);
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--rule);
}
.policy-section p,
.policy-section li {
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.7;
    color: var(--cocoa);
}
.policy-section p { margin: 0 0 14px; }
.policy-section p:last-child { margin-bottom: 0; }
.policy-section ul {
    padding-left: 22px;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.policy-section a {
    color: var(--terracotta);
    text-decoration: none;
    transition: opacity .2s;
}
.policy-section a:hover { opacity: .75; }
.policy-card {
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.8;
    background: var(--cream-deep);
    border-left: 3px solid var(--terracotta);
    padding: 20px 24px;
    border-radius: 0 4px 4px 0;
    margin-top: 14px;
}
.policy-card a {
    color: var(--terracotta);
    text-decoration: none;
}
.foot-bottom a {
    color: var(--cocoa-soft);
    text-decoration: none;
    transition: color .2s;
}
.foot-bottom a:hover { color: var(--terracotta); }

@media (max-width: 767px) {
    .policy-main { padding: 48px 0 80px; }
    .policy-hero { margin-bottom: 48px; }
    .policy-body { gap: 40px; }
    .policy-section p,
    .policy-section li { font-size: 16px; }
}

/* ═══════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    background: var(--cocoa);
    color: var(--cream);
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 -4px 24px rgba(26,22,20,.18);
}
.cookie-banner.is-visible {
    transform: translateY(0);
}
.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 32px;
}
.cookie-text {
    flex: 1;
    min-width: 0;
}
.cookie-text p {
    font-family: var(--sans);
    font-size: 13px;
    line-height: 1.6;
    color: rgba(247,244,237,.75);
    margin: 0;
}
.cookie-text a {
    color: var(--cream);
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
    transition: opacity .2s;
}
.cookie-text a:hover { opacity: .7; }
.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-btn {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 3px;
    border: 1px solid rgba(247,244,237,.25);
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s, border-color .2s, color .2s;
}
.cookie-btn--outline {
    background: transparent;
    color: rgba(247,244,237,.7);
}
.cookie-btn--outline:hover {
    border-color: rgba(247,244,237,.6);
    color: var(--cream);
}
.cookie-btn--fill {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: var(--paper);
}
.cookie-btn--fill:hover { background: var(--terracotta-d); border-color: var(--terracotta-d); }

@media (max-width: 767px) {
    .cookie-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 0 20px;
    }
    .cookie-actions { justify-content: stretch; }
    .cookie-btn { flex: 1; text-align: center; padding: 12px; }
}
