/* ==========================================================================
   ACQUA LINDA THERMAS RESORT - ESTILOS PRINCIPAIS
   Design Inspirado em thermasacqualinda.com.br
   ConteÃƒÂºdo e Dados Preservados de aqualindathermas.com.br
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700;900&family=Inter:wght@300;400;500;600;700;800&family=Onest:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@600;700;800;900&display=swap');

:root {
  /* Paleta Principal */
  --primary: #0088cc;
  --primary-deep: #0c3c83;
  --primary-dark: #00549a;
  --primary-light: #E4F0FF;
  --primary-cyan: #00C4CC;
  --primary-sky: #a9e8ff;
  
  /* Cores de AÃƒÂ§ÃƒÂ£o & Destaque */
  --accent-red: #e7344c;
  --accent-red-hover: #c91831;
  --accent-green: #009645;
  --accent-green-hover: #007a37;
  --whatsapp: #25D366;
  --whatsapp-hover: #1eb856;
  
  /* Gradiente Dourado / Luxo */
  --gold-start: #dfba73;
  --gold-mid: #ffd782;
  --gold-end: #b88b39;
  
  /* Tons Neutros & Backgrounds */
  --bg-dark: #07152b;
  --bg-surface: #0f2444;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-hover: rgba(255, 255, 255, 0.1);
  --bg-light: #f8fafc;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --border-light: rgba(255, 255, 255, 0.15);
  --border-dark: rgba(15, 23, 42, 0.1);

  /* Sombras & TransiÃƒÂ§ÃƒÂµes */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.14);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.22);
  --shadow-gold: 0 8px 25px rgba(223, 186, 115, 0.35);
  --shadow-red: 0 8px 25px rgba(231, 52, 76, 0.35);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & ConfiguraÃƒÂ§ÃƒÂµes Globais */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Onest', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
  touch-action: manipulation;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  touch-action: manipulation;
}

ul, ol {
  list-style: none;
}

/* UtilitÃƒÂ¡rios de Layout */
.container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 1536px) {
  .container {
    max-width: 1440px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 340px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.section-py {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-width: 992px) {
  .section-py {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .section-py {
    padding-top: 45px;
    padding-bottom: 45px;
  }
}

@media (max-width: 480px) {
  .section-py {
    padding-top: 38px;
    padding-bottom: 38px;
  }
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Tipografia Especial */
.font-cinzel { font-family: 'Cinzel', Georgia, serif; }
.font-playfair { font-family: 'Playfair Display', Georgia, serif; }

.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-mid) 50%, var(--gold-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

.text-gradient-blue {
  background: linear-gradient(135deg, #00C4CC 0%, #0088cc 50%, #0c3c83 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

.heading-section {
  font-size: clamp(1.6rem, 1.2rem + 2vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  word-break: break-word;
}

.subheading-section {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: clamp(0.75rem, 0.7rem + 0.3vw, 0.875rem);
  margin-bottom: 0.75rem;
  display: block;
}

.section-desc {
  color: var(--text-muted);
  font-size: clamp(0.92rem, 0.88rem + 0.3vw, 1.15rem);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Glassmorphism & Hover Lift */
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.glass-card-light {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.hover-lift {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

@media (hover: hover) {
  .hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
  }
}

/* ==========================================================================
   HEADER MODERNO COM FORMATO EM ONDA (INSPIRAÃƒâ€¡ÃƒÆ’O DA REFERÃƒÅ NCIA)
   ========================================================================== */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.4s ease, background 0.3s ease, box-shadow 0.3s ease;
}

header.site-header.header-scrolled {
  background: rgba(12, 60, 131, 0.96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  gap: 12px;
}

/* BotÃƒÂ£o Menu Explore */
.btn-menu-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  flex-shrink: 0;
}

.btn-menu-trigger:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
  transform: scale(1.03);
}

.hamburger-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 20px;
}

.hamburger-bars span {
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 2px;
}

/* Header Logo */
.header-logo-link {
  display: flex;
  align-items: center;
  height: 52px;
  flex-shrink: 0;
}

.header-logo-img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

/* Header Right Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.btn-header-reserva {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-red);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: var(--shadow-red);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-header-reserva:hover {
  background: var(--accent-red-hover);
  transform: translateY(-2px);
  filter: brightness(1.1);
}

@media (max-width: 992px) {
  .header-inner {
    padding: 12px 20px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 10px 16px;
  }
  .btn-menu-trigger span.menu-label {
    display: none;
  }
  .btn-menu-trigger {
    padding: 8px 12px;
    gap: 0;
  }
  .header-logo-img {
    height: 38px;
  }
  .btn-header-reserva {
    padding: 8px 16px;
    font-size: 0.85rem;
    gap: 6px;
  }
}

@media (max-width: 420px) {
  .header-inner {
    padding: 8px 12px;
    gap: 8px;
  }
  .header-logo-img {
    height: 32px;
  }
  .btn-header-reserva {
    padding: 7px 12px;
    font-size: 0.78rem;
  }
  .btn-header-reserva svg {
    width: 15px;
    height: 15px;
  }
}

/* ==========================================================================
   HERO SECTION IMPACTANTE
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 80px;
  background-color: var(--bg-dark);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s infinite alternate ease-in-out;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 21, 43, 0.7) 0%,
    rgba(12, 60, 131, 0.55) 50%,
    rgba(7, 21, 43, 0.95) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
  padding: 0 10px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border-radius: var(--radius-full);
  background: rgba(223, 186, 115, 0.15);
  border: 1px solid rgba(223, 186, 115, 0.4);
  color: var(--gold-mid);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(1.85rem, 5vw + 1rem, 4.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  text-wrap: balance;
  word-break: break-word;
}

.hero-description {
  font-size: clamp(0.95rem, 2vw + 0.4rem, 1.25rem);
  color: #E2E8F0;
  max-width: 820px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .hero-badge {
    padding: 6px 16px;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
  }
  .hero-title {
    margin-bottom: 16px;
  }
  .hero-description {
    margin-bottom: 28px;
  }
  .hero-ctas {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding-top: 85px;
    padding-bottom: 40px;
  }
  .hero-badge {
    padding: 5px 12px;
    font-size: 0.72rem;
    letter-spacing: 1px;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .hero-ctas .buttonChevron {
    width: 100%;
  }
}

/* ==========================================================================
   SOBRE O COMPLEXO & CARDS DE DESTAQUE
   ========================================================================== */
.section-sobre {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.sobre-box {
  background: linear-gradient(135deg, #f0f7ff 0%, #e2efff 100%);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 50px) clamp(16px, 4vw, 40px);
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.sobre-text {
  font-size: clamp(0.95rem, 1.5vw + 0.4rem, 1.15rem);
  line-height: 1.8;
  color: #1e3a8a;
  max-width: 1000px;
  margin: 0 auto;
  font-weight: 500;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.stat-card {
  background: #ffffff;
  padding: clamp(16px, 3vw, 24px);
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: clamp(1.8rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 900;
  color: var(--primary-deep);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: clamp(0.78rem, 1.5vw + 0.3rem, 0.95rem);
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.35;
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 28px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    gap: 10px;
    margin-top: 22px;
  }
  .stat-card {
    padding: 14px 10px;
    border-radius: 12px;
  }
}

/* ==========================================================================
   SEÃƒâ€¡ÃƒÆ’O DE ATRAÃƒâ€¡Ãƒâ€¢ES INTERATIVAS (ACCORDION TABS)
   ========================================================================== */
.section-atracoes {
  background: #f8fafc;
  position: relative;
}

.atracoes-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 28px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: clamp(0.85rem, 1.5vw + 0.4rem, 1rem);
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  touch-action: manipulation;
}

.tab-btn[data-tab="familia"] { background-color: #a863a4; }
.tab-btn[data-tab="moderadas"] { background-color: #00549a; }
.tab-btn[data-tab="radicais"] { background-color: #e13e53; }

.tab-btn:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
}

.tab-btn.active {
  outline: 4px solid #ffffff;
  outline-offset: -2px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transform: scale(1.05);
}

/* Container de Cards ExpansÃƒÂ­veis das AtraÃƒÂ§ÃƒÂµes */
.atracoes-accordion {
  display: flex;
  gap: 16px;
  height: 520px;
  width: 100%;
  overflow: hidden;
}

.atracao-card {
  position: relative;
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s ease;
  min-width: 110px;
}

.atracao-card.active {
  flex: 5;
}

.atracao-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.atracao-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 21, 43, 0.92) 0%, rgba(7, 21, 43, 0.3) 60%, rgba(0,0,0,0) 100%);
  transition: opacity 0.3s ease;
}

.atracao-vertical-title {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: center center;
  white-space: nowrap;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.atracao-card.active .atracao-vertical-title {
  opacity: 0;
  pointer-events: none;
}

.atracao-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 35px;
  color: #ffffff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
  pointer-events: none;
}

.atracao-card.active .atracao-card-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.atracao-card-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.atracao-card-title {
  font-size: clamp(1.4rem, 2.5vw + 0.5rem, 2.2rem);
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1.2;
}

.atracao-card-desc {
  font-size: clamp(0.88rem, 1.2vw + 0.3rem, 1.05rem);
  color: #cbd5e1;
  max-width: 480px;
  margin-bottom: 20px;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .atracoes-tabs-nav {
    gap: 8px;
    margin-bottom: 24px;
  }
  .tab-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
  .atracoes-accordion {
    flex-direction: row;
    height: 440px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    gap: 14px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
  }
  .atracoes-accordion::-webkit-scrollbar {
    height: 6px;
  }
  .atracoes-accordion::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
  }
  .atracao-card {
    flex: 0 0 85%;
    max-width: 360px;
    min-width: 270px;
    scroll-snap-align: center;
    border-radius: 20px;
  }
  .atracao-vertical-title {
    display: none;
  }
  .atracao-card-content {
    opacity: 1;
    transform: translateY(0);
    padding: 24px 20px;
    pointer-events: auto;
  }
  .atracao-card-badge {
    margin-bottom: 8px;
  }
  .atracao-card-desc {
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .atracoes-accordion {
    height: 400px;
    gap: 10px;
  }
  .atracao-card {
    flex: 0 0 88%;
    min-width: 250px;
  }
  .atracao-card-content {
    padding: 18px 16px;
  }
}

/* ==========================================================================
   SEÃƒâ€¡ÃƒÆ’O PARQUE DOS DINOSSAUROS (DESIGN COM CLIP-PATH)
   ========================================================================== */
.section-dinossauros {
  background: var(--accent-green);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  border-radius: 40px;
  margin: 40px 20px;
  box-shadow: 0 20px 50px rgba(0, 150, 69, 0.25);
}

.dino-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.dino-img-box {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.dino-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dino-img-box:hover .dino-img {
  transform: scale(1.05);
}

.dino-title {
  font-size: clamp(1.8rem, 3.5vw + 0.8rem, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
}

.dino-desc {
  font-size: clamp(0.95rem, 1.5vw + 0.4rem, 1.15rem);
  color: #E2E8F0;
  line-height: 1.7;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .section-dinossauros {
    margin: 20px 10px;
    border-radius: 24px;
    padding: 36px 0;
  }
  .dino-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .dino-img {
    height: 260px;
  }
  .dino-actions {
    display: flex;
    justify-content: center;
  }
  .dino-actions .buttonChevron {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .section-dinossauros {
    margin: 16px 6px;
    border-radius: 20px;
    padding: 28px 0;
  }
  .dino-img {
    height: 200px;
  }
}

/* ==========================================================================
   SEÃƒâ€¡ÃƒÆ’O DE HOSPEDAGENS (HOTEL WAKANDA & OESTE PLAZA HOTEL)
   ========================================================================== */
.section-hospedagem {
  background: #ffffff;
}

.hotel-item {
  padding: 60px 0;
  border-bottom: 1px solid #f1f5f9;
}

.hotel-item:last-child {
  border-bottom: none;
}

.hotel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hotel-grid.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}

.hotel-gallery-wrapper {
  position: relative;
  width: 100%;
  min-width: 0;
}

.hotel-main-image-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-md);
  background: #0f172a;
}

.hotel-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.2s ease;
  cursor: pointer;
}

@media (hover: hover) {
  .hotel-main-image-box:hover .hotel-main-img {
    transform: scale(1.03);
  }
}

/* Controles de Navegação da Galeria */
.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.75);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  z-index: 10;
  touch-action: manipulation;
}

.gallery-nav-btn:hover {
  background: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav-btn.prev { left: 14px; }
.gallery-nav-btn.next { right: 14px; }

/* Miniaturas da Galeria */
.hotel-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.thumb-btn {
  flex-shrink: 0;
  width: 80px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: var(--transition);
  cursor: pointer;
  touch-action: manipulation;
}

.thumb-btn:hover {
  opacity: 1;
}

.thumb-btn.active {
  border-color: var(--primary);
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(0, 136, 204, 0.3);
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Informações do Hotel */
.hotel-info {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.hotel-tagline {
  color: var(--primary);
  font-weight: 700;
  font-size: clamp(0.9rem, 1.5vw + 0.3rem, 1.05rem);
  margin-bottom: 10px;
  display: block;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hotel-name {
  font-size: clamp(1.6rem, 3vw + 0.8rem, 3rem);
  font-weight: 900;
  color: var(--primary-deep);
  margin-bottom: 14px;
  line-height: 1.15;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.hotel-desc-p {
  color: var(--text-muted);
  font-size: clamp(0.92rem, 1.2vw + 0.3rem, 1.05rem);
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.hotel-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
  width: 100%;
}

.hotel-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: clamp(0.78rem, 1vw + 0.3rem, 0.9rem);
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition);
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hotel-badge-item:hover {
  background: #f1f5f9;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.hotel-badge-icon {
  color: var(--primary);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.hotel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  max-width: 100%;
}

@media (max-width: 992px) {
  .hotel-item {
    padding: 40px 0;
  }
  .hotel-grid, .hotel-grid.reverse {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
  .hotel-main-image-box {
    border-radius: 20px;
  }
  .gallery-nav-btn {
    width: 38px;
    height: 38px;
  }
  .gallery-nav-btn.prev { left: 10px; }
  .gallery-nav-btn.next { right: 10px; }
  .thumb-btn {
    width: 68px;
    height: 48px;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .hotel-badges-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }
  .hotel-badge-item {
    white-space: normal;
  }
  .hotel-actions {
    width: 100%;
  }
  .hotel-actions .buttonChevron,
  .hotel-actions .buttonPill {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* ==========================================================================
   SEÃƒâ€¡ÃƒÆ’O DE DESTAQUE: RIVIERA GRAND LAGOON (VILAS DO MEDITERRÃƒâ€šNEO)
   ========================================================================== */
.section-grand-lagoon {
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  position: relative;
  overflow: hidden;
}

.lagoon-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 196, 204, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.lagoon-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 40px;
}

.lagoon-brand-tag {
  color: var(--primary-cyan);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: clamp(0.75rem, 1.2vw + 0.3rem, 0.9rem);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.lagoon-title {
  font-size: clamp(1.8rem, 3.5vw + 0.8rem, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
}

.lagoon-subtitle {
  font-size: clamp(1.05rem, 2vw + 0.4rem, 1.35rem);
  color: #ffd782;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.lagoon-desc {
  font-size: clamp(0.92rem, 1.2vw + 0.3rem, 1.15rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 18px;
}

.lagoon-highlights {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.lagoon-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .lagoon-actions {
    width: 100%;
  }
  .lagoon-actions .buttonChevron {
    width: 100%;
  }
}

.lagoon-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  background: rgba(0, 196, 204, 0.12);
  border: 1px solid rgba(0, 196, 204, 0.35);
  color: #00E5FF;
  font-weight: 600;
  font-size: clamp(0.78rem, 1vw + 0.3rem, 0.9rem);
}

.lagoon-preview-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 196, 204, 0.3);
  width: 100%;
}

.lagoon-preview-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

@media (hover: hover) {
  .lagoon-preview-card:hover .lagoon-preview-img {
    transform: scale(1.05);
  }
}

/* 4 Pilares de Vantagens do Grand Lagoon */
.lagoon-advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: clamp(20px, 4vw, 30px) clamp(16px, 3vw, 24px);
  text-align: center;
  transition: var(--transition);
}

.advantage-card:hover {
  background: rgba(0, 196, 204, 0.1);
  border-color: var(--primary-cyan);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 196, 204, 0.15);
}

.advantage-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 196, 204, 0.2) 0%, rgba(15, 91, 120, 0.4) 100%);
  border: 1px solid rgba(0, 196, 204, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  color: var(--primary-cyan);
}

.advantage-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.4;
}

.advantage-text {
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .lagoon-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .lagoon-advantages-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .lagoon-highlights {
    gap: 8px;
  }
  .lagoon-pill {
    padding: 6px 12px;
  }
}

/* ==========================================================================
   SEÃƒâ€¡ÃƒÆ’O DE INGRESSOS E PASSAPORTES
   ========================================================================== */
.section-ingressos {
  background: #f1f5f9;
}

.ingressos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.ingresso-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 40px) clamp(18px, 4vw, 32px);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.ingresso-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--gold-start) 100%);
}

.ingresso-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.ingresso-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ingresso-icon-box.dino {
  background: linear-gradient(135deg, var(--accent-green) 0%, #064e3b 100%);
}

.ingresso-title {
  font-size: clamp(1.3rem, 2vw + 0.6rem, 1.6rem);
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 6px;
}

.ingresso-subtitle {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  display: block;
}

.ingresso-desc {
  color: var(--text-muted);
  font-size: clamp(0.9rem, 1.2vw + 0.3rem, 1rem);
  line-height: 1.6;
  margin-bottom: 26px;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .ingressos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ingresso-card {
    border-radius: 20px;
  }
}

/* ==========================================================================
   SEÃƒâ€¡ÃƒÆ’O DE VÃƒÂDEO DO ESPAÃƒâ€¡O
   ========================================================================== */
.section-video {
  background: #ffffff;
}

.video-container-card {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000000;
  position: relative;
  aspect-ratio: 16/9;
}

.video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .video-container-card {
    border-radius: 16px;
  }
}

/* ==========================================================================
   CARROSSEL CONTÃƒÂNUO MULTILINHAS (MARQUEE SLIDER)
   ========================================================================== */
.section-marquee {
  overflow: hidden;
}

.cardsSliderContainer,
.cardsSliderContainer2 {
  width: 100%;
  overflow: hidden;
  padding: 8px 0;
  background-color: #ffffff;
}

.cardsSliderContainer2 {
  margin-top: -6px;
}

.cardsSliderTrack,
.cardsSliderTrack2 {
  display: flex;
  width: max-content;
  gap: 12px;
}

.cardsSliderTrack {
  animation: marqueeLeft 45s linear infinite;
}

.cardsSliderTrack2 {
  animation: marqueeLeft 45s linear infinite reverse;
}

.cardsSliderContainer:hover .cardsSliderTrack,
.cardsSliderContainer2:hover .cardsSliderTrack2 {
  animation-play-state: paused;
}

.siteCardWrapper {
  width: 360px;
  height: 220px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

@media (hover: hover) {
  .siteCardWrapper:hover {
    transform: scale(1.04);
  }
}

.siteCardWrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes marqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .cardsSliderTrack,
  .cardsSliderTrack2 {
    gap: 8px;
  }
  .siteCardWrapper {
    width: 220px;
    height: 140px;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .siteCardWrapper {
    width: 170px;
    height: 110px;
    border-radius: 10px;
  }
}

/* ==========================================================================
   RODAPÃƒâ€° ESTRUTURADO (INSPIRADO NA REFERÃƒÅ NCIA COM DADOS ORIGINAIS)
   ========================================================================== */
footer.site-footer {
  background: var(--primary-deep);
  color: #ffffff;
  padding-top: 60px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand-box {
  max-width: 400px;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  margin-bottom: 18px;
}

.footer-brand-desc {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-col-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-sky);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Caixa de InformaÃƒÂ§ÃƒÂµes e Contatos do RodapÃƒÂ© */
.footer-info-box {
  background: #082857;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  width: 100%;
}

.footer-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: #e2e8f0;
  word-break: break-word;
}

.footer-info-row:last-child {
  margin-bottom: 0;
}

.footer-info-row svg {
  color: var(--primary-sky);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Selos no RodapÃƒÂ© */
.footer-selos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.selo-img {
  height: 44px;
  width: auto;
  opacity: 0.9;
  transition: var(--transition);
}

.selo-img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Copyright */
.footer-bottom {
  text-align: center;
  padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.6;
}

.footer-bottom p {
  margin-bottom: 4px;
}

@media (max-width: 860px) {
  .footer-content {
    flex-direction: column;
    gap: 28px;
  }
  .footer-brand-box,
  .footer-info-box {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  footer.site-footer {
    padding-top: 45px;
  }
  .footer-info-box {
    padding: 16px;
  }
  .footer-selos {
    gap: 14px;
  }
  .selo-img {
    height: 36px;
  }
}

/* ==========================================================================
   BOTÃƒâ€¢ES FLUTUANTES INTERATIVOS (WHATSAPP & COMPRA RÃƒÂPIDA)
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: max(24px, env(safe-area-inset-bottom, 24px));
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* BotÃƒÂ£o Flutuante Ingressos */
.floating-ticket-btn {
  display: flex;
  align-items: center;
  background: var(--primary-deep);
  color: #ffffff;
  border-radius: var(--radius-full);
  padding: 4px 6px 4px 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  text-decoration: none;
  touch-action: manipulation;
}

.floating-ticket-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.floating-ticket-label {
  font-weight: 700;
  font-size: 0.9rem;
  margin-right: 10px;
  white-space: nowrap;
}

.floating-ticket-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  animation: ticketPulse 4s infinite ease-in-out;
}

@keyframes ticketPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

/* BotÃƒÂ£o Flutuante WhatsApp */
.floating-wpp-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: wppPulse 2.5s infinite;
  touch-action: manipulation;
  flex-shrink: 0;
}

.floating-wpp-btn:hover {
  background: var(--whatsapp-hover);
  transform: scale(1.12);
}

@keyframes wppPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
  .floating-actions {
    bottom: max(16px, env(safe-area-inset-bottom, 16px));
    right: 16px;
    gap: 10px;
  }
  .floating-ticket-label {
    display: none;
  }
  .floating-ticket-btn {
    padding: 0;
    border-radius: 50%;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .floating-ticket-icon {
    width: 48px;
    height: 48px;
    box-shadow: 0 6px 18px rgba(231, 52, 76, 0.4);
  }
  .floating-wpp-btn {
    width: 48px;
    height: 48px;
  }
  .floating-wpp-btn svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 360px) {
  .floating-actions {
    bottom: max(12px, env(safe-area-inset-bottom, 12px));
    right: 12px;
    gap: 8px;
  }
  .floating-ticket-icon {
    width: 42px;
    height: 42px;
  }
  .floating-wpp-btn {
    width: 42px;
    height: 42px;
  }
  .floating-wpp-btn svg {
    width: 24px;
    height: 24px;
  }
}

/* ==========================================================================
   MELHORIAS DE RESPONSIVIDADE PARA DISPOSITIVOS MÓVEIS (320px A 768px)
   ========================================================================== */

/* Prevenção global de overflow horizontal */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Ajustes de toque em telas touch */
a, button, input, select, textarea {
  touch-action: manipulation;
}

/* Ajustes para telas médias/pequenas (smartphones em geral < 768px) */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(1.75rem, 6vw + 0.5rem, 2.8rem);
    line-height: 1.18;
  }
  
  .hero-description {
    font-size: clamp(0.9rem, 3vw, 1.05rem);
    padding: 0 8px;
  }

  .hotel-badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .hotel-badge-item {
    padding: 8px 10px;
    font-size: 0.8rem;
  }
}

/* Ajustes finos para telas menores (< 480px) */
@media (max-width: 480px) {
  .header-inner {
    padding: 8px 14px;
  }

  .btn-menu-trigger {
    padding: 8px 10px;
    border-radius: var(--radius-full);
  }

  .header-logo-img {
    height: 34px;
  }

  .btn-header-reserva {
    padding: 7px 12px;
    font-size: 0.76rem;
  }

  .hotel-badges-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hotel-actions {
    width: 100%;
  }

  .hotel-actions .buttonChevron,
  .hotel-actions .buttonPill {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .stat-card {
    padding: 12px 8px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.78rem;
  }

  .video-container-card {
    border-radius: 12px;
  }
}

/* Ajustes extremos para dispositivos extra pequenos (< 360px - e.g., iPhone SE) */
@media (max-width: 360px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .header-inner {
    padding: 6px 8px;
    gap: 4px;
  }

  .header-logo-img {
    height: 28px;
  }

  .btn-header-reserva {
    padding: 6px 10px;
    font-size: 0.72rem;
  }

  .btn-header-reserva svg {
    display: none;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-badge {
    font-size: 0.68rem;
    padding: 4px 10px;
  }

  .heading-section {
    font-size: 1.4rem;
  }

  .subheading-section {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }

  .stat-number {
    font-size: 1.35rem;
  }

  .stat-label {
    font-size: 0.72rem;
  }
}

/* ==========================================================================
   CORREÇÃO GLOBAL DE MARGEM DIREITA & CORTE DE TEXTO EM MOBILE
   ========================================================================== */
p, h1, h2, h3, h4, h5, h6, span, div, article, section {
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.hotel-info,
.hotel-desc-p,
.hotel-name,
.hotel-tagline,
.lagoon-desc,
.section-desc,
.ingresso-desc {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  box-sizing: border-box;
}

/* Garantia que nenhum elemento cause rolagem horizontal oculta ou corte de margem */
.hotel-item,
.hotel-grid,
.container,
section {
  max-width: 100vw;
  box-sizing: border-box;
}




