:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #121212;
  --muted: #4a463f;
  --accent: #b39056; /* champagne gold */
  --accent-hover: #9a7a48;
  --accent-soft: rgba(179, 144, 86, 0.14);
  --accent2: #b39056;
  /* Botões (alinhado ao header) */
  --btn-brand: #392218;
  --btn-brand-hover: #4d2e20;
  --btn-brand-soft: rgba(57, 34, 24, 0.12);
  --btn-brand-shadow: rgba(57, 34, 24, 0.28);
  --line: rgba(18, 18, 18, 0.12);
  --shadow: 0 16px 54px rgba(18, 18, 18, 0.12);
  --radius: 14px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* micro-interações e efeitos suaves */
:root {
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ring: 0 0 0 3px rgba(179, 144, 86, 0.28);
}

a,
button,
.btn {
  transition: transform 0.14s var(--ease-out), box-shadow 0.18s var(--ease-out),
    background 0.18s var(--ease-out), color 0.18s var(--ease-out), border-color 0.18s var(--ease-out),
    filter 0.18s var(--ease-out);
}

:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 10px;
}

/* melhora o foco em elementos do header/menu */
.nav-toggle:focus-visible {
  box-shadow: 0 0 0 3px rgba(179, 144, 86, 0.45);
}
.site-nav a:focus-visible {
  box-shadow: 0 0 0 3px rgba(179, 144, 86, 0.35);
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: clamp(0.98rem, 0.28vw + 0.95rem, 1.05rem);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  padding-bottom: calc(env(safe-area-inset-bottom) + 5.25rem);
}

/* fundo com leve textura / profundidade */
/* fundo do site deve permanecer branco */

#app {
  margin: 0;
  padding: 0;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* underline mais “premium” em links no desktop */
@media (hover: hover) and (pointer: fine) {
  a:not(.btn):hover {
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
  }
}

.wrap {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
}

img {
  max-width: 100%;
  height: auto;
}

.site-header {
  background: #392218;
  border-bottom: 1px solid rgba(18, 18, 18, 0.1);
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.5rem 0.75rem;
  padding: max(0.65rem, env(safe-area-inset-top)) 0.85rem 0.65rem;
  margin: 0;
  background: #392218;
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 0;
  box-shadow: 0 10px 34px rgba(18, 18, 18, 0.08);
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: #ffffff;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-text {
  color: #ffffff;
}
.brand-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}
.brand-text {
  display: block;
  min-width: 0;
  line-height: 1.05;
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  color: #ffffff;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle-bars {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 7px 0 currentColor, 0 -7px 0 currentColor;
  border-radius: 1px;
}
.site-header.nav-open .nav-toggle-bars {
  background: transparent;
  box-shadow: none;
}
.site-header.nav-open .nav-toggle-bars::before,
.site-header.nav-open .nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.site-header.nav-open .nav-toggle-bars::before {
  transform: rotate(45deg);
}
.site-header.nav-open .nav-toggle-bars::after {
  transform: rotate(-45deg);
}
.site-nav {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  align-items: center;
}
.site-nav a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
}
.site-nav a:hover,
.site-nav a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

@media (max-width: 767px) {
  .site-header:not(.nav-open) .site-nav {
    display: none;
  }
  .site-header.nav-open .site-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    grid-column: 1 / -1;
    width: 100%;
    padding: 0.5rem 0 0.5rem;
    margin-top: 0.25rem;
    border-top: 1px solid var(--line);
    gap: 0.15rem;
  }
  .site-nav a {
    padding: 0.75rem 0.65rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .header-inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    margin: 0.35rem 0;
  }
  .nav-toggle {
    display: none;
  }
  .site-nav {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    align-items: center;
    border: none;
    margin: 0;
    padding: 0;
  }
}

.hero {
  padding: 3rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero {
    padding: 2rem 0 1.75rem;
  }
  .hero h1,
  .hero .hero-title {
    max-width: none;
  }
}
.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 80%;
  background: radial-gradient(ellipse at 26% 20%, rgba(179, 144, 86, 0.14), transparent 55%),
    radial-gradient(ellipse at 80% 0%, rgba(18, 18, 18, 0.04), transparent 55%);
  pointer-events: none;
}
.hero h1,
.hero .hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  max-width: 18ch;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.hero .lead {
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  align-items: center;
  margin: 0;
}

/* Vídeo na home: logo abaixo do header, largura total (sem margens laterais) */
.home-video-section {
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
}
.home-video-frame {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  aspect-ratio: 16 / 9;
  max-height: min(70vh, 720px);
  min-height: 360px;
  border-radius: 0;
  overflow: hidden;
  border: none;
  border-bottom: 1px solid rgba(179, 144, 86, 0.25);
  background: linear-gradient(145deg, #c4a574 0%, #8b6f3f 42%, #e8dcc8 100%);
}
.home-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(28, 26, 22, 0.14) 100%);
}
.home-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-video-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
  opacity: 1;
  animation: homeLogoFade 6s ease-in forwards;
}
.home-video-logo img {
  width: min(320px, 72vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
}
@keyframes homeLogoFade {
  from {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.98);
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-video-logo {
    animation: none;
    opacity: 0;
  }
}

.home-cotacao-section {
  padding-top: 0.5rem;
  margin-top: -3.25rem; /* sobe um pouco sobre o vídeo */
  position: relative;
  z-index: 5;
}
.home-cotacao-card {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-color: rgba(18, 18, 18, 0.14);
}
.home-cotacao-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.65rem);
  margin: 0 0 1rem;
  text-align: center;
}
.home-cotacao-form .home-cotacao-submit {
  width: 100%;
  margin-top: 0.35rem;
}
@media (min-width: 640px) {
  .home-cotacao-form .home-cotacao-submit {
    width: auto;
    align-self: flex-start;
  }
}

@media (max-width: 767px) {
  .header-inner {
    padding-left: max(0.65rem, env(safe-area-inset-left));
    padding-right: max(0.65rem, env(safe-area-inset-right));
  }
  .home-video-frame {
    aspect-ratio: 9 / 16;
    max-height: min(78vh, 720px);
    min-height: 520px;
  }
  .home-cotacao-section {
    margin-top: -5rem;
  }
  .home-cotacao-form .row.cols-2 {
    grid-template-columns: 1fr;
  }
}

/* —— Home: cards de quartos (estilo “Nossos quartos”) —— */
.home-rooms-eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent2);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.home-rooms-eyebrow::before,
.home-rooms-eyebrow::after {
  content: "";
  height: 2px;
  width: 42px;
  background: linear-gradient(90deg, transparent, var(--accent));
  border-radius: 2px;
}
.home-rooms-eyebrow::after {
  background: linear-gradient(90deg, var(--accent), transparent);
}
.home-rooms-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.15rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.home-rooms-title span {
  color: var(--accent);
}
.home-rooms-rail {
  margin-top: 1.1rem;
  padding: 0 max(1rem, env(safe-area-inset-left));
}
.home-rooms-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.05rem;
  padding-bottom: 0.35rem;
}
@media (max-width: 767px) {
  .home-rooms-rail {
    overflow: visible;
  }
  .home-rooms-track {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 860px) {
  .home-rooms-rail {
    padding: 0;
  }
  .home-rooms-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
  }
}

.home-room-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: 200px 1fr;
  position: relative;
}
.home-room-card .home-room-media,
.home-room-card .home-room-body {
  pointer-events: none;
}
.home-room-card .home-room-actions {
  pointer-events: auto;
}
.home-room-card-hit {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
}
.home-room-card-hit:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.home-room-media {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #c4a574 0%, #8b6f3f 45%, #e8dcc8 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.home-room-photo {
  transform: translateZ(0);
}
.home-room-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), transparent 40%, rgba(0, 0, 0, 0.05));
}
.home-room-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--pos, 50% 50%);
  display: block;
  opacity: 0;
  transition: opacity 1.15s ease-in-out;
}
.home-room-photo.is-active {
  opacity: 1;
}
.home-room-media.v2 {
  background: linear-gradient(145deg, #6b5344 0%, #b39056 50%, #e8dcc8 100%);
}
.home-room-media.v3 {
  background: linear-gradient(145deg, #23443c 0%, #b39056 55%, #f2eadc 100%);
}
.home-room-media.v4 {
  background: linear-gradient(145deg, #30324a 0%, #b39056 55%, #efe6d8 100%);
}
.home-room-badge {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  background: rgba(18, 18, 18, 0.86);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(18, 18, 18, 0.18);
}
.home-room-badge--urgent {
  background: linear-gradient(135deg, #5c3d2a 0%, #392218 100%);
  border: 1px solid rgba(179, 144, 86, 0.55);
  color: #faf6f0;
}
.room-stock-tag {
  border-color: rgba(179, 144, 86, 0.45);
  background: rgba(179, 144, 86, 0.12);
}
.room-pick-stock {
  font-weight: 700;
  color: var(--ink);
}
.home-room-body {
  padding: 1.05rem 1.1rem 1.15rem;
  position: relative;
  z-index: 1;
}
.home-room-title {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.15;
}
.home-room-icons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem 0.75rem;
  padding: 0.65rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 0.85rem;
  color: var(--accent);
}
.home-room-icon {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  min-width: 0;
}
.home-room-icon svg {
  flex: 0 0 auto;
}
.home-room-icon span {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--muted);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.home-room-desc {
  margin: 0;
  font-size: 0.94rem;
}
.home-room-meta {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.home-room-actions {
  margin: 1.05rem 0 0;
  display: grid;
  gap: 0.55rem;
}
.home-room-btn {
  width: 100%;
}

@media (max-width: 420px) {
  .home-room-card {
    grid-template-rows: 180px 1fr;
  }
  .home-room-body {
    padding: 0.95rem 0.95rem 1rem;
  }
  .home-room-title {
    font-size: 1.12rem;
    margin-bottom: 0.7rem;
  }
  .home-room-icons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem 0.6rem;
    padding: 0.55rem 0;
    margin-bottom: 0.75rem;
  }
  .home-room-icon span {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    font-size: 0.8rem;
    line-height: 1.2;
  }
  .home-room-desc {
    font-size: 0.92rem;
  }
  .home-room-actions {
    gap: 0.45rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn:active {
  transform: scale(0.98);
}
.btn-primary {
  background: var(--btn-brand);
  color: #fff;
  box-shadow: 0 14px 40px var(--btn-brand-shadow);
}
.btn-primary:hover {
  background: var(--btn-brand-hover);
  text-decoration: none;
  color: #fff;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 55%);
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.22s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 52px var(--btn-brand-shadow);
  }
  .btn-primary:hover::after {
    opacity: 0.65;
  }
}
.btn-ghost {
  background: transparent;
  color: var(--btn-brand);
  border: 1px solid rgba(57, 34, 24, 0.35);
}
.btn-ghost:hover {
  background: var(--btn-brand-soft);
  border-color: rgba(57, 34, 24, 0.45);
  text-decoration: none;
}
.btn-wa {
  background: var(--btn-brand);
  color: #fff;
  box-shadow: 0 8px 24px var(--btn-brand-shadow);
}
.btn-wa:hover {
  background: var(--btn-brand-hover);
  text-decoration: none;
  color: #fff;
  filter: none;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow);
}

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 55px rgba(18, 16, 13, 0.14);
    border-color: rgba(181, 121, 43, 0.34);
  }
}

/* mais contraste em textos e divisórias internas */
.muted {
  color: var(--muted);
}
hr.sep {
  border-top-color: rgba(181, 121, 43, 0.22);
}

/* —— Ficha de reserva (fluxo cotação → WhatsApp) —— */
.ficha-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.ficha-header {
  margin-bottom: 1.25rem;
}
.ficha-eyebrow {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 0 0 0.35rem;
}
.ficha-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  margin: 0 0 0.5rem;
}
.ficha-doc.card {
  padding: 1.25rem 1.1rem 1.4rem;
}
.ficha-doc.card:hover {
  transform: none;
  box-shadow: var(--shadow);
}
@media (min-width: 520px) {
  .ficha-doc.card {
    padding: 1.5rem 1.45rem 1.65rem;
  }
}
.ficha-section {
  margin: 0;
}
.ficha-h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.85rem;
  color: var(--ink);
}
.ficha-sep {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(57, 34, 24, 0.15),
    transparent
  );
  margin: 1.25rem 0;
  border: 0;
}
.ficha-readonly {
  background: rgba(57, 34, 24, 0.04);
  border: 1px solid rgba(57, 34, 24, 0.1);
  border-radius: 10px;
  padding: 0.75rem 1rem;
}
.ficha-kv {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  line-height: 1.35;
}
.ficha-kv:last-child {
  margin-bottom: 0;
}
.ficha-kv span {
  color: var(--muted);
  font-weight: 600;
}
.ficha-kv strong {
  font-weight: 700;
  color: var(--ink);
  text-align: right;
}
.ficha-hint,
.ficha-hint-actions {
  font-size: 0.88rem;
}
.ficha-acomp-block {
  padding: 0.65rem 0 0.85rem;
  border-bottom: 1px solid var(--line);
}
.ficha-acomp-block:last-of-type {
  border-bottom: none;
}
.ficha-acomp-title {
  font-weight: 700;
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}
.ficha-meal-list {
  list-style: none;
  margin: 0 0 0.65rem;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
}
.li-ic {
  display: inline-flex;
  width: 1.15rem;
  height: 1.15rem;
  align-items: center;
  justify-content: center;
  margin-right: 0.55rem;
  color: var(--btn-brand);
  vertical-align: -0.15em;
}
.li-ic svg {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
}
.ficha-meal-note {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.ficha-subq {
  margin: 0 0 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.ficha-radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  margin-bottom: 0.65rem;
}
.ficha-radio {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-weight: 600;
}
.ficha-static-block {
  margin-top: 1rem;
}
.ficha-static-title {
  font-weight: 700;
  margin: 0 0 0.45rem;
  font-size: 0.98rem;
}
.ficha-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--muted);
}
.ficha-checklist--plain {
  color: var(--ink);
}
.ficha-declare {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.65rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 500;
  margin: 0;
}
.ficha-declare > span,
.ficha-declare > .ficha-declare-text {
  flex: 1 1 0;
  min-width: 0;
  display: block;
  font-weight: 500;
  color: var(--ink);
}
.ficha-declare input[type="checkbox"] {
  margin-top: 0.18rem;
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  min-width: 1.1rem;
}
.ficha-declare--mb {
  margin-bottom: 1rem;
}
.ficha-declare--mt {
  margin-top: 1.25rem;
}
.ficha-declare--mt-sm {
  margin-top: 0.85rem;
}
@media (max-width: 480px) {
  .ficha-declare {
    gap: 0.55rem;
    font-size: 0.9rem;
    line-height: 1.42;
  }
  .ficha-declare input[type="checkbox"] {
    width: 1.15rem;
    height: 1.15rem;
    min-width: 1.15rem;
    margin-top: 0.12rem;
  }
}
.ficha-actions {
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.ficha-actions .btn {
  width: 100%;
}
@media (min-width: 480px) {
  .ficha-actions .btn {
    width: auto;
  }
}
.ficha-price-box {
  margin-bottom: 0.25rem;
}

.grid-2 {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 860px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.conclusao-wrap .tag {
  margin-bottom: 0.85rem;
}
.conclusao-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1rem;
}
@media (min-width: 900px) {
  .conclusao-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}
.conclusao-rooms {
  display: grid;
  gap: 0.85rem;
}
.conclusao-room {
  padding: 0;
  overflow: hidden;
  position: relative;
}
.conclusao-room .conclusao-room-media,
.conclusao-room .conclusao-room-body {
  pointer-events: none;
}
.conclusao-room-hit {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
}
.conclusao-room-hit:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.conclusao-room-media {
  position: relative;
  z-index: 1;
  min-height: 150px;
  background: linear-gradient(135deg, #c4a574 0%, #8b6f3f 45%, #d4bc94 100%);
}
.conclusao-room-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--pos, 50% 50%);
  display: block;
}
.conclusao-room-body {
  padding: 0.9rem 1rem 0.95rem;
  position: relative;
  z-index: 1;
}
.conclusao-coupon {
  margin-top: 1rem;
}

/* Pagamento PIX */
.pix-qr {
  width: min(320px, 100%);
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.pix-qr-ph {
  padding: 1rem;
  text-align: center;
}
.pix-qr-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* Extras adicionais */
.extras-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 860px) {
  .extras-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.extra-card {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.extra-media {
  position: relative;
  min-height: 170px;
  background: linear-gradient(135deg, #c4a574 0%, #8b6f3f 45%, #d4bc94 100%);
}
.extra-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.extra-body {
  padding: 1rem 1.1rem 1.05rem;
}
.extra-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}
.extra-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.15;
}
.extra-pick {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}
.extra-pick input {
  width: 18px;
  height: 18px;
}
.extra-controls {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.extra-controls label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}
.extra-controls input,
.extra-controls select {
  width: 100%;
}

.extras-summary {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.65rem;
}
.extras-summary li {
  line-height: 1.35;
}
.section {
  padding: 2.25rem 0;
}
.section h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin: 0 0 1rem;
}
.section h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 1.25rem 0 0.5rem;
}

.muted {
  color: var(--muted);
  font-size: 0.95rem;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-check li {
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
}
.list-check li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.85rem;
}

form .row {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
@media (min-width: 640px) {
  form .row.cols-2 {
    grid-template-columns: 1fr 1fr;
  }
}

label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--ink);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  font: inherit;
  background: #fff;
}

/* Checkboxes e radios não podem usar width:100% (quebra alinhamento em label.flex). */
input[type="checkbox"],
input[type="radio"] {
  width: auto;
  max-width: none;
  flex-shrink: 0;
  accent-color: var(--accent);
}

/* Ícone de calendário para inputs de data (mobile-friendly) */
input[type="date"] {
  padding-right: 2.35rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24'%3E%3Cpath fill='%23B39056' d='M7 2h2v2h6V2h2v2h3a2 2 0 0 1 2 2v15a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6a2 2 0 0 1 2-2h2V2Zm14 8H3v11a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V10ZM5 6v2h14V6H5Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  background-size: 18px 18px;
}
textarea {
  min-height: 88px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(179, 144, 86, 0.45);
  outline-offset: 1px;
  border-color: rgba(179, 144, 86, 0.55);
}

.hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* Orçamento por categoria (cotação / ficha) */
.quote-breakdown {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  background: rgba(57, 34, 24, 0.04);
  border: 1px solid rgba(57, 34, 24, 0.12);
  border-radius: 10px;
}
.quote-breakdown-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
  color: var(--ink);
}
.quote-line {
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(18, 18, 18, 0.1);
}
.quote-line:last-of-type {
  border-bottom: none;
}
.quote-line-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}
.quote-line-amt {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  white-space: nowrap;
}
.quote-line-meta {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  line-height: 1.35;
}
.quote-breakdown-hint {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
}
.room-pick-nightly {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--ink);
}

.price-box {
  background: linear-gradient(135deg, rgba(179, 144, 86, 0.1), rgba(179, 144, 86, 0.04));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  margin-top: 1rem;
}
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}
.price-row:last-child {
  border-bottom: none;
  font-weight: 700;
  font-size: 1.05rem;
}
@media (max-width: 420px) {
  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
}

.alert {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
}
.alert-error {
  background: #fdecec;
  color: #8a1f1f;
  border: 1px solid #f5bcbc;
}
.alert-ok {
  background: rgba(179, 144, 86, 0.12);
  color: #3d3224;
  border: 1px solid rgba(179, 144, 86, 0.35);
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 3rem;
  padding: 2rem 0;
  background: #ffffff;
  font-size: 0.92rem;
  color: var(--muted);
}
.site-footer a {
  color: var(--accent);
}
.site-footer strong {
  color: var(--ink);
}
.site-footer p {
  word-break: break-word;
  overflow-wrap: anywhere;
}

.footer-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 860px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 0.7fr 0.9fr;
    align-items: start;
  }
}
.footer-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
}
.footer-h {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(18, 18, 18, 0.65);
}
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #4d2e20 0%, #392218 100%);
  color: #fff !important;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(28, 26, 22, 0.18);
}
.footer-wa:hover {
  filter: brightness(1.03);
}
.footer-bottom {
  margin: 1.35rem 0 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

hr.sep {
  border: none;
  border-top: 1px solid var(--line);
  margin: 1.25rem 0;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 0.35rem;
}

.tag::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 34px;
  height: 2px;
  margin-left: 0.55rem;
  background: linear-gradient(90deg, var(--accent2), transparent);
  border-radius: 2px;
  opacity: 0.85;
}

/* Cotação — barra de progresso (wizard) */
.wizard-bar {
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.wizard-bar-inner {
  position: relative;
  padding: 0.35rem 0 0.15rem;
}

.wizard-track {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 1.15rem;
  height: 4px;
  z-index: 0;
  pointer-events: none;
}

.wizard-track-bg {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(18, 18, 18, 0.08),
    rgba(18, 18, 18, 0.12)
  );
  box-shadow: inset 0 1px 2px rgba(18, 18, 18, 0.06);
}

.wizard-track-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    #c9a86a 45%,
    #d4bc94 100%
  );
  box-shadow: 0 0 0 1px rgba(179, 144, 86, 0.25);
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
  .wizard-track-fill {
    transition: none;
  }
}

.wizard-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  position: relative;
  z-index: 1;
}

.wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
  min-width: 0;
}

.wizard-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.wizard-marker--num {
  background: #fff;
  color: var(--muted);
  border: 2px solid rgba(18, 18, 18, 0.14);
  box-shadow: 0 2px 10px rgba(18, 18, 18, 0.06);
}

.wizard-step--current .wizard-marker--num {
  background: linear-gradient(145deg, #faf7f2 0%, #fff 50%, #f5efe6 100%);
  color: var(--ink);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft), 0 6px 18px rgba(179, 144, 86, 0.28);
  transform: scale(1.06);
}

.wizard-step--upcoming .wizard-marker--num {
  opacity: 0.72;
  background: #fafafa;
}

.wizard-marker--done {
  background: linear-gradient(145deg, var(--accent) 0%, #9a7a48 100%);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 14px rgba(179, 144, 86, 0.35);
}

.wizard-check {
  display: block;
}

.wizard-step-short {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.8vw, 1.05rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.wizard-step--upcoming .wizard-step-short {
  color: var(--muted);
  font-weight: 500;
}

.wizard-step--current .wizard-step-short {
  color: var(--accent-hover);
}

.wizard-step-label {
  font-size: 0.68rem;
  line-height: 1.25;
  color: var(--muted);
  max-width: 11rem;
  padding: 0 0.15rem;
}

.wizard-step--current .wizard-step-label {
  color: var(--ink);
  font-weight: 600;
}

.wizard-footnote {
  margin: 0.85rem 0 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted);
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(179, 144, 86, 0.07) 0%,
    rgba(179, 144, 86, 0.03) 100%
  );
  border: 1px solid rgba(179, 144, 86, 0.2);
  border-radius: 10px;
}

.wizard-footnote strong {
  color: var(--accent-hover);
  font-weight: 700;
}

.wizard-footnote-sep {
  display: inline-block;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  background: rgba(179, 144, 86, 0.1);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 600;
}

.room-pick {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  margin-bottom: 0.85rem;
  background: #fff;
}
.room-pick h4 {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}
.room-pick .qty-input {
  max-width: 6rem;
}

/* Cotação (passo 2): cards com foto por acomodação */
.room-pick-card {
  padding: 0;
  overflow: hidden;
}
.room-pick-media-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.room-pick-media-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.room-pick-text-hit {
  display: block;
  color: inherit;
  text-decoration: none;
  margin-bottom: 0.35rem;
}
.room-pick-text-hit:hover h4,
.room-pick-text-hit:focus-visible h4 {
  color: var(--accent-hover);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
.room-pick-media {
  position: relative;
  min-height: 160px;
  background: linear-gradient(135deg, #c4a574 0%, #8b6f3f 45%, #d4bc94 100%);
}
.room-pick-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--pos, 50% 50%);
  display: block;
}
.room-pick-body {
  padding: 1rem 1.1rem 1.05rem;
}
.room-pick-meta {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
}
.room-pick-qty {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: end;
  margin-top: 0.75rem;
}
.room-pick-suggest {
  white-space: nowrap;
}
@media (max-width: 520px) {
  .room-pick-qty {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .room-pick .qty-input {
    max-width: none;
  }
  .room-pick-suggest {
    width: 100%;
  }
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}
.chip-grid li {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.92rem;
  background: #fff;
  color: var(--ink);
}

.room-hero {
  background: linear-gradient(145deg, rgba(179, 144, 86, 0.14), rgba(255, 255, 255, 0.9));
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--line);
}

/* Galeria de fotos nas páginas das suítes */
.suite-gallery {
  margin: 0 0 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(18, 18, 18, 0.12);
  box-shadow: var(--shadow);
  background: #fff;
}
.suite-gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.suite-gallery-slide {
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f4f4f4;
}
.suite-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 520px) {
  .suite-gallery-slide {
    aspect-ratio: 3 / 4;
  }
}
.room-hero .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.35rem;
}
.room-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}
.room-specs {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.95rem;
}
@media (min-width: 560px) {
  .room-specs {
    grid-template-columns: 1fr 1fr;
  }
}
.room-specs li {
  padding-left: 1.35rem;
  position: relative;
}
.room-specs li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}

/* —— Página Suítes —— */
.suites-hero {
  padding: 2.5rem 0 1.5rem;
  background: linear-gradient(165deg, rgba(179, 144, 86, 0.12) 0%, #fff 42%, rgba(179, 144, 86, 0.06) 100%);
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.5rem;
}
.suites-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  margin: 0 0 0.5rem;
  line-height: 1.15;
}
.suites-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
  padding: 2rem 0 2.5rem;
}
@media (min-width: 720px) {
  .suites-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.suite-showcase-card {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .suite-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(28, 26, 22, 0.1);
  }
}
.suite-card-media {
  position: relative;
  min-height: 200px;
  background: linear-gradient(135deg, #c4a574 0%, #8b6f3f 45%, #d4bc94 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.suite-card-photo {
  transform: translateZ(0);
}
.suite-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--pos, 50% 50%);
  display: block;
}
.suite-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3Efilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
}
.suite-card-media.v2 {
  background: linear-gradient(145deg, #6b5344 0%, #b39056 50%, #e8dcc8 100%);
}
.suite-card-media.v3 {
  background: linear-gradient(160deg, #3d3228 0%, #8b7355 40%, #c9b896 100%);
}
.suite-card-media.v4 {
  background: linear-gradient(130deg, #5c4a3a 0%, #a08050 55%, #d9c9a8 100%);
}
.suite-card-media .ph-label {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  right: 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}
.suite-card-body {
  padding: 1.2rem 1.35rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.suite-card-body h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}
.suite-meta {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.65rem;
}
.suite-card-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* —— Página Experiências & Galeria —— */
.exp-page {
  overflow-x: hidden;
}
.exp-hero {
  padding: 3rem 0 2.5rem;
  background: radial-gradient(ellipse 90% 60% at 50% -20%, rgba(179, 144, 86, 0.22), transparent 55%),
    linear-gradient(180deg, #faf8f4 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.exp-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin: 0 auto 0.65rem;
  max-width: 16ch;
  line-height: 1.12;
}
.exp-hero .lead {
  color: var(--muted);
  max-width: 42ch;
  margin: 0 auto;
  font-size: 1.08rem;
}

.bento-wrap {
  padding: 2.5rem 0 1rem;
}
.bento-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 1.25rem;
  text-align: center;
}
.bento-gallery {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(104px, auto);
}
@media (min-width: 720px) {
  .bento-gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 112px;
    gap: 1rem;
  }
}
.bento-item {
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  min-height: 104px;
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  padding: 0.85rem 1rem;
  background: linear-gradient(145deg, #c9a86a, #7d6238);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bento-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.66), transparent 56%);
  pointer-events: none;
}
.bento-item span {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 0.82rem;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  line-height: 1.3;
}
@media (min-width: 720px) {
  .bento-item span {
    font-size: 0.88rem;
  }
}
.bento-item.bento-lg {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 200px;
  padding: 1.15rem 1.25rem;
}
@media (min-width: 720px) {
  .bento-item.bento-lg {
    min-height: 236px;
  }
}
.bento-item.bento-w {
  grid-column: span 2;
  min-height: 112px;
}
@media (min-width: 720px) {
  .bento-item.bento-w {
    grid-column: span 4;
    min-height: 120px;
  }
}
@media (max-width: 719px) {
  .bento-item.bento-lg {
    grid-row: span 1;
    min-height: 140px;
  }
}
.bg-pool {
  background: linear-gradient(160deg, #4a90a4, #7ec8e0 50%, #c5e8f0);
}
.bg-bar {
  background: linear-gradient(145deg, #8b6914, #d4a84b);
}
.bg-farm {
  background: linear-gradient(150deg, #5d7a4a, #9cb88a);
}
.bg-food {
  background: linear-gradient(135deg, #a65d3a, #e8a87c);
}
.bg-kids {
  background: linear-gradient(160deg, #c75b7a, #f0b4c8);
}
.bg-spa {
  background: linear-gradient(145deg, #6b5b8c, #b8a9d4);
}
.bg-nature {
  background: linear-gradient(155deg, #3d5c3d, #8fbc8f);
}

.exp-sections {
  padding: 2rem 0 3rem;
}
.exp-block {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2.75rem;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid var(--line);
}
.exp-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media (min-width: 880px) {
  .exp-block {
    grid-template-columns: 1fr 1.15fr;
    gap: 2.5rem;
  }
  .exp-block.exp-reverse {
    direction: rtl;
  }
  .exp-block.exp-reverse > * {
    direction: ltr;
  }
}
.exp-block-visual {
  border-radius: var(--radius);
  min-height: 200px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(179, 144, 86, 0.2), rgba(179, 144, 86, 0.05));
  position: relative;
  overflow: hidden;
}
.exp-block-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.35), transparent 50%);
}
.exp-block h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 0 0 0.65rem;
}
.exp-block p {
  color: var(--muted);
  margin: 0 0 0.75rem;
}
.exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.85rem;
  padding: 0;
  list-style: none;
}
.exp-tags li {
  font-size: 0.82rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--ink);
}
.exp-cta-bar {
  text-align: center;
  padding: 2rem 0 3rem;
  background: linear-gradient(180deg, #fff 0%, rgba(179, 144, 86, 0.1) 100%);
  border-top: 1px solid var(--line);
}

/* Galeria e vídeos (Experiências) */
.exp-media-rail {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  padding: 0 max(1rem, env(safe-area-inset-left));
}
.exp-media-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(82vw, 520px);
  gap: 0.85rem;
  padding-bottom: 0.25rem;
}
.exp-media-slide {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(18, 18, 18, 0.12);
  box-shadow: var(--shadow);
  background: #fff;
  aspect-ratio: 4 / 3;
}
.exp-media-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Página O hotel: grades com fotos */
.hotel-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 0.75rem;
  margin-top: 0.85rem;
}
.hotel-photo-grid--dense {
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
}
@media (min-width: 640px) {
  .hotel-photo-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
  .hotel-photo-grid--dense {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}
.hotel-photo-tile {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(18, 18, 18, 0.12);
  box-shadow: var(--shadow);
  background: #fff;
}
.hotel-photo-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.hotel-photo-tile figcaption {
  padding: 0.55rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
  color: var(--ink);
}
.hotel-experiencia-grid {
  display: grid;
  gap: 1rem;
}
.hotel-experiencia-card {
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.hotel-experiencia-card h3 {
  font-family: var(--font-display);
  margin: 0.9rem 1rem 0.25rem;
}
.hotel-experiencia-card .exp-video-desc {
  margin: 0 1rem 1rem;
}
.hotel-experiencia-video {
  margin-top: 0.65rem;
}
@media (min-width: 860px) {
  .hotel-experiencia-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.exp-videos-grid {
  display: grid;
  gap: 1rem;
}
.exp-video-card {
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.exp-video-frame {
  aspect-ratio: 16 / 9;
  background: #0f0e0d;
}
.exp-video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Mobile: vídeos verticais para “mostrar tudo” */
@media (max-width: 767px) {
  .exp-video-frame {
    aspect-ratio: 9 / 16;
  }
  .exp-video-frame video {
    object-fit: contain; /* mostra tudo (sem cortar) */
    background: #0f0e0d; /* pode gerar barras se necessário */
  }
}
.exp-video-card h3 {
  font-family: var(--font-display);
  margin: 0.9rem 1rem 0.25rem;
}
.exp-video-card p {
  margin: 0 1rem 1rem;
}
.exp-video-card .exp-video-desc {
  line-height: 1.45;
  max-width: 52ch;
}
@media (min-width: 860px) {
  .exp-videos-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* —— Mobile: toques e leitura —— */
@media (max-width: 767px) {
  .btn {
    min-height: 44px;
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }
  .section {
    padding: 1.65rem 0;
  }
  .section h2 {
    font-size: 1.45rem;
  }
  .card {
    padding: 1.15rem 1.2rem;
  }
  .wizard-track {
    left: 8%;
    right: 8%;
    top: 1.05rem;
  }
  .wizard-marker {
    width: 1.95rem;
    height: 1.95rem;
    font-size: 0.78rem;
  }
  .wizard-step-label {
    font-size: 0.62rem;
    max-width: none;
  }
  .wizard-footnote {
    font-size: 0.72rem;
    padding: 0.55rem 0.65rem;
  }
  .exp-hero {
    padding: 2rem 0 1.75rem;
  }
  .exp-hero .lead {
    font-size: 1rem;
    padding: 0 0.25rem;
  }
  .bento-title {
    font-size: 1.3rem;
    padding: 0 0.25rem;
  }
  .exp-block h2 {
    font-size: 1.35rem;
  }
  .suites-hero {
    padding: 1.75rem 0 1.25rem;
  }
  .suite-card-media {
    min-height: 160px;
  }
}

/* —— Revelar ao rolar (scroll) —— */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 1.15rem, 0);
  transition:
    opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
[data-reveal].reveal-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

/* brilho sutil no momento do reveal (apenas desktop/sem reduzir movimento) */
@media (hover: hover) and (pointer: fine) {
  [data-reveal].reveal-visible {
    animation: reveal-glow 0.7s var(--ease-out);
  }
  @keyframes reveal-glow {
    from {
      filter: saturate(0.95) brightness(0.98);
    }
    to {
      filter: saturate(1.03) brightness(1);
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

/* —— Botão flutuante: chat / atendimento —— */
.fab-chat {
  position: fixed;
  z-index: 45;
  right: max(0.85rem, env(safe-area-inset-right));
  bottom: max(0.85rem, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
  pointer-events: none;
}
.fab-chat > * {
  pointer-events: auto;
}

/* Toast/Notificação acima do chatbot */
.fab-chat-toast {
  width: min(22rem, calc(100vw - 1.75rem));
  background: rgba(18, 18, 18, 0.92);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.25);
  padding: 0.85rem 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  position: relative;
  animation: toast-in 0.32s var(--ease-out);
}
.fab-chat-toast[hidden] {
  display: none !important;
}
.fab-chat-toast-inner {
  min-width: 0;
}
.fab-chat-toast-title {
  margin: 0 0 0.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.78);
}
.fab-chat-toast-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.35;
}
.fab-chat-toast-close {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  line-height: 1;
  padding: 0.15rem 0.25rem;
  cursor: pointer;
}
.fab-chat-toast-close:hover {
  color: #fff;
}
@keyframes toast-in {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Indicador “online” no botão flutuante */
.fab-chat-trigger::before {
  content: "";
  position: absolute;
  top: 9px;
  right: 9px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #31d158;
  box-shadow: 0 0 0 3px rgba(57, 34, 24, 0.65), 0 0 0 6px rgba(49, 209, 88, 0.18);
}
.fab-chat-panel {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: min(19rem, calc(100vw - 1.75rem));
  padding: 0.95rem 0.95rem 0.9rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbf9f6 100%);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(28, 26, 22, 0.16);
  animation: fab-panel-in 0.28s ease;
}
.fab-chat-panel[hidden] {
  display: none !important;
}
@keyframes fab-panel-in {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fab-chat-panel {
    animation: none;
  }
}
.fab-chat-heading {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}
.fab-chat-sub {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.fab-chat-top {
  padding: 0.25rem 0.2rem 0;
  display: flex;
  gap: 0.65rem;
  align-items: center;
}
.fab-chat-agent {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  overflow: hidden;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-sizing: border-box;
  border: 1px solid rgba(179, 144, 86, 0.45);
  background: linear-gradient(155deg, #3a261c 0%, #523428 38%, #6b4534 72%, #5c3d2a 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 10px 26px rgba(28, 22, 18, 0.22);
}
.fab-chat-agent-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.fab-chat-thread {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.55rem 0.35rem;
  background: radial-gradient(ellipse at 20% 0%, rgba(179, 144, 86, 0.12), transparent 55%),
    radial-gradient(ellipse at 100% 70%, rgba(179, 144, 86, 0.08), transparent 60%);
  border: 1px solid rgba(179, 144, 86, 0.22);
  border-radius: 12px;
  max-height: 42vh;
  overflow: auto;
}

.fab-chat-msg {
  display: flex;
}
.fab-chat-msg.bot {
  justify-content: flex-start;
}
.fab-chat-msg.user {
  justify-content: flex-end;
}
.fab-chat-bubble {
  max-width: 86%;
  padding: 0.6rem 0.75rem;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.35;
  border: 1px solid transparent;
  box-shadow: 0 6px 18px rgba(28, 26, 22, 0.08);
}
.fab-chat-msg.bot .fab-chat-bubble {
  background: #fff;
  border-color: rgba(179, 144, 86, 0.22);
  color: var(--ink);
  border-top-left-radius: 8px;
}
.fab-chat-msg.user .fab-chat-bubble {
  background: linear-gradient(135deg, var(--accent) 0%, #8a6d42 100%);
  color: #fff;
  border-top-right-radius: 8px;
}
.fab-chat-meta {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: rgba(92, 87, 77, 0.9);
}

.fab-chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.45rem;
  padding: 0 0.15rem;
}
.fab-chat-chip {
  appearance: none;
  border: 1px solid rgba(57, 34, 24, 0.22);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.fab-chat-chip:active {
  transform: scale(0.98);
}
.fab-chat-chip:hover {
  background: var(--btn-brand-soft);
  border-color: rgba(57, 34, 24, 0.28);
}
.fab-chat-chip-primary {
  background: var(--btn-brand) !important;
  border-color: rgba(57, 34, 24, 0.45) !important;
  color: #fff !important;
}
.fab-chat-chip-primary:hover {
  background: var(--btn-brand-hover) !important;
}

.fab-quote-form {
  margin-top: 0.55rem;
}
.fab-quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 0.6rem;
}
.fab-quote-field span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  margin: 0 0 0.25rem;
}
.fab-quote-field input,
.fab-quote-field select {
  width: 100%;
  padding: 0.5rem 0.6rem;
  border-radius: 10px;
  border: 1px solid rgba(179, 144, 86, 0.25);
  font: inherit;
  background: #fff;
}
.fab-quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.45rem;
  margin-top: 0.6rem;
}
.fab-child-ages-host {
  margin-top: 0.35rem;
}
.fab-child-ages-host .pricing-rates-hint {
  margin-top: 0.5rem;
}
@media (max-width: 420px) {
  .fab-quote-grid {
    grid-template-columns: 1fr;
  }
}

/* Idades das crianças (cotação) */
.child-ages-block {
  margin-top: 0.65rem;
}
.child-ages-title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0 0 0.45rem;
  color: var(--ink);
}
.child-ages-grid {
  align-items: end;
}
.child-age-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.28rem;
  color: var(--muted);
}
.child-age-field select {
  width: 100%;
}
.pricing-rates-hint {
  margin-top: 0.65rem;
  font-size: 0.82rem;
  line-height: 1.45;
}
@media (max-width: 520px) {
  .child-ages-grid {
    grid-template-columns: 1fr !important;
  }
}

.fab-chat-composer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  padding: 0.15rem;
}
.fab-chat-input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(179, 144, 86, 0.25);
  background: #fff;
  padding: 0.55rem 0.7rem;
  font: inherit;
}
.fab-chat-send {
  border: none;
  border-radius: 12px;
  padding: 0.55rem 0.85rem;
  background: var(--btn-brand);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.12s ease;
}
.fab-chat-send:hover {
  background: var(--btn-brand-hover);
}
.fab-chat-send:focus-visible {
  outline: 2px solid rgba(57, 34, 24, 0.45);
  outline-offset: 2px;
}

.fab-chat-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  padding: 0.15rem;
}
.fab-chat-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
}
.fab-chat-link:hover {
  text-decoration: none;
}
.fab-chat-link.fab-chat-wa {
  grid-column: 1 / -1;
  background: var(--btn-brand);
  color: #fff !important;
  box-shadow: 0 4px 14px var(--btn-brand-shadow);
}
.fab-chat-link.fab-chat-wa:hover {
  background: var(--btn-brand-hover);
  filter: none;
}
.fab-chat-link.fab-chat-muted {
  background: #fff;
  border-color: var(--line);
  color: var(--muted) !important;
  font-weight: 600;
}
.fab-chat-trigger {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(150deg, #392218 0%, #2a1812 100%);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 28px var(--btn-brand-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}
.fab-chat-trigger:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 32px var(--btn-brand-shadow);
}
.fab-chat-trigger:active {
  transform: scale(0.97);
}
.fab-chat-open .fab-chat-trigger {
  background: linear-gradient(150deg, #4d2e20 0%, #392218 100%);
}
.fab-chat-icon {
  flex-shrink: 0;
}
.fab-chat-tooltip {
  position: absolute;
  right: calc(100% + 0.55rem);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: var(--ink);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}
.fab-chat-trigger:hover .fab-chat-tooltip,
.fab-chat-trigger:focus-visible .fab-chat-tooltip {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 520px) {
  .fab-chat-tooltip {
    display: none;
  }
  .fab-chat-trigger {
    width: 54px;
    height: 54px;
  }
}

/* —— Bloco Sobre nós (home + O hotel) —— */
.home-about-section h1 {
  margin-top: 0.15rem;
}

/* —— Página O hotel (Sobre nós) —— */
.about-welcome {
  margin: 0 0 0.15rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent2);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem 1rem;
  margin: 1.85rem 0 2rem;
  max-width: 720px;
}
.about-stat {
  text-align: center;
  padding: 1rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(179, 144, 86, 0.1) 0%, #fff 55%);
  box-shadow: var(--shadow);
}
.about-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2rem);
  line-height: 1.1;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.about-stat span {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.35;
}
@media (max-width: 600px) {
  .about-stats {
    grid-template-columns: 1fr;
    max-width: none;
  }
}
