/* ============================================================
   BEIJA-FLOR POUSADA — Design System v3
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Saira:wght@300;400;500;600&display=swap');

/* ===== VARIABLES ===== */
:root {
  --primary:        #05b6d5;
  --primary-dark:   #0494ae;
  --primary-darker: #036b7e;
  --primary-light:  #e5f7fb;
  --primary-mid:    #8fd9ea;
  --accent:         #f6da0c;
  --accent-dark:    #c9b000;

  --white:    #ffffff;
  --off-white:#f5fafc;
  --bg-soft:  #edf5f8;
  --border:   #cce4ec;
  --text:     #0d1d22;
  --text-2:   #2a4450;
  --text-3:   #587080;

  --font-h:       'Poppins', sans-serif;
  --font-b:       'Saira', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --r-sm:   8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-2xl: 40px;
  --r-full:9999px;

  --s-xs: 0 1px 4px rgba(0,0,0,.05);
  --s-sm: 0 2px 12px rgba(0,0,0,.07);
  --s-md: 0 4px 24px rgba(0,0,0,.10);
  --s-lg: 0 8px 48px rgba(0,0,0,.14);
  --s-xl: 0 16px 64px rgba(0,0,0,.18);
  --s-green: 0 4px 16px rgba(0,0,0,.15);

  --nav-h: 80px;
  --max-w: 1200px;
  --t: .25s ease;
  --t-slow: .55s cubic-bezier(.25,.46,.45,.94);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; overflow-x: clip; }
body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--white);
  overflow-x: clip;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
video { display: block; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: var(--font-h); line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 600; }
p  { font-size: 1rem; line-height: 1.75; color: var(--text-2); }

.section-tag {
  display: inline-block;
  font-family: var(--font-h);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}
.section-title { margin-bottom: 12px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-3); max-width: 560px; line-height: 1.7; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 12px;
}
section { padding: 100px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-family: var(--font-h);
  font-size: .9rem; font-weight: 600; letter-spacing: .02em;
  transition: all var(--t);
  white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.15);
  opacity: 0; transition: opacity var(--t);
}
.btn:hover::before { opacity: 1; }
.btn-primary { background: var(--primary); color: var(--white); box-shadow: var(--s-green); }
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 6px 32px rgba(0,0,0,.18); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: var(--text); }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-outline-white { border: 2px solid rgba(255,255,255,.7); color: var(--white); background: transparent; backdrop-filter: blur(8px); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: white; }
.btn-outline-green { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline-green:hover { background: var(--primary-light); }
.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-white { background: white; color: var(--primary-darker); font-weight: 700; }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 6px 32px rgba(0,0,0,.2); }
.btn-waze {
  background: linear-gradient(135deg, #33CCFF 0%, #00AEEF 100%);
  color: #ffffff; font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,174,239,.35);
}
.btn-waze:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(0,174,239,.5); }

/* ===== NAVBAR — sempre branca, acima do hero ===== */
.navbar {
  position: fixed; top: 0; left: 0; z-index: 1000;
  width: 100vw; max-width: 100vw; overflow: hidden;
  height: var(--nav-h);
  background: var(--white);
  display: flex; align-items: center;
  transition: box-shadow var(--t), background var(--t);
  padding: 0 12px;
  box-sizing: border-box;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,.10);
}
.navbar-inner {
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  min-width: 0;
}
.nav-logo { flex-shrink: 1; min-width: 0; overflow: hidden; }
.nav-logo img { height: 64px; width: auto; max-width: 100%; }
.nav-toggle { flex-shrink: 0; }
/* Nav links/cta hidden by default (mobile-first — no FOUC on mobile) */
.nav-links { display: none; align-items: center; gap: 32px; }
.nav-links a {
  font-family: var(--font-h); font-size: .875rem; font-weight: 500;
  color: var(--text-2); transition: color var(--t); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--primary);
  transition: width var(--t); border-radius: var(--r-full);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: none; align-items: center; gap: 16px; }
/* Hamburger always visible by default */
.nav-toggle { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
/* Show desktop nav only on wide screens */
@media (min-width: 769px) {
  .nav-links { display: flex; }
  .nav-cta { display: flex; }
  .nav-toggle { display: none; }
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--t); }

/* ===== HERO — abaixo da navbar, 80vh ===== */
.hero-outer {
  background: var(--white);
  padding: var(--nav-h) 1.2% 24px;
}
.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 460px;
  border-radius: var(--r-2xl);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: #0a1a12;
}
.hero-bg {
  position: absolute; inset: 0;
  will-change: transform;
  transform: scale(1.08);
  overflow: hidden;
}
.hero-bg-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.hero-bg-slide-1 {
  background-image: url('../../briefing/Assets/capa.jpeg');
  animation: heroFade1 14s ease-in-out infinite;
}
.hero-bg-slide-2 {
  background-image: url('../../briefing/Assets/capa2.jpeg');
  animation: heroFade2 14s ease-in-out infinite;
}
@keyframes heroFade1 {
  0%, 40%   { opacity: 1; }
  50%, 90%  { opacity: 0; }
  100%      { opacity: 1; }
}
@keyframes heroFade2 {
  0%, 40%   { opacity: 0; }
  50%, 90%  { opacity: 1; }
  100%      { opacity: 0; }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,12,20,.94) 0%,
    rgba(0,80,120,.74) 55%,
    rgba(5,182,213,.46) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 40px 32px;
  width: 100%;
  max-width: 1040px;
}
.hero-badges { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.badge-mobile { display: none; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--r-full);
  padding: 7px 16px;
  font-family: var(--font-h); font-size: .8rem; font-weight: 500;
  color: rgba(255,255,255,.95); letter-spacing: .03em;
}
.hero-badge .stars { color: var(--accent); letter-spacing: 2px; font-size: .85rem; }
.hero-badge img { height: 20px; }
.hero h1 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 20px;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
  letter-spacing: -0.01em;
}
.hero h1 span { color: var(--accent); font-style: italic; }
.hero-sub {
  font-family: var(--font-b); font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.97); max-width: 860px; margin: 0 auto 36px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== HIGHLIGHTS BAR — escuro com separadores ===== */
.highlights { background: var(--primary-darker); padding: 0; overflow: hidden; height: 60px; }
.marquee-wrap { display: flex; height: 60px; align-items: center; overflow: hidden; }
.marquee-track {
  display: flex; align-items: center;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 36px;
  font-family: var(--font-h); font-size: .8rem; font-weight: 500;
  letter-spacing: .06em; color: rgba(255,255,255,.9);
}
.marquee-item svg { color: var(--accent); flex-shrink: 0; width: 18px; height: 18px; }
.marquee-sep {
  color: var(--accent);
  font-size: .55rem;
  opacity: .7;
  flex-shrink: 0;
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== SUITES — LISTA VERTICAL ===== */
.suites { background: var(--white); }

.suites-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.suite-card-h {
  display: grid;
  grid-template-columns: 340px 1fr;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--s-sm);
  background: var(--white);
  height: 240px;
  transition: transform var(--t-slow), box-shadow var(--t-slow);
}
.suite-card-h:hover { transform: translateY(-5px); box-shadow: var(--s-lg); }

.suite-card-h-img {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.suite-card-h-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.suite-card-h:hover .suite-card-h-img img { transform: scale(1.07); }

.suite-category-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(8px);
  border-radius: var(--r-full);
  padding: 4px 12px;
  font-family: var(--font-h); font-size: .68rem; font-weight: 700;
  color: var(--primary-darker); letter-spacing: .06em; text-transform: uppercase;
}
.suite-capacity-pill {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(8px);
  border-radius: var(--r-full);
  padding: 4px 10px;
  font-family: var(--font-h); font-size: .72rem; font-weight: 600;
  color: var(--primary-darker);
  display: flex; align-items: center; gap: 4px;
}

.suite-card-h-body {
  padding: 22px 28px 20px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
}
.suite-card-h-top h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.suite-card-h-top p {
  font-size: .875rem;
  line-height: 1.6;
  color: var(--text-3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}
.suite-features {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.suite-feature-tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .7rem; font-family: var(--font-h);
  color: var(--text-2); background: var(--bg-soft);
  border: 1px solid var(--border); border-radius: var(--r-full); padding: 3px 9px;
}
.suite-card-h-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.suite-card-h-footer .btn {
  padding: 9px 22px;
  font-size: .82rem;
}

/* ===== BREAKFAST ===== */
.breakfast { background: var(--off-white); }
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: stretch;
}
.two-col.reverse > *:first-child { order: 2; }
.two-col.reverse > *:last-child  { order: 1; }

.breakfast-carousel {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--s-lg);
  width: 100%;
  min-height: 400px;
}
.breakfast-carousel-viewport { overflow: hidden; height: 100%; position: absolute; inset: 0; border-radius: inherit; }
.breakfast-carousel-track {
  display: flex; height: 100%; width: 100%;
  transition: transform var(--t-slow);
}
.breakfast-carousel-slide { width: 100%; height: 100%; flex: 0 0 100%; }
.breakfast-carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.breakfast-carousel-slide .parallax-img {
  width: 100%; height: 110%;
  object-fit: cover;
  margin-top: -5%;
  transition: transform 0.1s linear;
}
.bc-arrows {
  position: absolute; bottom: 20px; right: 20px;
  display: flex; gap: 8px;
}
.bc-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-2); transition: all var(--t);
}
.bc-btn:hover { background: var(--white); color: var(--primary); }
.bc-btn svg { width: 16px; height: 16px; }
.bc-dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
}
.bc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.5); cursor: pointer; transition: all var(--t);
}
.bc-dot.active { background: white; width: 18px; border-radius: 3px; }

.img-badge {
  position: absolute; bottom: 72px; left: 20px;
  background: var(--white); border-radius: var(--r-md);
  padding: 14px 18px; box-shadow: var(--s-md);
  display: flex; align-items: center; gap: 12px;
  z-index: 5;
}
.img-badge-icon {
  width: 40px; height: 40px; background: var(--primary-light);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.img-badge-icon svg { color: var(--primary); }
.img-badge-text strong { display: block; font-family: var(--font-h); font-size: .85rem; color: var(--text); }
.img-badge-text span { font-size: .78rem; color: var(--text-3); }

.content-block {
  display: flex; flex-direction: column; justify-content: center;
}
.content-block .section-tag,
.content-block > .btn { align-self: flex-start; }
.content-block h2 { margin-bottom: 16px; }
.content-block > p { margin-bottom: 24px; }
.feature-list { margin-bottom: 36px; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.feature-item:last-child { border-bottom: none; }
.feature-icon {
  width: 36px; height: 36px; background: var(--primary-light);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--primary);
}
.feature-text strong { display: block; font-size: .9rem; font-family: var(--font-h); color: var(--text); }
.feature-text span { font-size: .85rem; color: var(--text-3); }

/* ===== ABOUT — vídeo + stats horizontais ===== */
.about { background: var(--white); overflow: hidden; }
.about-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-cols > div:first-child h2 { margin-top: 16px; }
.about-cols > div:first-child p { margin-top: 20px; }

/* Stats strip horizontal */
.about-stats {
  display: flex;
  gap: 0;
  margin: 36px 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat-card {
  flex: 1;
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  background: var(--bg-soft);
  transition: background var(--t);
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: var(--primary-light); }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: .78rem; color: var(--text-3); font-family: var(--font-h); font-weight: 500; }

.about-video-wrap {
  position: relative;
}
.about-video {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: 0 24px 80px rgba(0,0,0,.2);
  display: block;
}

/* Float cards — suaves, sem bounce */
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--s-lg);
  padding: 16px 20px;
  z-index: 10;
  display: flex; align-items: center; gap: 12px;
  min-width: 160px;
}
.float-card-1 { top: 40px; left: -20px; }
.float-card-2 { top: 50%; right: -20px; transform: translateY(-50%); }
.float-card-3 { bottom: 40px; left: -20px; }
.float-card-icon {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.float-card-icon.green { background: var(--primary-light); color: var(--primary); }
.float-card-icon.yellow { background: #fef9c3; color: #a16207; }
.float-card-number { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--text); line-height: 1; }
.float-card-label { font-size: .75rem; color: var(--text-3); font-family: var(--font-h); margin-top: 2px; }
.float-card img { height: 32px; }

/* ===== GALLERY ===== */
.gallery { background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 480px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: 1; grid-row: 1; }
.gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery-item .img-parallax {
  width: 100%; height: 115%;
  object-fit: cover;
  transform: translateY(0);
  transition: transform .6s ease;
  margin-top: -7.5%;
}
.gallery-item:hover .img-parallax { transform: translateY(-5%) scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,26,18,.65) 0%, rgba(10,26,18,.15) 60%, transparent 100%);
  opacity: 0; transition: opacity .4s ease;
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-content {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.gallery-caption {
  font-family: var(--font-h); font-size: .78rem; font-weight: 600;
  color: white; letter-spacing: .04em;
  transform: translateY(8px);
  transition: transform .4s ease;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.gallery-overlay svg { color: rgba(255,255,255,.85); width: 26px; height: 26px; flex-shrink: 0; }
.gallery-placeholder-1 { background: linear-gradient(135deg, #005070, #05b6d5); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity var(--t);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: var(--r-md); }
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  color: white; font-size: 2rem; font-weight: 300; cursor: pointer; opacity: .8; transition: opacity var(--t);
}
.lightbox-close:hover { opacity: 1; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--white); }
.testimonials-wrap {
  position: relative;
  display: flex; align-items: stretch; gap: 20px;
}
.t-arrow {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 50%; align-self: center;
  background: var(--white);
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2); cursor: pointer; transition: all var(--t);
}
.t-arrow:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); transform: scale(1.06); }
.t-arrow svg { width: 20px; height: 20px; }
.testimonials-viewport {
  flex: 1;
  overflow-x: hidden;
  overflow-y: visible;
  padding: 10px 0;
  margin: -10px 0;
}
.testimonials-cards {
  display: flex; gap: 20px;
  transition: transform var(--t-slow);
  will-change: transform;
  align-items: stretch;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  flex-shrink: 0;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  transition: box-shadow var(--t);
}
.t-card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.t-author { display: flex; align-items: center; gap: 10px; }
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-weight: 700; color: white; font-size: .95rem; flex-shrink: 0;
}
.t-name { font-family: var(--font-h); font-size: .92rem; font-weight: 600; color: var(--text); }
.t-google-icon { flex-shrink: 0; }
.t-text {
  font-size: .93rem; color: var(--text-2); line-height: 1.75;
  font-style: italic; flex: 1; margin-bottom: 20px;
}
.t-stars { color: var(--accent); font-size: .9rem; letter-spacing: 2px; margin-top: auto; }


/* ===== LOCATION ===== */
.location { background: var(--off-white); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; }
.location-left { display: flex; flex-direction: column; }
.location-info { display: flex; flex-direction: column; flex: 1; }
.location-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.location-item:first-child { border-top: 1px solid var(--border); }
.loc-icon {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: var(--primary-light); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--primary);
}
.loc-text strong { display: block; font-family: var(--font-h); font-size: .9rem; color: var(--text); margin-bottom: 2px; }
.loc-text span { font-size: .85rem; color: var(--text-3); }
.location-ctas { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.location-media { display: flex; flex-direction: column; gap: 16px; height: 100%; }
.location-360 {
  border-radius: var(--r-xl); overflow: hidden;
  position: relative; flex: 1; min-height: 0;
  box-shadow: var(--s-md);
}
.location-360 #panorama-360 { width: 100%; height: 100%; }
.location-360-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(0,0,0,.45); backdrop-filter: blur(8px);
  border-radius: var(--r-full); padding: 6px 14px;
  display: flex; align-items: center; gap: 6px;
  color: white; font-size: .78rem; font-family: var(--font-h); font-weight: 600;
}
.map-wrap { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--s-md); flex: 1; min-height: 240px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ===== FAQ ===== */
.faq { background: var(--white); }
.faq-list { max-width: 100%; }
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0; text-align: left;
  font-family: var(--font-h); font-size: .95rem; font-weight: 600; color: var(--text);
  cursor: pointer; transition: color var(--t);
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--text-3); transition: all var(--t);
}
.faq-item.open .faq-icon { background: var(--primary); border-color: var(--primary); color: white; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p { padding-bottom: 20px; font-size: .9rem; color: var(--text-3); line-height: 1.7; }

/* ===== CTA SECTION — imagem de fundo ===== */
.cta-outer {
  background: var(--white);
  padding: 48px 1.2% 0;
}
.cta-section {
  position: relative; overflow: hidden; text-align: center; padding: 120px 0;
  background: none;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.cta-bg {
  position: absolute; top: -25%; left: 0; right: 0; bottom: -25%;
  background: url('../../briefing/Assets/praia2.jpg') center center / cover no-repeat;
  transform: scale(1.06);
  will-change: transform;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,12,20,.95) 0%,
    rgba(0,80,120,.88) 55%,
    rgba(5,182,213,.55) 100%
  );
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  color: white; margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 600;
}
.cta-section p { color: rgba(255,255,255,.82); max-width: 480px; margin: 0 auto 40px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FLOATING ACTION BUTTONS ===== */
.fab-group {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1500;
}
.fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  transition: transform .2s ease, box-shadow .2s ease, opacity .25s ease;
  cursor: pointer;
}
.fab:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.22); }
.fab-wa {
  background: #25d366;
  color: #fff;
}
.fab-top {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text-2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}
.fab-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ===== FOOTER ===== */
footer {
  background: var(--white);
  padding: 0 1.2% 28px;
  color: rgba(255,255,255,.85);
}
.footer-card {
  background: #0a1a12;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  padding: 56px 56px 56px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-brand img { height: 90px; margin-bottom: 20px; }
.footer-brand a[style] img { height: auto; margin: 0; }
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,.72); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); transition: all var(--t);
}
.social-link:hover { border-color: var(--primary); color: var(--primary); background: rgba(5,182,213,.12); }
.social-link svg { width: 18px; height: 18px; }
.footer-col h4 { font-family: var(--font-h); font-size: .82rem; font-weight: 700; color: #fff; margin-bottom: 20px; letter-spacing: .08em; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.65); transition: color var(--t); }
.footer-col ul li a:hover { color: var(--primary); }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; text-decoration: none; transition: opacity var(--t); }
.footer-contact-item:hover { opacity: .8; }
.footer-contact-item svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: .875rem; color: rgba(255,255,255,.7); }
.footer-meta {
  padding: 20px 4px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-meta p { font-size: .78rem; color: var(--text-2); }
.footer-meta a { color: var(--text-2); transition: color var(--t); }
.footer-meta a:hover { color: var(--primary); }

/* ===== SCROLL REVEAL (AOS complementar) ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* AOS override — evita conflito */
[data-aos].reveal { opacity: 0; transform: translateY(28px); }
[data-aos].aos-animate { opacity: 1 !important; transform: translateY(0) !important; }

/* ===== MOBILE NAV ===== */
.nav-mobile {
  position: fixed; top: 0; right: 0; bottom: 0; width: 300px;
  background: var(--white); box-shadow: var(--s-lg); z-index: 2000;
  transform: translateX(100%); visibility: hidden;
  transition: transform .35s ease, visibility 0s .35s;
  padding: 80px 32px 40px; display: flex; flex-direction: column;
}
.nav-mobile.open { transform: translateX(0); visibility: visible; transition: transform .35s ease, visibility 0s 0s; }
.nav-mobile-links { display: flex; flex-direction: column; gap: 4px; }
.nav-mobile-links a {
  display: block; padding: 14px 0; font-family: var(--font-h); font-size: 1rem; font-weight: 500;
  color: var(--text-2); border-bottom: 1px solid var(--border); transition: color var(--t);
}
.nav-mobile-links a:hover { color: var(--primary); }
.nav-mobile-cta { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.nav-mobile-cta .btn { justify-content: center; }
.nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1999; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.nav-overlay.open { opacity: 1; pointer-events: all; }
.nav-close {
  position: absolute; top: 20px; right: 20px; width: 40px; height: 40px;
  border-radius: 50%; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-2); transition: all var(--t);
}
.nav-close:hover { border-color: var(--primary); color: var(--primary); }

/* ===== ACOMODAÇÕES PAGE ===== */
.page-hero-outer {
  background: var(--white);
  padding: var(--nav-h) 1.2% 24px;
}
.page-hero {
  position: relative;
  width: 100%;
  padding: 80px 0;
  border-radius: var(--r-2xl);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: #0a1a12;
  text-align: center;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: url('../../briefing/Assets/Cafe3.jpg') center 40% / cover no-repeat;
  will-change: transform;
  transform: scale(1.08);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,12,20,.78) 0%, rgba(0,80,120,.4) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 40px 32px;
  width: 100%;
  max-width: 1040px;
}
.page-hero h1 {
  font-family: var(--font-display);
  color: white;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 14px;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
  letter-spacing: -0.01em;
}
.page-hero p { color: rgba(255,255,255,.8); max-width: 520px; margin: 0 auto; font-size: 1.05rem; }
.suite-selector { background: var(--white); padding: 48px 12px 0; }
.suite-tabs {
  display: flex;
  max-width: var(--max-w);
  margin: 0 auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}
.suite-tab {
  flex: 1;
  padding: 20px 16px;
  text-align: center;
  font-family: var(--font-h);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
  transition: background var(--t), color var(--t);
  cursor: pointer;
  border-right: 1px solid var(--border);
}
.suite-tab:last-child { border-right: none; }
.suite-tab:hover { background: #f4f5f6; color: var(--text-2); }
.suite-tab.active { background: var(--primary); color: var(--white); font-weight: 700; }
.suite-tab-icon { display: none; }
.suite-panel { display: none; }
.suite-panel.active { display: block; }
.suite-carousel { position: relative; background: #0a1a12; overflow: hidden; }
.carousel-viewport { overflow: hidden; height: 580px; }
.carousel-track { display: flex; transition: transform .5s cubic-bezier(.25,.46,.45,.94); height: 100%; }
.carousel-slide { min-width: 100%; height: 100%; flex-shrink: 0; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-slide-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #005070, #05b6d5); color: rgba(255,255,255,.4); font-family: var(--font-h); font-size: 1rem; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.25); color: white; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all var(--t); z-index: 10; }
.carousel-btn:hover { background: rgba(255,255,255,.25); }
.carousel-btn-prev { left: 24px; }
.carousel-btn-next { right: 24px; }
.carousel-btn svg { width: 20px; height: 20px; }
.carousel-indicators { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: all var(--t); }
.carousel-dot.active { background: white; width: 24px; border-radius: 4px; }
.suite-detail { padding: 40px 0 80px; background: var(--white); }
.suite-detail-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 72px; align-items: start; }
.suite-detail-info .section-tag { margin-bottom: 8px; }
.suite-detail-info h2 { margin-bottom: 14px; }
.suite-detail-info > p { margin-bottom: 32px; }
.amenities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 36px; }
.amenity-item { display: flex; gap: 10px; align-items: center; padding: 12px; background: var(--bg-soft); border-radius: var(--r-sm); border: 1px solid var(--border); }
.amenity-item svg { color: var(--primary); flex-shrink: 0; width: 18px; height: 18px; }
.amenity-item span { font-size: .85rem; font-family: var(--font-h); font-weight: 500; color: var(--text-2); }
.suite-form-col {
  position: -webkit-sticky;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  align-self: start;
}
.booking-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 36px; box-shadow: var(--s-md); }
.booking-form-card h3 { margin-bottom: 6px; }
.booking-form-card > p { font-size: .9rem; color: var(--text-3); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-family: var(--font-h); font-size: .8rem; font-weight: 600; color: var(--text); margin-bottom: 6px; letter-spacing: .03em; }
.form-input { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--r-sm); font-family: var(--font-b); font-size: .9rem; color: var(--text); background: var(--white); transition: border-color var(--t), box-shadow var(--t); outline: none; appearance: none; }
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(5,182,213,.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { width: 100%; padding: 15px; font-size: .95rem; justify-content: center; border-radius: var(--r-md); }
.suite-highlight { display: inline-flex; align-items: center; gap: 6px; background: var(--accent); color: var(--text); font-family: var(--font-h); font-size: .75rem; font-weight: 700; letter-spacing: .04em; padding: 5px 12px; border-radius: var(--r-full); margin-bottom: 16px; }
.suite-price-note { display: flex; align-items: center; gap: 8px; background: var(--primary-light); border: 1px solid var(--primary-mid); border-radius: var(--r-sm); padding: 12px 16px; margin-bottom: 28px; font-size: .85rem; color: var(--primary-darker); font-family: var(--font-h); font-weight: 500; }
.suite-price-note svg { color: var(--primary); flex-shrink: 0; }
.suite-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Suite 3D tour */
.suite-tour { margin-bottom: 32px; }
.suite-tour-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; height: 220px;
  border: 2px dashed var(--border);
  border-radius: var(--r-lg);
  background: var(--bg-soft);
  color: var(--text-3);
  text-align: center;
  cursor: default;
}
.suite-tour-placeholder svg { color: var(--primary); opacity: .7; }
.suite-tour-placeholder strong { font-family: var(--font-h); font-size: .9rem; font-weight: 600; color: var(--text-2); }
.suite-tour-placeholder small { font-size: .78rem; color: var(--text-3); }
.suite-tour iframe {
  width: 100%; height: 220px;
  border: none; border-radius: var(--r-lg);
  display: block;
}

/* Form dual buttons */
.form-btn-row { display: flex; gap: 10px; flex-wrap: wrap; }
.form-btn-row .btn { flex: 1; justify-content: center; padding: 14px 12px; font-size: .875rem; border-radius: var(--r-md); min-width: 120px; }

/* Thin divider between suite content and FAQ */
.suite-divider-wrap { background: var(--white); }
.suite-divider { height: 1px; background: var(--border); }

/* ===== SUITE IMAGE CAROUSEL ===== */
.suite-img-carousel {
  position: relative;
  height: 300px;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 24px;
}
.suite-img-carousel-viewport { overflow: hidden; height: 100%; }
.suite-img-carousel-track {
  display: flex; height: 100%;
  transition: transform .5s ease;
}
.suite-img-carousel-slide { flex: 0 0 100%; height: 100%; }
.suite-img-carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.suite-img-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.85); border: none; border-radius: 50%;
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2; transition: background .2s;
}
.suite-img-arrow:hover { background: #fff; }
.suite-img-arrow svg { width: 15px; height: 15px; color: var(--text); }
.suite-img-prev { left: 10px; }
.suite-img-next { right: 10px; }
.suite-img-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
}
.suite-img-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.5); cursor: pointer; transition: all var(--t);
}
.suite-img-dot.active { background: #fff; width: 18px; border-radius: 3px; }

.suite-faq { background: var(--white); padding: 80px 0; }

/* Suite CTA outer wrapper */
.suite-cta-outer { background: var(--white); padding: 48px 1.2% 0; }
.suite-cta { background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 100%); padding: 80px 0; text-align: center; border-radius: var(--r-xl) var(--r-xl) 0 0; }
.suite-cta h2 { color: white; margin-bottom: 12px; }
.suite-cta p { color: rgba(255,255,255,.82); max-width: 480px; margin: 0 auto 36px; }
.suite-cta .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-outer { padding: var(--nav-h) 1.5% 0; }
  .page-hero-outer { padding: var(--nav-h) 1.5% 24px; }
  .suite-cta-outer { padding: 40px 1.5% 0; }
  .suite-card-h { grid-template-columns: 280px 1fr; height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-card { padding: 52px 40px 44px; border-radius: 0 0 var(--r-xl) var(--r-xl); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 360px; }
  .gallery-item:nth-child(1) { grid-column:1; grid-row:1; }
  .gallery-item:nth-child(2) { grid-column:2; grid-row:1; }
  .about-cols { gap: 48px; }
  .float-card-1 { top: 20px; left: -10px; }
  .float-card-2 { top: 50%; right: -10px; transform: translateY(-50%); }
  .float-card-3 { bottom: 20px; left: -10px; }
  .suite-detail-grid { grid-template-columns: 1.1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .suite-detail-grid { grid-template-columns: 1fr; }
  .suite-form-col { position: static; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  /* Hero */
  .hero-outer { padding: var(--nav-h) 10px 28px; }
  .hero { height: 80vh; min-height: 440px; border-radius: var(--r-xl); }
  .hero-content { padding: 32px 20px; }

  /* Navbar logo — limita largura para não empurrar o hambúrguer */
  .nav-logo img { height: 54px; max-width: 190px; }

  /* Hero badges — versão compacta */
  .badge-desktop { display: none; }
  .badge-mobile { display: inline; }
  .hero-badges { flex-wrap: nowrap; }

  /* Hero actions — botões mesma largura, um abaixo do outro */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .page-hero-outer { padding: var(--nav-h) 10px 24px; }
  .page-hero { border-radius: var(--r-xl); }
  .page-hero-content { padding: 32px 20px; }

  /* Suítes — carrossel horizontal */
  .suites-list {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 20px;
    scrollbar-width: none;
  }
  .suites-list::-webkit-scrollbar { display: none; }
  .suite-card-h {
    grid-template-columns: 1fr;
    height: auto;
    min-width: 82%;
    max-width: 82%;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  .suite-card-h-img { height: 200px; }
  .suite-card-h-body { padding: 18px 20px 18px; }
  .suite-card-h-top p { -webkit-line-clamp: 3; }

  .two-col, .two-col.reverse { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse > *:first-child, .two-col.reverse > *:last-child { order: unset; }
  .breakfast-carousel { aspect-ratio: 4/3; }

  /* Sobre Nós — vídeo acima do texto */
  .about-cols { grid-template-columns: 1fr; gap: 48px; }
  .about-video-wrap { order: -1; }

  .about-stats { flex-direction: column; border-radius: var(--r-md); }
  .stat-card { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-card:last-child { border-bottom: none; }
  .about-video { height: 340px; }
  .float-card { padding: 10px 12px; min-width: 120px; }
  .float-card-number { font-size: 1.2rem; }
  .float-card-1 { top: 16px; left: 10px; }
  .float-card-2 { top: 50%; right: 10px; transform: translateY(-50%); }
  .float-card-3 { bottom: 16px; left: 10px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 280px 280px; }
  .gallery-item:nth-child(1) { grid-column: 1; grid-row: 1; }
  .gallery-item:nth-child(2) { grid-column: 1; grid-row: 2; }

  /* Depoimentos — setas sobrepostas, cards com largura total */
  .testimonials-wrap { position: relative; }
  .t-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
  }
  .t-prev { left: -8px; }
  .t-next { right: -8px; }

  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .location-media { min-height: 480px; }
  .location-360 { height: 200px; }
  .faq-list { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-card { padding: 40px 28px 36px; border-radius: 0 0 var(--r-lg) var(--r-lg); }

  /* CTA — botões mesma largura, um abaixo do outro */
  .cta-outer { padding: 32px 10px 0; }
  .cta-section { border-radius: var(--r-lg) var(--r-lg) 0 0; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  .suite-cta-outer { padding: 32px 10px 0; }
  footer { padding: 0 10px 28px; }
  .suite-cta { border-radius: var(--r-lg) var(--r-lg) 0 0; }
  .suite-cta .cta-actions { flex-direction: column; align-items: stretch; }
  .suite-cta .cta-actions .btn { width: 100%; justify-content: center; }
  .footer-meta { flex-direction: column; text-align: center; gap: 6px; }
  .suite-selector { padding: 32px 12px 0; }
  .suite-tabs { overflow-x: auto; border-radius: var(--r-md); }
  .suite-tab { min-width: 100px; padding: 16px 12px; }
  .suite-detail-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .carousel-viewport { height: 320px; }
}

@media (max-width: 480px) {
  .hero-outer { padding: var(--nav-h) 8px 28px; }
  .hero { border-radius: var(--r-lg); }
  .page-hero-outer { padding: var(--nav-h) 8px 24px; }
  .page-hero { border-radius: var(--r-lg); }
  .location-ctas { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  [data-aos] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-bg { transform: scale(1.08) !important; }
  .page-hero-bg { transform: scale(1.08) !important; }
}
