/* =============================================
   LA TORRE HOTEL — Premium Design System
   Inspired by: Four Seasons, Aman, 1Hotels
   ============================================= */

:root {
  --dark:       #0A1509;
  --dark-2:     #131e12;
  --dark-3:     #1e2e1d;
  --green:      #2a4a29;
  --gold:       #C9A96E;
  --gold-2:     #dfc08a;
  --gold-3:     #a8894e;
  --cream:      #FAF6EE;
  --cream-2:    #F0EBE0;
  --white:      #FFFFFF;
  --text:       #1A1A1A;
  --text-2:     #4A4A4A;
  --text-3:     #8A8A8A;
  --border:     #E8E2D8;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', system-ui, -apple-system, sans-serif;

  --nav-h:  80px;
  --ease:   cubic-bezier(.25,.46,.45,.94);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; font-size: 18px; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { font-family: var(--sans); color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; line-height: 1.75; }
img { display: block; width: 100%; height: 100%; object-fit: cover; -webkit-user-drag: none; }
a { text-decoration: none; color: inherit; touch-action: manipulation; }
ul { list-style: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }

/* =============================================
   PRELOADER
   ============================================= */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
.preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 10px;
  color: var(--gold);
  margin-bottom: 28px;
}
.preloader-bar {
  width: 160px; height: 1px;
  background: rgba(201,169,110,.2);
  margin: 0 auto;
  overflow: hidden;
}
.preloader-fill {
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: fillBar 1.2s var(--ease) forwards;
}
@keyframes fillBar { to { width: 100%; } }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 2px;
  transition: all .3s var(--ease);
  cursor: pointer; border: none;
}
.btn-gold {
  background: var(--gold); color: var(--dark);
}
.btn-gold:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,.35); }

.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-outline-dark {
  background: transparent; color: var(--dark);
  border: 1px solid var(--dark);
  margin-top: 8px;
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }

.btn-whatsapp-large {
  background: #25D366; color: var(--white);
  font-size: 14px; padding: 18px 44px;
  border-radius: 2px; gap: 12px;
}
.btn-whatsapp-large:hover { background: #1ab954; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,.4); }

/* =============================================
   TYPOGRAPHY
   ============================================= */
.display-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  letter-spacing: -.5px;
}
.display-title em { font-style: italic; color: var(--gold-3); }
.display-title--light { color: var(--white); }
.display-title--light em { color: var(--gold-2); }

.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold-3);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  display: block; width: 32px; height: 1px;
  background: var(--gold-3);
  flex-shrink: 0;
}
.eyebrow--light { color: var(--gold-2); }
.eyebrow--light::before { background: var(--gold-2); }

/* REVEAL ANIMATIONS */
[data-reveal] { opacity: 0; transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
[data-reveal="up"] { transform: translateY(40px); }
[data-reveal="left"] { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal].revealed { opacity: 1; transform: none; transition-delay: var(--delay, 0s); }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,21,9,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,169,110,.15);
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.navbar.scrolled {
  background: rgba(10,21,9,.99);
  box-shadow: 0 1px 0 rgba(201,169,110,.2);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); padding: 0 48px;
  max-width: 1440px; margin: 0 auto;
}
.nav-logo { display: flex; flex-direction: column; gap: 2px; }
.logo-name {
  font-family: var(--serif); font-size: 18px; font-weight: 400;
  letter-spacing: 6px; color: var(--white);
}
.logo-tag {
  font-size: 9px; font-weight: 400; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
}
.nav-links { display: flex; gap: 40px; }
.nav-links a {
  font-size: 12px; font-weight: 400; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.7);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-reserva {
  font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--dark);
  background: var(--gold); padding: 10px 24px;
  border-radius: 1px;
  transition: all .25s var(--ease);
}
.nav-reserva:hover { background: var(--gold-2); transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 7px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--white); transition: all .3s;
}
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--dark-2); padding: 20px 48px 32px;
  border-top: 1px solid rgba(201,169,110,.15);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,.7); padding: 14px 0;
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-cta {
  margin-top: 20px; background: #25D366 !important;
  color: var(--white) !important; text-align: center;
  padding: 16px !important; border: none !important;
  letter-spacing: 1.5px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  will-change: transform;
  animation: heroScale 12s var(--ease) forwards;
}
@keyframes heroScale { from { transform: scale(1.08); } to { transform: scale(1); } }

.hero-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,21,9,.92) 0%,
    rgba(10,21,9,.55) 50%,
    rgba(10,21,9,.30) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; padding: 0 80px 80px;
  animation: heroFadeUp .9s .3s var(--ease-out) both;
}
@keyframes heroFadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:none; } }
.hero-text { max-width: 600px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-size: 11px; font-weight: 400; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
}
.hero-eyebrow .line { display: block; width: 40px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: var(--serif); font-size: clamp(48px, 7vw, 96px);
  font-weight: 300; line-height: 1.02; letter-spacing: -1px;
  color: var(--white); margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--gold-2); }
.hero-sub {
  font-size: 16px; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,.8); max-width: 420px; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll-cta {
  position: absolute; right: 60px; bottom: 80px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.5); writing-mode: vertical-rl;
  transition: color .2s;
  animation: heroFadeUp 1s .7s var(--ease-out) both;
}
.hero-scroll-cta:hover { color: var(--gold); }
.hero-scroll-cta svg { transform: rotate(90deg); animation: arrowBounce 2s infinite; }
@keyframes arrowBounce { 0%,100%{transform:rotate(90deg) translateX(0)} 50%{transform:rotate(90deg) translateX(4px)} }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--dark);
  border-top: 1px solid rgba(201,169,110,.2);
  border-bottom: 1px solid rgba(201,169,110,.2);
}
.stats-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: stretch;
}
.stat {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  padding: 36px 20px; gap: 8px;
}
.stat-num {
  font-family: var(--serif); font-size: 48px; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: 11px; font-weight: 400; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.65);
  text-align: center;
}
.stat-divider { width: 1px; background: rgba(201,169,110,.15); align-self: stretch; margin: 20px 0; }

/* =============================================
   SOBRE
   ============================================= */
.sobre {
  padding: 120px 0;
  overflow: hidden;
}
.sobre-grid {
  max-width: 1440px; margin: 0 auto; padding: 0 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
}
.sobre-visual { position: relative; }
.sobre-photo-main {
  width: 100%; height: 560px; overflow: hidden;
  border-radius: 2px; box-shadow: 0 32px 80px rgba(10,21,9,.2);
}
.sobre-photo-main img { transition: transform .8s var(--ease); }
.sobre-photo-main:hover img { transform: scale(1.04); }
.sobre-photo-float {
  position: absolute; bottom: -48px; right: -48px;
  width: 240px; height: 180px;
  overflow: hidden; border-radius: 2px;
  box-shadow: 0 16px 48px rgba(10,21,9,.25);
  border: 4px solid var(--white);
}
.sobre-copy p {
  font-size: 17px; line-height: 1.85; color: var(--text-2);
  margin-bottom: 20px;
}
.sobre-pills {
  margin-top: 40px; display: flex; flex-direction: column; gap: 12px;
}
.pill {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text-2); font-weight: 400;
}
.pill svg { width: 16px; height: 16px; color: var(--gold-3); flex-shrink: 0; }

/* =============================================
   QUARTOS — TAB LAYOUT
   ============================================= */
.quartos {
  padding: 120px 0 0;
  background: var(--cream);
}
.section-head { margin-bottom: 64px; }
.section-head p {
  font-size: 17px; color: var(--text-2); max-width: 480px;
  margin-top: 16px; line-height: 1.75;
}
.section-head--center { text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::before { display: none; }
.section-head--center p { margin: 16px auto 0; }

/* TAB NAV */
.qtabs-nav {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
  padding: 0 40px;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}
.qtabs-nav::-webkit-scrollbar { display: none; }

.qtab {
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 3px;
  padding: 24px 36px 20px;
  background: none; border: none; cursor: pointer;
  text-align: left; flex-shrink: 0;
  transition: background .25s;
}
.qtab:hover { background: rgba(201,169,110,.06); }

.qtab-type {
  font-size: 10px; font-weight: 500; letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-3);
  transition: color .25s;
}
.qtab-name {
  font-family: var(--serif); font-size: 22px; font-weight: 300;
  color: var(--text-2);
  transition: color .25s;
}
.qtab-badge {
  position: absolute; top: 18px; right: 12px;
  font-size: 9px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gold); color: var(--dark);
  padding: 3px 8px; border-radius: 1px;
}

/* INDICATOR — linha dourada na base da aba ativa */
.qtab-indicator {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}

/* ABA ATIVA */
.qtab.active .qtab-indicator { transform: scaleX(1); }
.qtab.active .qtab-type { color: var(--gold-3); }
.qtab.active .qtab-name { color: var(--dark); }
.qtab--premium.active .qtab-name { color: var(--gold-3); }

/* PAINÉIS */
.qpanels { position: relative; }

.qpanel {
  display: none;
  grid-template-columns: 1.1fr 1fr;
  min-height: 580px;
  animation: panelIn .45s var(--ease-out) both;
}
.qpanel.active { display: grid; }

@keyframes panelIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: none; }
}

.qpanel-photo {
  position: relative; overflow: hidden;
  background: var(--dark-3);
  min-height: 480px;
}
.qpanel-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.qpanel.active .qpanel-photo img { transform: scale(1.02); }
.qpanel-photo-badge {
  position: absolute; top: 24px; left: 24px;
  background: var(--gold); color: var(--dark);
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; padding: 7px 16px;
}

.qpanel-info {
  background: var(--white);
  padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.qpanel-info--premium { background: var(--dark); }

.qpanel-badge {
  display: inline-block;
  font-size: 10px; font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold-3);
  margin-bottom: 12px;
}
.qpanel-badge--gold { color: var(--gold); }

.qpanel-title {
  font-family: var(--serif); font-size: 52px; font-weight: 300;
  color: var(--dark); line-height: 1; margin-bottom: 24px;
}
.qpanel-info--premium .qpanel-title { color: var(--white); }

.qpanel-desc {
  font-size: 16px; line-height: 1.85; color: var(--text-2);
  margin-bottom: 36px; max-width: 360px;
}
.qpanel-info--premium .qpanel-desc { color: rgba(255,255,255,.6); }

.qpanel-amenities {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 48px;
}
.qpanel-amenities li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text-2); font-weight: 400;
}
.qpanel-info--premium .qpanel-amenities li { color: rgba(255,255,255,.65); }
.qpanel-amenities svg {
  width: 16px; height: 16px; flex-shrink: 0;
  color: var(--gold-3);
}

.qpanel-cta {
  display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start;
  font-size: 12px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--dark);
  border-bottom: 1px solid var(--dark);
  padding-bottom: 4px;
  transition: gap .25s, color .25s, border-color .25s;
}
.qpanel-cta:hover { gap: 16px; color: var(--gold-3); border-color: var(--gold-3); }
.qpanel-cta--gold {
  color: var(--gold);
  border-color: var(--gold);
}
.qpanel-cta--gold:hover { color: var(--gold-2); border-color: var(--gold-2); }

/* QTABS HINT */
.qtabs-hint {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 28px 40px 56px;
  font-size: 11px; font-weight: 400; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--text-3);
  background: var(--cream);
}

/* INNER PAGE NAVBAR (room pages — always dark) */
.inner-page .navbar {
  background: rgba(10,21,9,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,169,110,.15);
}

/* =============================================
   GALLERY STRIP
   ============================================= */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 280px;
  gap: 3px;
}
.gallery-strip-item { overflow: hidden; background: var(--dark-3); }
.gallery-strip-item img { transition: transform .6s var(--ease); }
.gallery-strip-item:hover img { transform: scale(1.08); }

/* =============================================
   ESTRUTURA
   ============================================= */
.estrutura {
  padding: 120px 0;
  background: var(--dark);
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,169,110,.1);
  border: 1px solid rgba(201,169,110,.1);
  margin-top: 64px;
}
.amenity {
  background: var(--dark);
  padding: 48px 32px;
  transition: background .3s;
}
.amenity:hover { background: var(--dark-3); }
.amenity-ico {
  width: 40px; height: 40px;
  color: var(--gold); margin-bottom: 20px;
}
.amenity-ico svg { width: 100%; height: 100%; }
.amenity h4 {
  font-size: 16px; font-weight: 500; color: var(--white);
  margin-bottom: 10px; letter-spacing: .3px;
}
.amenity p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.65; }

/* =============================================
   LOCALIZAÇÃO
   ============================================= */
.localizacao { background: var(--cream); }
.localizacao-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; min-height: 600px;
}
.localizacao-copy {
  padding: 100px 80px; display: flex; flex-direction: column; justify-content: center;
}
.localizacao-copy p {
  font-size: 17px; color: var(--text-2); line-height: 1.85;
  margin: 24px 0 36px;
}
.loc-infos { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.loc-info {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 14px; color: var(--text-2);
}
.loc-info svg { color: var(--gold-3); flex-shrink: 0; margin-top: 2px; }
.localizacao-map { overflow: hidden; min-height: 500px; }
.localizacao-map iframe { width: 100%; height: 100%; min-height: 500px; display: block; }

/* =============================================
   CTA FINAL
   ============================================= */
.cta-final {
  position: relative; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { filter: brightness(.55) saturate(.8); }
.cta-vignette {
  position: absolute; inset: 0;
  background: rgba(10,21,9,.5);
}
.cta-content {
  position: relative; z-index: 2;
  text-align: center; padding: 80px 40px;
  max-width: 680px;
}
.cta-content .display-title { margin-bottom: 40px; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--dark-2); }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px; max-width: 1240px; margin: 0 auto;
  padding: 80px 40px 64px;
  border-bottom: 1px solid rgba(201,169,110,.1);
}
.footer-brand .logo-name { font-size: 20px; margin-bottom: 4px; }
.footer-brand p {
  font-size: 14px; color: rgba(255,255,255,.58);
  max-width: 260px; line-height: 1.75; margin-top: 16px;
}
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-nav h5, .footer-contact h5 {
  font-size: 10px; font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.footer-nav a, .footer-contact a {
  font-size: 14px; color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-contact p { font-size: 14px; color: rgba(255,255,255,.58); line-height: 1.75; }
.footer-bottom {
  text-align: center; padding: 24px 40px;
  font-size: 12px; color: rgba(255,255,255,.35);
  letter-spacing: .5px;
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.wa-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 99;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 36px rgba(37,211,102,.55); }
.wa-pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* =============================================
   HOME — SECTION CARDS GRID
   ============================================= */
.home-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.home-section-card {
  position: relative; overflow: hidden;
  min-height: 400px;
  display: flex; align-items: flex-end;
  text-decoration: none;
  background: var(--dark-3);
}
.home-section-card-bg { position: absolute; inset: 0; }
.home-section-card-bg img { transition: transform 1s var(--ease); }
.home-section-card:hover .home-section-card-bg img { transform: scale(1.07); }
.home-section-card-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(10,21,9,.90) 0%,
    rgba(10,21,9,.25) 55%,
    rgba(10,21,9,.08) 100%);
  transition: background .45s var(--ease);
}
.home-section-card:hover .home-section-card-vignette {
  background: linear-gradient(to top,
    rgba(10,21,9,.96) 0%,
    rgba(10,21,9,.45) 55%,
    rgba(10,21,9,.12) 100%);
}
.home-section-card-body {
  position: relative; z-index: 2;
  padding: 44px 48px;
}
.home-section-card-eyebrow {
  display: block; font-size: 10px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px;
}
.home-section-card-title {
  font-family: var(--serif); font-size: clamp(28px, 3vw, 46px);
  font-weight: 300; color: var(--white); line-height: 1.1;
  margin-bottom: 22px;
}
.home-section-card-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid rgba(201,169,110,.4);
  padding-bottom: 3px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
}
.home-section-card:hover .home-section-card-cta { opacity: 1; transform: none; }

/* =============================================
   QUARTOS OVERVIEW — ROOM CARDS
   ============================================= */
.rooms-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.room-ov-card {
  position: relative; overflow: hidden;
  min-height: 460px;
  display: flex; align-items: flex-end;
  text-decoration: none;
  background: var(--dark-3);
}
.room-ov-card--wide { grid-column: 1 / -1; min-height: 500px; }
.room-ov-card-bg { position: absolute; inset: 0; }
.room-ov-card-bg img { transition: transform 1s var(--ease); }
.room-ov-card:hover .room-ov-card-bg img { transform: scale(1.06); }
.room-ov-card-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(10,21,9,.92) 0%,
    rgba(10,21,9,.2) 60%,
    rgba(10,21,9,.05) 100%);
}
.room-ov-card-body {
  position: relative; z-index: 2;
  padding: 36px 44px;
  width: 100%;
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 24px;
}
.room-ov-card-info { flex: 1; }
.room-ov-card-type {
  display: block; font-size: 10px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 6px;
}
.room-ov-card-name {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300; color: var(--white); line-height: 1.05;
}
.room-ov-card--premium .room-ov-card-name { color: var(--gold-2); }
.room-ov-card-btn {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--dark);
  background: var(--gold); padding: 14px 28px;
  border-radius: 2px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out), background .2s;
}
.room-ov-card:hover .room-ov-card-btn { opacity: 1; transform: none; }
.room-ov-card-btn:hover { background: var(--gold-2) !important; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-grid { gap: 60px; padding: 0 48px; }
  .sobre-photo-float { right: -24px; }
}

@media (max-width: 960px) {
  .home-sections { grid-template-columns: 1fr; }
  .home-section-card { min-height: 300px; }
  .rooms-overview-grid { grid-template-columns: 1fr; }
  .room-ov-card--wide { grid-column: 1; }
  .room-ov-card-btn { display: none; }
  .nav-links, .nav-reserva { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 40px 60px; }
  .hero-scroll-cta { right: 32px; bottom: 60px; }
  .sobre-grid { grid-template-columns: 1fr; padding: 0 40px; gap: 48px; }
  .sobre-photo-float { right: 0; bottom: -32px; width: 180px; height: 140px; }
  .localizacao-grid { grid-template-columns: 1fr; }
  .localizacao-map { min-height: 360px; }
  .localizacao-map iframe { min-height: 360px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; padding: 60px 40px 48px; }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); height: 200px; }
  .gallery-strip-item:nth-child(4), .gallery-strip-item:nth-child(5) { display: none; }
  .stats-inner { flex-wrap: wrap; }
  .stat { flex: 1 1 40%; }
  .stat-divider { display: none; }
}

@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  .home-section-card-body { padding: 28px; }
  .room-ov-card-body { padding: 24px 28px; flex-direction: column; align-items: flex-start; gap: 0; }
  .nav-inner { padding: 0 24px; }
  .nav-mobile { padding: 16px 24px 28px; }
  .hero-content { padding: 0 24px 48px; }
  .hero-title { font-size: 48px; }
  .hero-scroll-cta { display: none; }
  .sobre-grid { padding: 0 24px; }
  .sobre-photo-main { height: 380px; }
  .sobre-photo-float { display: none; }
  .quartos { padding: 80px 0 0; }
  .qtabs-nav { padding: 0 24px; }
  .qtab { padding: 18px 20px 14px; }
  .qtab-name { font-size: 18px; }
  .qpanel.active { grid-template-columns: 1fr; }
  .qpanel-photo { min-height: 300px; }
  .qpanel-info { padding: 40px 24px; }
  .qpanel-title { font-size: 40px; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip-item:nth-child(3) { display: none; }
  .amenities-grid { grid-template-columns: 1fr; }
  .localizacao-copy { padding: 60px 24px; }
  .container { padding: 0 24px; }
  .stats-inner { padding: 0 24px; }
  .stats-bar .stat { padding: 24px 12px; }
  .stat-num { font-size: 36px; }
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .footer-top { padding: 48px 24px 40px; }
  .footer-bottom { padding: 20px 24px; }
  .cta-content { padding: 60px 24px; }
  /* Home sections mobile */
  .home-section-card { min-height: 260px; }
  .home-section-card-body { padding: 24px 28px; }
  .home-section-card-cta { opacity: 1; transform: none; }
  /* Room cards mobile */
  .room-ov-card { min-height: 260px; }
  .room-ov-card--wide { min-height: 300px; }
  .room-ov-card-body { padding: 20px 24px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .room-ov-card-btn { opacity: 1; transform: none; padding: 10px 20px; font-size: 10px; }
  /* Tab nav mobile fix */
  .qtab { padding: 16px 18px 12px; }
  .qtab-name { font-size: 17px; }
  /* Room detail mobile */
  .qpanel.active { grid-template-columns: 1fr; }
  .qpanel-photo { min-height: 280px; }
  .qpanel-info { padding: 36px 24px; }
  .qpanel-title { font-size: 38px; }
  /* Sobre mobile */
  .sobre-grid { padding: 0 24px; }
  .sobre-photo-main { height: 320px; }
  .sobre-photo-float { display: none; }
  /* Estrutura gallery fix */
  .gallery-strip--dual { grid-template-columns: 1fr !important; height: auto !important; }
  .gallery-strip--dual .gallery-strip-item { height: 240px; grid-column: auto !important; }
}

/* =============================================
   TABLET (768px)
   ============================================= */
@media (max-width: 768px) {
  .home-sections { grid-template-columns: 1fr; }
  .home-section-card { min-height: 300px; }
  .rooms-overview-grid { grid-template-columns: 1fr; }
  .room-ov-card--wide { grid-column: 1; min-height: 340px; }
  .qpanel.active { grid-template-columns: 1fr; }
  .qpanel-photo { min-height: 340px; }
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; padding: 0 40px; }
  .sobre-photo-float { right: 0; }
  .localizacao-grid { grid-template-columns: 1fr; }
  .localizacao-map { min-height: 340px; }
  .localizacao-map iframe { min-height: 340px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

/* =============================================
   TOUCH DEVICE (no-hover) FIXES
   ============================================= */
@media (hover: none) {
  .home-section-card-cta { opacity: 1; transform: none; }
  .room-ov-card-btn { opacity: 1; transform: none; display: inline-flex; }
  .home-section-card-bg img,
  .room-ov-card-bg img,
  .gallery-strip-item img,
  .sobre-photo-main img { transform: none !important; }
}

/* =============================================
   iOS SAFE AREA (notch / Dynamic Island)
   ============================================= */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .wa-float {
    bottom: max(20px, calc(12px + env(safe-area-inset-bottom)));
  }
  .footer-bottom {
    padding-bottom: max(20px, calc(12px + env(safe-area-inset-bottom)));
  }
  .nav-mobile {
    padding-bottom: max(28px, calc(16px + env(safe-area-inset-bottom)));
  }
}
