/* ============================================================
   SALINAS MARAGOGI — THEME CSS
   ============================================================ */

/* ── CSS VARIABLES ──────────────────────────────────────── */
:root {
  --brown-dark:  #1a0f07;
  --brown-mid:   #2c1a0a;
  --brown-nav:   #1e1108;
  --gold:        #D4A017;
  --gold-hover:  #b8860b;
  --gold-light:  #f0c84a;
  --amber:       #E07B00;
  --white:       #ffffff;
  --off-white:   #faf8f5;
  --text:        #2c1a0a;
  --text-light:  #6b5a47;
  --border:      rgba(212,160,23,.22);

  --header-h:    60px;
  --radius:      10px;
  --radius-lg:   18px;
  --shadow:      0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:   0 10px 48px rgba(0,0,0,.22);
  --trans:       .3s ease;
  --font:        'Montserrat', sans-serif;
}

/* ── RESET / BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; } /* scroll-behavior gerenciado pelo JS para evitar conflito com anchors nativos */
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── SKIP LINK ──────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--gold); color: var(--brown-dark);
  padding: .5rem 1rem; border-radius: var(--radius);
  font-weight: 700; font-size: .85rem; z-index: 9999;
}
.skip-link:focus { top: 1rem; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.site { display: flex; flex-direction: column; min-height: 100vh; }
.site-main { flex: 1; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ============================================================
   HEADER
   ============================================================ */
/* Header precisa vencer TUDO em z-index e nunca perder eventos de pointer */
.site-header {
  position: sticky; top: 0; z-index: 9999;
  background: var(--brown-dark);
  transition: box-shadow var(--trans);
  pointer-events: auto !important;
}

.site-header * { pointer-events: auto !important; }
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.5); }

.header-inner {
  display: flex; align-items: center;
  max-width: 1400px; margin: 0 auto;
  padding: 0 2rem; height: var(--header-h);
  gap: 1.5rem;
}

/* Logo */
.site-logo { flex-shrink: 0; display: flex; align-items: center; }
.logo-wrap  { display: flex; align-items: center; gap: .65rem; }
.logo-text  { display: flex; flex-direction: column; line-height: 1.05; }
.logo-name  { font-size: .85rem; font-weight: 900; letter-spacing: .14em; color: var(--white); }
.logo-sub   { font-size: .68rem; font-weight: 400; letter-spacing: .06em; color: var(--gold); }
.logo-sub em { font-style: italic; font-weight: 600; }

/* Nav */
.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list  {
  display: flex; align-items: center; gap: .05rem;
  flex-wrap: nowrap;
}

/* Nav link — grifo (underline deslizante) */
.nav-link {
  position: relative;
  display: block;
  padding: .55rem .78rem;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.78);
  white-space: nowrap;
  transition: color var(--trans);
}

/* Linha de grifo — cresce do centro para as bordas */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  width: 0; height: 2px;
  background: var(--nav-accent-color, var(--gold));
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width .28s cubic-bezier(.4,0,.2,1);
}

.nav-link:hover {
  color: var(--white);
}
.nav-link:hover::after {
  width: calc(100% - 1.56rem); /* full text width, respecting padding */
}

.nav-link.is-active {
  color: var(--gold);
}
.nav-link.is-active::after {
  width: calc(100% - 1.56rem);
  background: var(--nav-accent-color, var(--gold));
}

/* ── NAV ACCENT LINE ────────────────────────────────────── */
/* Linha fina e elegante abaixo do header, cor editável pelo Customizer */
.nav-accent-line {
  height: 3px;
  background: var(--nav-accent-color, var(--gold));
  width: 100%;
  /* Efeito shimmer sutil */
  background-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,.28) 45%,
    rgba(255,255,255,.28) 55%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: accentShimmer 3.5s linear infinite;
}

@keyframes accentShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* Header actions */
.header-actions { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }

.btn-reservar {
  padding: .5rem 1.25rem;
  background: var(--gold);
  color: var(--brown-dark);
  font-size: .72rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--trans), transform var(--trans);
}
.btn-reservar:hover { background: var(--gold-hover); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; align-items: center; justify-content: center;
  border-radius: 6px;
  transition: background var(--trans);
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}
.hamburger:hover { background: rgba(255,255,255,.1); }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ──────────────────────────────────────── */
.mobile-drawer {
  position: fixed; inset: 0 0 0 auto;
  width: min(320px, 85vw);
  background: var(--brown-dark);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.25,.46,.45,.94);
}
.mobile-drawer:not([hidden]) { transform: translateX(0); }
.mobile-drawer[hidden] { display: block; }

.mobile-drawer-inner {
  display: flex; flex-direction: column;
  padding: 1.5rem;
  height: 100%; overflow-y: auto;
}
.mobile-close {
  align-self: flex-end; color: rgba(255,255,255,.7);
  padding: .4rem; border-radius: 6px;
  transition: color var(--trans);
  margin-bottom: 1.5rem;
}
.mobile-close:hover { color: var(--gold); }

.mobile-nav-list { display: flex; flex-direction: column; gap: .25rem; flex: 1; }
.mobile-nav-link {
  display: block; padding: .85rem 1rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: all var(--trans);
}
.mobile-nav-link:hover {
  color: var(--gold);
  background: rgba(212,160,23,.1);
  border-left-color: var(--gold);
}
.mobile-cta {
  display: block; text-align: center;
  margin-top: 1.5rem;
  padding: .9rem;
  background: var(--gold);
  color: var(--brown-dark);
  font-size: .78rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--trans);
}
.mobile-cta:hover { background: var(--gold-hover); }

.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1100;
  opacity: 0; pointer-events: none;
  transition: opacity var(--trans);
}
.mobile-overlay.is-open { opacity: 1; pointer-events: auto; }

/* ============================================================
   SECTION HERO — Video Background
   ============================================================ */
.section-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: visible;   /* permite booking-bar sobrepor a seção seguinte */
}

/* Garante que o vídeo e overlay não vazem visualmente */
.hero-video-wrap,
.hero-overlay {
  position: absolute; inset: 0;
  overflow: hidden;
}

/* .section-hero não precisa mais de regra adjacente — booking-bar está fora */

/* ── Wrapper do vídeo ── */
.hero-video-wrap {
  position: absolute; inset: 0;
  pointer-events: none;
}

/* Vídeo desktop — cobre toda a área, sem esticar */
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Fallback poster (imagem) quando não há vídeo configurado */
.hero-video-poster {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}

/* ── Vídeo mobile: exibido apenas em telas pequenas ── */
/* Por padrão mostra o vídeo desktop.
   Em mobile exibimos o elemento .hero-video normalmente —
   o browser escolhe o <source> com media=(min-width:768px) */
@media (max-width: 767px) {
  .hero-video {
    object-position: center center;
    /* Vídeo portrait (9:16): centraliza no eixo X */
  }
}

/* ── Overlay gradiente decorativo ── */
.hero-overlay {
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(10,6,2,.18)  0%,
    rgba(10,6,2,.30) 50%,
    rgba(10,6,2,.72) 100%
  );
  z-index: 1;
}

/* ── Conteúdo textual ── */
.hero-content {
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: auto;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 2rem 3.5rem;
  max-width: 1280px; margin: 0 auto;
  left: 0; right: 0;
}

/* Hero animations — os elementos têm classe .anim-in no HTML
   O JS adiciona .is-ready ao .hero-content para disparar */
.hero-content .anim-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.hero-content.is-ready .anim-in:nth-child(1) { transition-delay: .1s; }
.hero-content.is-ready .anim-in:nth-child(2) { transition-delay: .25s; }
.hero-content.is-ready .anim-in:nth-child(3) { transition-delay: .4s; }
.hero-content.is-ready .anim-in:nth-child(4) { transition-delay: .55s; }

.hero-content.is-ready .anim-in {
  opacity: 1;
  transform: translateY(0);
}

.hero-eyebrow {
  display: inline-block;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: .85rem;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: clamp(.9rem, 1.5vw, 1.15rem);
  font-weight: 400; color: rgba(255,255,255,.88);
  max-width: 540px; line-height: 1.6;
  margin-bottom: 2rem;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem;
  background: var(--gold); color: var(--brown-dark);
  font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--trans), transform var(--trans);
}
.btn-hero-primary:hover { background: var(--gold-hover); transform: translateY(-2px); }

.btn-hero-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem;
  border: 2px solid rgba(255,255,255,.7);
  color: var(--white);
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
  transition: border-color var(--trans), background var(--trans);
}
.btn-hero-outline:hover {
  border-color: var(--gold);
  background: rgba(212,160,23,.12);
  color: var(--gold-light);
}

/* Hero nav buttons — reabilitar pointer-events pois o slide os herda como none */
.hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  pointer-events: auto;
  transition: background var(--trans);
}
.hero-nav:hover { background: rgba(255,255,255,.3); }
.hero-prev { left: 1.5rem; }
.hero-next { right: 1.5rem; }

.hero-pagination {
  position: absolute; bottom: calc(80px + 1.5rem) !important;
  left: 2rem !important; right: auto !important; width: auto !important;
  display: flex; gap: .5rem;
}
.hero-pagination .swiper-pagination-bullet {
  width: 24px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,.4); opacity: 1;
  transition: all var(--trans);
}
.hero-pagination .swiper-pagination-bullet-active {
  background: var(--gold); width: 40px;
}

/* ── BOOKING BAR WRAP — fora do hero, sobrepõe com margin negativa ── */
.booking-bar-wrap {
  position: relative;
  z-index: 30;
  margin-top: -44px;
  padding: 0 2rem;
  pointer-events: none;
}

/* ── BOOKING BAR ─────────────────────────────────────────────────── */
.booking-bar {
  position: relative;
  z-index: 30;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.30);
  pointer-events: auto;
  overflow: visible;
}
.booking-form {
  display: flex; align-items: stretch;
  min-height: 80px;
  border-radius: 16px;
  overflow: hidden;
}
.bf-field {
  flex: 1; display: flex; flex-direction: column;
  justify-content: center; padding: .6rem 1.4rem;
  position: relative;
}
.bf-field label {
  display: flex; align-items: center; gap: .35rem;
  font-size: .62rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: .25rem;
}
.bf-field input[type="date"],
.bf-select {
  background: transparent; border: none; outline: none;
  font-family: var(--font); font-size: .88rem; font-weight: 600;
  color: var(--text); cursor: pointer; width: 100%;
}
.bf-field input[type="date"]::-webkit-calendar-picker-indicator { opacity: .5; }

.bf-sep { width: 1px; background: var(--border); align-self: stretch; margin: .75rem 0; }

.bf-field--guests { position: relative; }
.guests-trigger {
  display: flex; align-items: center; gap: .4rem;
  font-family: var(--font); font-size: .88rem; font-weight: 600;
  color: var(--text); background: transparent;
}
.guests-dd {
  position: absolute; top: calc(100% + 4px); left: 0;
  width: 280px; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 1rem; z-index: 50;
  display: none;
}
.guests-dd.is-open { display: block; }

.guest-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 0; border-bottom: 1px solid #f0ece7;
}
.guest-row:last-of-type { border-bottom: none; }
.guest-info { display: flex; flex-direction: column; }
.guest-info span { font-size: .88rem; font-weight: 600; color: var(--text); }
.guest-info small { font-size: .72rem; color: var(--text-light); margin-top: .1rem; }
.guest-ctr { display: flex; align-items: center; gap: .6rem; }
.gctr-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--border);
  font-size: 1.1rem; font-weight: 300;
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  transition: border-color var(--trans), color var(--trans);
}
.gctr-btn:hover { border-color: var(--gold); color: var(--gold); }
.guest-ctr input {
  width: 28px; text-align: center;
  font-family: var(--font); font-size: .9rem; font-weight: 700;
  color: var(--text); border: none; background: transparent;
}
.guests-apply {
  width: 100%; margin-top: .75rem;
  padding: .65rem;
  background: var(--gold); color: var(--brown-dark);
  font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 7px;
  transition: background var(--trans);
}
.guests-apply:hover { background: var(--gold-hover); }

.bf-select {
  appearance: none; -webkit-appearance: none;
  padding: 0; cursor: pointer;
}

.bf-text-input {
  background: transparent; border: none; outline: none;
  font-family: var(--font); font-size: .88rem; font-weight: 500;
  color: var(--text); width: 100%;
}
.bf-text-input::placeholder { color: var(--text-light); font-weight: 400; }

.bf-submit {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 0 2rem;
  background: var(--gold); color: var(--brown-dark);
  font-size: .72rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  transition: background var(--trans);
  flex-shrink: 0; cursor: pointer;
  border-left: 1px solid var(--gold-hover);
  border-radius: 0 16px 16px 0;
  min-width: 180px;
  white-space: nowrap;
}
.bf-submit:hover { background: var(--gold-hover); }

/* Aviso quando motor de reservas não está configurado */
.booking-no-engine {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: #fff8e6;
  border-radius: 16px 16px 0 0;
  font-size: .78rem; color: #7a5800;
  border-bottom: 1px solid #f0e2a0;
}

/* ============================================================
   GENERIC SECTIONS
   ============================================================ */
.section { padding: 3.5rem 0; }
.section--light { background: var(--off-white); }
.section--dark  { background: var(--brown-dark); }
.section--image {
  position: relative;
  background-size: cover; background-position: center;
  background-attachment: fixed;
  padding: 7rem 0;
}
.section-image-overlay {
  position: absolute; inset: 0;
  background: rgba(26,15,7,.6);
}
.section--image .container { position: relative; z-index: 1; }

/* ─────────────────────────────────────────────────────────
   SECTION HEAD — título moderno e elegante
───────────────────────────────────────────────────────── */
.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* Label pill com traços decorativos laterais */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .63rem; font-weight: 800;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: currentColor;
  opacity: .5;
}

/* Título grande */
.section-title {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--text);
  display: block;
  margin-bottom: 0;
}

/* Sublinha âmbar deslizante abaixo do título */
.section-title::after {
  content: '';
  display: block;
  width: 48px; height: 3px;
  background: var(--nav-accent-color, var(--gold));
  border-radius: 2px;
  margin: .65rem auto 0;
  transition: width .45s cubic-bezier(.4,0,.2,1);
}
.section-head:hover .section-title::after,
.section-head.is-revealed .section-title::after {
  width: 88px;
}

.section-title--light { color: var(--white); }
.section-title--light::after { background: var(--gold-light); }

/* Descrição */
.section-desc {
  margin-top: 1.1rem;
  font-size: .97rem; font-weight: 400;
  color: var(--text-light);
  max-width: 540px;
  margin-left: auto; margin-right: auto;
  line-height: 1.7;
}
.section-desc--light { color: rgba(255,255,255,.72); }

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   ACOMODAÇÕES — Swiper
   ============================================================ */
.acom-swiper { padding-bottom: 3.5rem !important; overflow: visible !important; }

.acom-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans);
}
.acom-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.acom-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.acom-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.acom-card:hover .acom-img-wrap img { transform: scale(1.05); }

.acom-view {
  position: absolute; top: .85rem; left: .85rem;
  background: rgba(26,15,7,.68); color: var(--white);
  font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .75rem; border-radius: 4px;
  backdrop-filter: blur(4px);
}

.acom-body { padding: 1.4rem 1.6rem 1.6rem; }
.acom-title {
  font-size: 1.08rem; font-weight: 800;
  color: var(--text); margin-bottom: .9rem;
}
.acom-specs {
  display: flex; gap: 1.2rem; flex-wrap: wrap;
  font-size: .76rem; color: var(--text-light);
  margin-bottom: 1.2rem;
}
.acom-specs li { display: flex; align-items: center; gap: .35rem; font-weight: 500; }

.acom-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; border-top: 1px solid #f0ece7;
}
.acom-price { display: flex; align-items: baseline; gap: .35rem; }
.acom-price small { font-size: .68rem; color: var(--text-light); font-weight: 500; }
.acom-price strong { font-size: 1.15rem; font-weight: 800; color: var(--text); }

.btn-card {
  padding: .55rem 1.4rem;
  background: var(--gold); color: var(--brown-dark);
  font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 7px;
  transition: background var(--trans), transform var(--trans);
}
.btn-card:hover { background: var(--gold-hover); transform: translateY(-1px); }

/* Shared swiper nav */
.swiper-nav-btn {
  position: absolute; top: 50%; transform: translateY(calc(-50% - 1.75rem));
  z-index: 10; width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); color: var(--text);
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans), color var(--trans);
}
.swiper-nav-btn:hover { background: var(--gold); color: var(--brown-dark); }
.acom-prev, .promos-prev { left: -1rem; }
.acom-next, .promos-next { right: -1rem; }

.acom-pagination, .promos-pagination {
  display: flex; justify-content: center; gap: .5rem;
  bottom: 0 !important;
}
.acom-pagination .swiper-pagination-bullet,
.promos-pagination .swiper-pagination-bullet {
  width: 8px; height: 8px; background: var(--border); opacity: 1;
  transition: all var(--trans);
}
.acom-pagination .swiper-pagination-bullet-active,
.promos-pagination .swiper-pagination-bullet-active {
  background: var(--gold); width: 24px; border-radius: 4px;
}

/* ============================================================
   PACOTES (PROMOS) — Swiper
   ============================================================ */
.promos-swiper { padding-bottom: 3.5rem !important; overflow: visible !important; }

.promo-card {
  background: var(--brown-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212,160,23,.18);
  transition: transform var(--trans), box-shadow var(--trans);
  position: relative;
}
.promo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.promo-badge {
  position: absolute; top: .85rem; right: .85rem; z-index: 2;
  background: var(--gold); color: var(--brown-dark);
  font-size: .65rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .8rem; border-radius: 5px;
}

.promo-img-wrap { aspect-ratio: 16/10; overflow: hidden; }
.promo-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.promo-card:hover .promo-img-wrap img { transform: scale(1.05); }

.promo-body { padding: 1.4rem 1.6rem 1.6rem; }
.promo-title {
  font-size: 1.05rem; font-weight: 800;
  color: var(--white); margin-bottom: .6rem;
}
.promo-desc {
  font-size: .84rem; color: rgba(255,255,255,.65);
  line-height: 1.6; margin-bottom: 1.2rem;
}
.promo-footer {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(212,160,23,.18);
}
.promo-price { display: flex; flex-direction: column; gap: .15rem; }
.promo-price small { font-size: .65rem; color: rgba(255,255,255,.5); font-weight: 500; }
.promo-price strong { font-size: 1.25rem; font-weight: 900; color: var(--gold-light); }
.btn-promo {
  padding: .55rem 1.3rem;
  background: var(--gold); color: var(--brown-dark);
  font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 7px;
  transition: background var(--trans), transform var(--trans);
}
.btn-promo:hover { background: var(--gold-hover); transform: translateY(-1px); }

/* Dark section nav buttons */
.section--dark .swiper-nav-btn {
  background: rgba(255,255,255,.1);
  color: var(--white);
  box-shadow: none;
}
.section--dark .swiper-nav-btn:hover { background: var(--gold); color: var(--brown-dark); }
.section--dark .promos-pagination .swiper-pagination-bullet { background: rgba(255,255,255,.25); }
.section--dark .promos-pagination .swiper-pagination-bullet-active { background: var(--gold); }

/* ============================================================
   EXPERIÊNCIA
   ============================================================ */
.exp-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.exp-feat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  border: 1px solid #ede9e4;
  transition: box-shadow var(--trans), transform var(--trans);
}
.exp-feat:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.exp-feat-icon {
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(212,160,23,.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  color: var(--gold);
}
.exp-feat h3 {
  font-size: .9rem; font-weight: 800;
  color: var(--text); margin-bottom: .55rem;
}
.exp-feat p { font-size: .8rem; color: var(--text-light); line-height: 1.6; }

/* Gallery mosaic */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: .5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-item {
  position: relative; overflow: hidden; cursor: zoom-in;
  background: var(--brown-mid);
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(26,15,7,.45);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); opacity: 0;
  transition: opacity var(--trans);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ============================================================
   CIDADE
   ============================================================ */
.cidade-content { max-width: 680px; }
.cidade-highlights {
  display: flex; flex-direction: column; gap: 1.2rem;
  margin-top: 2rem;
}
.cidade-item {
  display: flex; flex-direction: column; gap: .25rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,.1);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  backdrop-filter: blur(4px);
}
.cidade-item strong { font-size: .9rem; font-weight: 800; color: var(--white); }
.cidade-item span  { font-size: .82rem; color: rgba(255,255,255,.7); }

/* ============================================================
   SPA
   ============================================================ */
.spa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.spa-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.spa-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.spa-content .section-label { display: block; margin-bottom: .5rem; }
.spa-content .section-title { margin-bottom: 1.1rem; }
.spa-content > p {
  font-size: .95rem; color: var(--text-light);
  line-height: 1.7; margin-bottom: 1.8rem;
}
.spa-list { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.spa-list li {
  display: flex; align-items: center; gap: .75rem;
  font-size: .88rem; color: var(--text); font-weight: 500;
}
.spa-list li svg { flex-shrink: 0; color: var(--gold); }

.btn-section {
  display: inline-flex; align-items: center;
  padding: .85rem 2rem;
  background: var(--gold); color: var(--brown-dark);
  font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--trans), transform var(--trans);
}
.btn-section:hover { background: var(--gold-hover); transform: translateY(-2px); }

/* ============================================================
   RESTAURANTE
   ============================================================ */
.rest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.rest-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(212,160,23,.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
}
.rest-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,.3); }
.rest-img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.rest-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.rest-card:hover .rest-img-wrap img { transform: scale(1.05); }
.rest-body { padding: 1.4rem 1.5rem; }
.rest-body h3 {
  font-size: .98rem; font-weight: 800;
  color: var(--white); margin-bottom: .55rem;
}
.rest-body p { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 1rem; }
.rest-tag {
  display: inline-block;
  padding: .25rem .75rem;
  background: rgba(212,160,23,.15);
  color: var(--gold-light);
  font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid rgba(212,160,23,.25);
}
.rest-tag--premium {
  background: rgba(224,123,0,.15);
  color: #f0a040;
  border-color: rgba(224,123,0,.25);
}

/* ============================================================
   CONTATO
   ============================================================ */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contato-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contato-item {
  display: flex; align-items: flex-start; gap: 1rem;
}
.contato-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(212,160,23,.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.contato-item > div { display: flex; flex-direction: column; gap: .25rem; }
.contato-item strong { font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-light); }
.contato-item span,
.contato-item a { font-size: .92rem; color: var(--text); font-weight: 500; }
.contato-item a:hover { color: var(--gold); }

.contato-form {
  background: var(--white);
  border: 1px solid #ede9e4;
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  box-shadow: var(--shadow);
}
.cf-row { display: flex; gap: 1rem; }
.cf-row--2 > .cf-field { flex: 1; }
.cf-field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.2rem; }
.cf-field label {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-light);
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  padding: .75rem 1rem;
  border: 1.5px solid #e8e2db;
  border-radius: 8px;
  font-family: var(--font); font-size: .9rem; color: var(--text);
  background: var(--off-white);
  transition: border-color var(--trans);
  resize: vertical;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.btn-cf-submit {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem;
  background: var(--gold); color: var(--brown-dark);
  font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--trans), transform var(--trans);
  cursor: pointer;
}
.btn-cf-submit:hover { background: var(--gold-hover); transform: translateY(-2px); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.92);
}
.lightbox[hidden] { display: none; }
.lb-content { max-width: 90vw; max-height: 85vh; }
.lb-content img { max-height: 85vh; width: auto; border-radius: 4px; }
.lb-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: rgba(255,255,255,.7); font-size: 1.4rem;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans);
}
.lb-close:hover { background: rgba(255,255,255,.25); color: var(--white); }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,.7);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans);
}
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.28); color: var(--white); }
.lb-overlay {
  position: fixed; inset: 0; z-index: 1999;
  background: transparent;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--brown-dark);
  border-top: 1px solid rgba(212,160,23,.12);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo-wrap { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo-wrap .logo-wrap { margin-bottom: .25rem; }
.footer-tagline { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.6; }
.footer-social { display: flex; gap: .75rem; margin-top: .5rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background var(--trans), color var(--trans);
}
.footer-social a:hover { background: var(--gold); color: var(--brown-dark); }

.footer-col h4 {
  font-size: .68rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col a {
  font-size: .85rem; color: rgba(255,255,255,.55);
  transition: color var(--trans);
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .75rem; color: rgba(255,255,255,.35);
}

/* ============================================================
   ELEMENTOR COMPATIBILITY
   ============================================================ */
body.elementor-page .site-main { padding: 0; }
.elementor-location-header,
.elementor-location-footer { width: 100%; }
:root {
  --e-global-color-primary:  var(--gold);
  --e-global-color-secondary: var(--amber);
  --e-global-color-text:     var(--text);
  --e-global-typography-primary-font-family: var(--font);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav-link { font-size: .65rem; padding: .4rem .55rem; }
  .exp-features { grid-template-columns: repeat(2, 1fr); }
  .rest-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .spa-grid { grid-template-columns: 1fr; }
  .spa-media { max-height: 380px; }
  .contato-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .swiper-nav-btn { display: none; }
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .hero-content { padding-bottom: 3rem; }
}

@media (max-width: 680px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }

  /* Em mobile o booking-bar-wrap ajusta margem */
  .booking-bar-wrap {
    margin-top: -32px;
    padding: 0 1rem;
  }
  .booking-bar { border-radius: 12px; }
  .booking-form { flex-direction: column; border-radius: 12px; overflow: hidden; }
  .bf-sep { display: none; }
  .bf-field { padding: .75rem 1.25rem; border-bottom: 1px solid var(--border); }
  .bf-submit {
    padding: 1.1rem;
    justify-content: center;
    border-radius: 0 0 12px 12px;
    min-width: unset;
  }
  .exp-features { grid-template-columns: 1fr; }
  .rest-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .gallery-mosaic { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .cidade-highlights { gap: .85rem; }
  .header-inner { padding: 0 1.25rem; }
  .btn-reservar { display: none; }
}
