/* ═══════════════════════════════════════════════════════════════
   FLAMBOYANT PALACE HOTEL — Stylesheet
   Paleta inspirada no logo: vermelho-flamboyant + cream + dourado
   Mobile-first. Sem emojis. Ícones todos em CSS puro.
═══════════════════════════════════════════════════════════════ */

:root {
  /* Cores */
  --bg:           #FBF7F2;          /* cream papel */
  --bg-2:         #F4EEE5;          /* cream mais quente */
  --surface:      #FFFFFF;
  --surface-2:    #FAF6F0;
  --text:         #1F1814;          /* quase preto, levemente quente */
  --text-2:       #5A4F47;
  --text-3:       #9A8E84;
  --brand:        #8B1A1F;          /* vermelho flamboyant */
  --brand-2:      #B82A2F;          /* vermelho mais vibrante */
  --brand-dark:   #5F0F12;          /* vermelho profundo */
  --gold:         #B8893E;          /* dourado discreto */
  --gold-2:       #D4A85A;
  --line:         rgba(31, 24, 20, .08);
  --line-strong:  rgba(31, 24, 20, .14);
  --dark:         #1A100D;          /* fundo escuro premium */
  --ok:           #16A34A;          /* WhatsApp green */
  --ok-2:         #25D366;

  /* Tipografia */
  --font-serif:   'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;

  /* Espaçamento e raios */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(31, 24, 20, .06);
  --shadow-md: 0 8px 24px -8px rgba(31, 24, 20, .14);
  --shadow-lg: 0 28px 70px -24px rgba(95, 15, 18, .28);

  /* Layout */
  --header-h:    78px;
  --container:   1240px;
}

/* ── RESET MINIMO ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; }

/* ── UTILS ───────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (max-width: 600px) { .container { padding: 0 18px; } }

.eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  position: relative;
  padding-left: 36px;
}
.eyebrow::before {
  content: ""; position: absolute; top: 50%; left: 0;
  width: 26px; height: 1px; background: var(--gold);
  transform: translateY(-50%);
}
.eyebrow.light { color: var(--gold-2); }
.eyebrow.light::before { background: var(--gold-2); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.005em;
  color: var(--text);
}
.section-title em { font-style: italic; color: var(--brand); font-weight: 500; }
.section-title.light { color: #fff; }
.section-title.light em { color: var(--gold-2); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-sub {
  margin-top: 18px;
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.65;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: 999px;
  transition: transform .2s, box-shadow .25s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--solid {
  background: var(--brand);
  color: #fff;
}
.btn--solid:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(95, 15, 18, .45);
}
.btn--primary {
  background: var(--ok);
  color: #fff;
  box-shadow: 0 10px 22px -8px rgba(22, 163, 74, .55);
}
.btn--primary:hover {
  background: #138A3F;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -8px rgba(22, 163, 74, .65);
}
.btn--ghost {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn--ghost:hover {
  background: var(--brand);
  color: #fff;
}
.btn--lg { padding: 17px 36px; font-size: 16px; }

/* ═══════════════════════════════════════════════════════════════
   ÍCONES — TODOS EM CSS PURO (sem SVG, sem emoji)
═══════════════════════════════════════════════════════════════ */
.ico {
  display: inline-block;
  width: 18px; height: 18px;
  position: relative;
  flex-shrink: 0;
  vertical-align: middle;
}

/* Calendário */
.ico-calendar { border: 1.6px solid currentColor; border-radius: 3px; box-shadow: inset 0 4.5px 0 0 currentColor; }
.ico-calendar::before, .ico-calendar::after {
  content: ""; position: absolute; top: -3px; width: 2px; height: 5px;
  background: currentColor; border-radius: 1px;
}
.ico-calendar::before { left: 3.5px; }
.ico-calendar::after  { right: 3.5px; }

/* Pessoa adulto */
.ico-user::before {
  content: ""; position: absolute; top: 1px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px; border: 1.6px solid currentColor; border-radius: 50%;
}
.ico-user::after {
  content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 14px; height: 8px; border: 1.6px solid currentColor;
  border-bottom: none; border-radius: 8px 8px 0 0;
}

/* Criança (menorzinho) */
.ico-child::before {
  content: ""; position: absolute; top: 2.5px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border: 1.6px solid currentColor; border-radius: 50%;
}
.ico-child::after {
  content: ""; position: absolute; bottom: 1px; left: 50%; transform: translateX(-50%);
  width: 10px; height: 6px; border: 1.6px solid currentColor;
  border-bottom: none; border-radius: 6px 6px 0 0;
}

/* Cama */
.ico-bed {
  width: 20px; height: 16px;
}
.ico-bed::before {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: currentColor; border-radius: 0 0 2px 2px;
}
.ico-bed::after {
  content: ""; position: absolute; bottom: 4px; left: 1px; right: 1px; height: 6px;
  border-top: 1.6px solid currentColor;
  border-left: 1.6px solid currentColor; border-right: 1.6px solid currentColor;
  border-radius: 6px 6px 0 0;
}

/* WiFi (arcos) */
.ico-wifi {
  width: 18px; height: 14px;
}
.ico-wifi::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 16px; height: 16px;
  border: 1.6px solid currentColor; border-radius: 50%;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}
.ico-wifi::after {
  content: ""; position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  width: 8px; height: 8px;
  border: 1.6px solid currentColor; border-radius: 50%;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
  background:
    radial-gradient(circle at 50% 100%, currentColor 1.5px, transparent 2px);
}

/* Café (xícara) */
.ico-coffee {
  width: 18px; height: 16px;
}
.ico-coffee::before {
  content: ""; position: absolute; top: 4px; left: 1px; width: 12px; height: 10px;
  border: 1.6px solid currentColor; border-radius: 0 0 5px 5px;
  border-top: none;
}
.ico-coffee::after {
  content: ""; position: absolute; top: 6px; right: 0; width: 5px; height: 5px;
  border: 1.6px solid currentColor; border-radius: 0 50% 50% 0;
  border-left: none;
}

/* Estacionamento P */
.ico-park {
  border: 1.6px solid currentColor; border-radius: 4px;
}
.ico-park::before {
  content: "P"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font: 700 11px/1 var(--font-sans); color: currentColor;
}

/* Neve / ar-condicionado (asterisco simples) */
.ico-snow {
  width: 16px; height: 16px;
}
.ico-snow::before, .ico-snow::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 16px; height: 1.6px; background: currentColor;
  transform: translate(-50%, -50%);
}
.ico-snow::before { transform: translate(-50%, -50%) rotate(0); }
.ico-snow::after  { transform: translate(-50%, -50%) rotate(90deg); }
.ico-snow {
  background:
    linear-gradient(45deg, transparent 46%, currentColor 46% 54%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, currentColor 46% 54%, transparent 54%);
}

/* TV */
.ico-tv {
  width: 18px; height: 14px;
  border: 1.6px solid currentColor; border-radius: 2px;
}
.ico-tv::after {
  content: ""; position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
  width: 8px; height: 2px; background: currentColor; border-radius: 1px;
}

/* Relógio (recepção 24h) */
.ico-clock {
  border: 1.6px solid currentColor; border-radius: 50%;
}
.ico-clock::before {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translateX(-50%);
  width: 1.6px; height: 6px; background: currentColor; margin-top: -6px;
  border-radius: 1px; transform-origin: 50% 100%;
}
.ico-clock::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 5px; height: 1.6px; background: currentColor;
  margin-top: -.8px; border-radius: 1px;
}

/* Banheiro (chuveiro) */
.ico-bath {
  width: 16px; height: 18px;
}
.ico-bath::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 12px; height: 4px;
  background: currentColor; border-radius: 6px 6px 1px 1px;
}
.ico-bath::after {
  content: ""; position: absolute; top: 5px; left: 1px; right: 1px; bottom: 0;
  background:
    radial-gradient(circle, currentColor 1px, transparent 1.5px) 0 0/4px 4px;
  opacity: .9;
}

/* Housekeeping (cama feita - usa ícone simples de "sparkle") */
.ico-housekeeping {
  width: 16px; height: 16px;
}
.ico-housekeeping::before, .ico-housekeeping::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: currentColor;
}
.ico-housekeeping::before { width: 14px; height: 2px; transform: translate(-50%, -50%); border-radius: 1px; }
.ico-housekeeping::after  { width: 2px; height: 14px; transform: translate(-50%, -50%); border-radius: 1px; }

/* Estrela */
.ico-star {
  background:
    conic-gradient(from -90deg at 50% 40%,
      currentColor 0 36deg, transparent 36deg 72deg,
      currentColor 72deg 108deg, transparent 108deg 144deg,
      currentColor 144deg 180deg, transparent 180deg 216deg,
      currentColor 216deg 252deg, transparent 252deg 288deg,
      currentColor 288deg 324deg, transparent 324deg);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  background-color: currentColor;
}

/* Pin (localização) */
.ico-pin {
  width: 14px; height: 18px;
}
.ico-pin::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 14px; height: 14px;
  background: currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  transform-origin: center;
}
.ico-pin::after {
  content: ""; position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px;
  background: var(--bg);
  border-radius: 50%;
}

/* Telefone */
.ico-phone {
  width: 16px; height: 16px;
}
.ico-phone::before {
  content: ""; position: absolute; inset: 0;
  background: currentColor;
  clip-path: path('M3 2 L7 2 Q8 2 8 3 L8 6 Q8 7 7 7 L6 7 Q7 11 12 12 L12 11 Q12 10 13 10 L16 10 Q17 10 17 11 L17 15 Q17 16 16 16 Q5 16 3 5 Q3 2 4 2 Z');
}

/* WhatsApp — bolha de conversa branca + fone telefônico no centro */
.ico-whatsapp {
  width: 22px; height: 22px;
  background: currentColor;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  /* cor do "recorte" do fone — herda a cor de fundo do botão */
  --wa-cut: var(--ok);
}
/* rabinho da bolha de conversa (canto inferior esquerdo) */
.ico-whatsapp::before {
  content: "";
  position: absolute;
  bottom: -5%;
  left: 5%;
  width: 38%;
  height: 38%;
  background: currentColor;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
/* fone telefônico (arco curvo rotacionado, na cor do fundo do botão) */
.ico-whatsapp::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  border: 2.5px solid var(--wa-cut);
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.wa-float .ico-whatsapp::after { border-width: 3.5px; }

/* a cor do fone acompanha o fundo do botão em cada estado */
.btn--primary .ico-whatsapp        { --wa-cut: var(--ok); }
.btn--primary:hover .ico-whatsapp  { --wa-cut: #138A3F; }
.wa-float .ico-whatsapp            { --wa-cut: var(--ok); }

/* ═══════════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding .3s, background .3s, box-shadow .3s, backdrop-filter .3s;
}
.header.scrolled {
  background: rgba(251, 247, 242, .88);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  padding: 12px 0;
  box-shadow: 0 4px 22px -10px rgba(31, 24, 20, .15);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--text);
  transition: color .2s;
}
.brand__logo { width: 48px; height: 48px; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--brand);
}
.brand__sub {
  font-size: 9.5px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-top: 4px;
  font-weight: 500;
}
.header:not(.scrolled) .brand__name,
.hero ~ * .brand__name { /* no escuro do hero, brand fica clara */ }

/* nav default escuro/claro */
.nav { display: flex; gap: 28px; align-items: center; }
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--brand);
  transform: scaleX(0); transform-origin: center;
  transition: transform .3s;
}
.nav__link:hover { color: var(--brand); }
.nav__link:hover::after { transform: scaleX(1); }

/* Header sobre o hero (não rolado): texto branco */
.header:not(.scrolled) .nav__link { color: rgba(255,255,255,.92); }
.header:not(.scrolled) .nav__link:hover { color: #fff; }
.header:not(.scrolled) .nav__link::after { background: var(--gold-2); }
.header:not(.scrolled) .brand__name { color: #fff; }
.header:not(.scrolled) .brand__sub { color: rgba(255,255,255,.7); }

.header__cta { padding: 10px 22px; font-size: 13px; }
.header.scrolled .header__cta { background: var(--brand); color: #fff; }

/* hamburger */
.hamb {
  display: none;
  width: 42px; height: 42px;
  position: relative; border-radius: 8px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
}
.header.scrolled .hamb { background: rgba(31,24,20,.06); border-color: rgba(31,24,20,.12); }
.hamb span {
  position: absolute; left: 11px; right: 11px; height: 2px; background: #fff; border-radius: 2px;
  transition: top .25s, transform .25s, opacity .25s, background .2s;
}
.header.scrolled .hamb span { background: var(--text); }
.hamb span:nth-child(1) { top: 14px; }
.hamb span:nth-child(2) { top: 20px; }
.hamb span:nth-child(3) { top: 26px; }
.hamb.open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.hamb.open span:nth-child(2) { opacity: 0; }
.hamb.open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

@media (max-width: 980px) {
  .nav {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(255, 248, 240, .98);
    backdrop-filter: blur(18px);
    flex-direction: column; gap: 0;
    padding: 90px 24px 30px;
    transform: translateY(-110%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    border-bottom: 1px solid var(--line);
    align-items: stretch;
  }
  .nav.open { transform: translateY(0); }
  .nav__link {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-size: 16px;
  }
  .nav__link:last-child { border-bottom: none; }
  .header__cta { display: none; }
  .hamb { display: block; z-index: 101; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 60px) 0 60px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('/img/hotel.png');
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1.15); } }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(26, 16, 13, .55) 0%, rgba(26, 16, 13, .35) 50%, rgba(26, 16, 13, .75) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  width: 100%;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}

.hero__content { color: #fff; margin-bottom: 50px; max-width: 760px; }
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.01em;
  margin: 14px 0 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-2);
  font-weight: 400;
}
.hero__sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255, 255, 255, .85);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Hero eyebrow inverte cor */
.hero__content .eyebrow { color: var(--gold-2); }
.hero__content .eyebrow::before { background: var(--gold-2); }

/* ── BOOKING WIDGET ── */
.booking {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 22px 24px 26px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 1140px;
}
.booking__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
  gap: 12px;
  align-items: end;
}
.booking__field {
  display: flex; flex-direction: column; gap: 6px;
  text-align: left;
}
.booking__label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-3);
}
.booking__field input,
.booking__field select {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: border-color .2s, background .2s, box-shadow .2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.booking__field select {
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 32px;
}
.booking__field input:focus,
.booking__field select:focus {
  outline: none;
  background: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(139, 26, 31, .12);
}
.booking__field--room { /* nada extra; comportamento padrão */ }
.booking__submit {
  width: 100%;
  height: 48px;
  padding: 12px 22px;
  white-space: nowrap;
}
.booking__hint {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--text-3);
  text-align: center;
}

@media (max-width: 980px) {
  .booking__row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .booking__field--room,
  .booking__submit { grid-column: span 2; }
}
@media (max-width: 480px) {
  .booking { padding: 18px 16px; }
  .booking__row { grid-template-columns: 1fr; }
  .booking__field--room,
  .booking__submit { grid-column: span 1; }
}

/* ── HERO SCROLL INDICATOR ── */
.hero__scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 24px; height: 38px;
  border: 1.5px solid rgba(255,255,255,.55);
  border-radius: 14px;
}
.hero__scroll span {
  position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 8px; background: #fff;
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 14px); opacity: 0; }
}
@media (max-width: 600px) { .hero__scroll { display: none; } }

/* ═══════════════════════════════════════════════════════════════
   SOBRE
═══════════════════════════════════════════════════════════════ */
.sobre { padding: 110px 0; background: var(--bg); }
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}
.sobre__img-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface-2);
}
.sobre__img-frame::before {
  /* moldura decorativa em destaque */
  content: ""; position: absolute; inset: -16px;
  border: 1px solid var(--gold);
  border-radius: var(--r-xl);
  z-index: 0;
  transform: translate(20px, 20px);
}
.sobre__img-inner {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  border-radius: var(--r-xl);
  transition: transform .8s cubic-bezier(.2, .8, .2, 1);
}
.sobre__img-frame:hover .sobre__img-inner { transform: scale(1.04); }

.sobre__text p {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.75;
  margin-top: 18px;
}

.badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px; font-weight: 500;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.badge .ico { color: var(--brand); }

@media (max-width: 880px) {
  .sobre { padding: 70px 0; }
  .sobre__grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre__img-frame { max-width: 420px; margin: 0 auto; }
}

/* ═══════════════════════════════════════════════════════════════
   QUARTOS
═══════════════════════════════════════════════════════════════ */
.quartos { padding: 110px 0; background: var(--bg-2); }
.quartos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.quarto {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s, box-shadow .35s;
  display: flex; flex-direction: column;
}
.quarto:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.quarto__img {
  position: relative;
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  overflow: hidden;
}
.quarto__img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.4) 100%);
}
.quarto__tag {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  background: var(--surface);
  color: var(--brand);
  padding: 6px 14px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  border-radius: 999px;
}
.quarto__tag--gold { background: var(--gold); color: #fff; }

.quarto__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.quarto__nome {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}
.quarto__desc {
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 18px;
}
.quarto__features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px;
  margin-bottom: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.quarto__features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--text-2);
}
.quarto__features .ico { color: var(--brand); width: 14px; height: 14px; }
.quarto__btn { margin-top: auto; padding: 11px 22px; font-size: 13px; }

@media (max-width: 980px) {
  .quartos { padding: 70px 0; }
  .quartos__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .quartos__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   COMODIDADES — fundo escuro premium
═══════════════════════════════════════════════════════════════ */
.comodidades {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
}
.comodidades::before {
  /* ornamentação suave */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 15% 0%, rgba(139, 26, 31, .25), transparent 60%),
    radial-gradient(ellipse 600px 400px at 85% 100%, rgba(184, 137, 62, .15), transparent 60%);
  pointer-events: none;
}
.comodidades .container { position: relative; }

.comod__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.comod__item {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-md);
  padding: 28px 18px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  transition: transform .25s, border-color .25s, background .25s;
}
.comod__item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .07);
  border-color: rgba(212, 168, 90, .35);
}
.comod__item .ico {
  color: var(--gold-2);
  width: 26px; height: 26px;
}
.comod__item .ico-snow { width: 22px; height: 22px; }
.comod__item .ico-clock { width: 24px; height: 24px; }
.comod__item span {
  color: rgba(255, 255, 255, .9);
  font-size: 13.5px;
  font-weight: 500;
}

@media (max-width: 880px) {
  .comodidades { padding: 70px 0; }
  .comod__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* ═══════════════════════════════════════════════════════════════
   GALERIA
═══════════════════════════════════════════════════════════════ */
.galeria { padding: 110px 0; background: var(--bg); }
.gal-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 540px;
}
.gal-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--surface-2);
}
.gal-item--big { grid-row: span 2; }
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2, .8, .2, 1);
}
.gal-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(95, 15, 18, 0) 50%, rgba(95, 15, 18, .4) 100%);
  opacity: 0; transition: opacity .3s;
}
.gal-item:hover img { transform: scale(1.06); }
.gal-item:hover::after { opacity: 1; }

@media (max-width: 880px) {
  .galeria { padding: 70px 0; }
  .gal-grid { height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 200px); }
  .gal-item--big { grid-row: span 1; grid-column: span 2; height: 280px; }
}
@media (max-width: 480px) {
  .gal-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
  .gal-item--big { grid-column: span 1; }
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(15, 10, 8, .92);
  backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
  padding: 24px;
  animation: lbFade .25s ease;
}
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--r-md);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lightbox__close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.lightbox__close:hover { background: rgba(255,255,255,.2); transform: rotate(90deg); }
.lightbox__close span {
  position: absolute; top: 50%; left: 50%; width: 18px; height: 2px;
  background: #fff; border-radius: 1px;
}
.lightbox__close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.lightbox__close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════
   LOCALIZAÇÃO
═══════════════════════════════════════════════════════════════ */
.local { padding: 110px 0; background: var(--bg-2); }
.local__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.local__text p {
  margin-top: 18px;
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.7;
}
.local__info { margin: 30px 0; }
.local__info li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.local__info li:last-child { border-bottom: none; }
.local__info .ico {
  width: 22px; height: 22px;
  color: var(--brand);
  margin-top: 2px;
}
.local__info strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.local__info span,
.local__info a {
  font-size: 14px;
  color: var(--text-2);
}
.local__info a:hover { color: var(--brand); }

.local__map {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 440px;
  box-shadow: var(--shadow-md);
}
.local__map iframe {
  width: 100%; height: 100%;
  border: 0;
}

@media (max-width: 880px) {
  .local { padding: 70px 0; }
  .local__grid { grid-template-columns: 1fr; gap: 40px; }
  .local__map { height: 320px; }
}

/* ═══════════════════════════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════════════════════════ */
.cta {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 500px at 50% 0%, rgba(139, 26, 31, .35), transparent 60%),
    radial-gradient(ellipse 600px 400px at 50% 100%, rgba(184, 137, 62, .15), transparent 60%);
}
.cta__inner {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta__inner p {
  color: rgba(255,255,255,.78);
  font-size: 17px;
  margin: 20px 0 32px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer { background: #0F0805; color: rgba(255,255,255,.7); padding: 70px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand--dark .brand__name { color: var(--gold-2); }
.brand--dark .brand__sub { color: rgba(255,255,255,.5); }
.footer__about {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
}
.footer__col h4 {
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__col ul li {
  margin-bottom: 12px;
  font-size: 14px;
}
.footer__col a:hover { color: var(--gold-2); }

.footer__bottom {
  padding: 22px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,.4);
  text-align: center;
}

@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer { padding-top: 50px; }
}

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP FLUTUANTE
═══════════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 99;
  width: 58px; height: 58px;
  background: var(--ok);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px -6px rgba(22, 163, 74, .55),
              0 4px 10px rgba(0,0,0,.15);
  transition: transform .25s, box-shadow .25s;
}
.wa-float::before {
  /* pulse anel */
  content: ""; position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--ok);
  opacity: .55;
  animation: waPulse 2.4s ease-out infinite;
  z-index: -1;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float .ico-whatsapp { width: 30px; height: 30px; }
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .55; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
