/* Importando fontes sofisticadas do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  /* Aura Palette */
  --azul-sereno: #5F85DB;
  --verde-menta: #A8E6CF;
  --rosa-quartzo: #ECC5C0;
  --lilas-espiritual: #DCD6F7;
  --off-white: #FAF9F6;
  --dourado-mate: #C5A059;
  --dourado-hover: #A07F40;

  /* Auxiliares */
  --text-primary: #1C2321;
  --text-secondary: #4A5859;
  --bg-dark: #121824;
  --white: #FFFFFF;

  /* Transições e Sombras */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.03);
  --shadow-medium: 0 20px 40px rgba(197, 160, 89, 0.08);
}

/* Reset Geral */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--off-white);
  color: var(--text-primary);
}

body {
  overflow-x: hidden;
  position: relative;
}

h1,
h2,
h3,
h4,
.font-serif {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: var(--text-primary);
}

/* Gradientes de Aura de Fundo (Decoração) */
.aura-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}

.aura-glow-1 {
  background: radial-gradient(circle, var(--lilas-espiritual) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.aura-glow-2 {
  background: radial-gradient(circle, var(--verde-menta) 0%, transparent 70%);
  top: 800px;
  left: -200px;
}

.aura-glow-3 {
  background: radial-gradient(circle, var(--rosa-quartzo) 0%, transparent 70%);
  bottom: 200px;
  right: -200px;
}

/* Texturas de Mandala Geométrica em Background */
.bg-mandala {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: radial-gradient(var(--dourado-mate) 0.5px, transparent 0.5px), radial-gradient(var(--dourado-mate) 0.5px, var(--off-white) 0.5px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
  opacity: 0.02;
  z-index: -2;
  pointer-events: none;
}

/* Botões Customizados */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--dourado-mate);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
}

.btn-primary:hover {
  background-color: var(--dourado-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--dourado-mate);
  border-color: var(--dourado-mate);
}

.btn-secondary:hover {
  background-color: rgba(197, 160, 89, 0.05);
  transform: translateY(-2px);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(250, 249, 246, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-subtle);
}

.navbar.scrolled .nav-logo-container {
  height: 120px;
  width: 120px;
  top: 5px;
  padding: 15px 15px 23px 15px;
}

.navbar.scrolled .nav-brand {
  height: 35px;
  width: 120px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  position: relative;
  text-decoration: none;
  height: 35px;
  width: 180px;
}

.nav-logo-container {
  height: 180px;
  width: 180px;
  border-radius: 50%;
  border: 2px solid var(--dourado-mate);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.25);
  position: absolute;
  top: 5px;
  left: 0;
  background-color: var(--white);
  padding: 20px 20px 32px 20px; /* Shifts the logo content up inside the circular frame */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  z-index: 10;
  overflow: hidden;
}

.nav-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--dourado-mate);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--dourado-mate);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 24, 36, 0.75) 0%, rgba(18, 24, 36, 0.55) 100%);
  z-index: 2;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 3;
}

.hero-content {
  z-index: 3;
}

.hero-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--dourado-mate);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--off-white);
}

.hero-title span {
  font-style: italic;
  color: var(--dourado-mate);
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(250, 249, 246, 0.85);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* Sections Base */
.section {
  position: relative;
  padding: 8rem 2rem;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

.section-tag {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dourado-mate);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.section-desc {
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

/* Diferenciais Aura */
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.dif-card {
  background-color: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(197, 160, 89, 0.08);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.dif-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  transition: var(--transition-smooth);
}

.dif-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(197, 160, 89, 0.15);
}

.dif-card:nth-child(1):hover::before {
  background-color: var(--azul-sereno);
}

.dif-card:nth-child(2):hover::before {
  background-color: var(--verde-menta);
}

.dif-card:nth-child(3):hover::before {
  background-color: var(--lilas-espiritual);
}

.dif-card:nth-child(4):hover::before {
  background-color: var(--rosa-quartzo);
}

.dif-icon {
  font-size: 2rem;
  color: var(--dourado-mate);
  margin-bottom: 1.8rem;
  display: inline-block;
  background: rgba(197, 160, 89, 0.08);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dif-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.dif-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 300;
}

/* Espaços Highlights Grid */
.espacos-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.espacos-feature-card {
  background-color: var(--white);
  padding: 2.2rem 1.8rem;
  border-radius: 20px;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(197, 160, 89, 0.08);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.espacos-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(197, 160, 89, 0.2);
}

.espacos-feature-icon {
  font-size: 1.6rem;
  color: var(--dourado-mate);
  margin-bottom: 1.2rem;
  background: rgba(197, 160, 89, 0.06);
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.espacos-feature-card:hover .espacos-feature-icon {
  background: var(--dourado-mate);
  color: var(--white);
}

.espacos-feature-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.espacos-feature-highlight {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dourado-mate);
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}

.espacos-feature-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
  font-weight: 300;
}

.espacos-feature-text strong {
  font-weight: 600;
  color: var(--text-primary);
}

/* Nossos Espaços / Salas */
.salas-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.sala-card {
  background-color: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(197, 160, 89, 0.1);
  transition: var(--transition-smooth);
}

.sala-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(197, 160, 89, 0.25);
}

.sala-media {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.sala-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.sala-card:hover .sala-media img {
  transform: scale(1.05);
}

.sala-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dourado-mate);
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.sala-info {
  padding: 2.2rem;
}

.sala-title {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.sala-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.sala-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.2rem 0;
}

.feature-tag {
  background-color: var(--off-white);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sala-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sala-price {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.sala-price span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* Simulador de Agendamento */
.scheduler-box {
  background: var(--white);
  border-radius: 30px;
  border: 1px solid rgba(197, 160, 89, 0.25);
  box-shadow: var(--shadow-medium);
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  position: relative;
}

.scheduler-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.form-control {
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(197, 160, 89, 0.2);
  background-color: var(--off-white);
  font-size: 0.95rem;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--dourado-mate);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.scheduler-preview {
  background: var(--off-white);
  border-radius: 20px;
  padding: 2rem;
  border: 1px dashed rgba(197, 160, 89, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.preview-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  padding-bottom: 0.8rem;
}

.preview-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.preview-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.preview-item strong {
  color: var(--text-primary);
}

.preview-summary {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(197, 160, 89, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.preview-total {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dourado-mate);
}

/* Localização */
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.map-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.location-item {
  display: flex;
  gap: 1.2rem;
}

.location-icon {
  font-size: 1.4rem;
  color: var(--dourado-mate);
  background-color: rgba(197, 160, 89, 0.08);
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.location-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 300;
}

.map-frame {
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(197, 160, 89, 0.2);
}

/* Contato */
.contato-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contato-channels {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.contato-card {
  background-color: var(--white);
  padding: 2rem 3rem;
  border-radius: 20px;
  border: 1px solid rgba(197, 160, 89, 0.1);
  box-shadow: var(--shadow-subtle);
  text-decoration: none;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-smooth);
  min-width: 220px;
}

.contato-card:hover {
  transform: translateY(-5px);
  border-color: var(--dourado-mate);
  box-shadow: var(--shadow-medium);
}

.contato-card i {
  font-size: 2.2rem;
  color: var(--dourado-mate);
}

.contato-card span {
  font-size: 0.9rem;
  font-weight: 500;
}

.contato-card strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--dourado-mate);
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 2rem 2.5rem 2rem;
  border-top: 1px solid rgba(197, 160, 89, 0.15);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand-title {
  color: var(--white);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.footer-brand-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
}

.footer-links h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--dourado-mate);
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-menu a:hover {
  color: var(--dourado-mate);
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* Modais e Simulações */
.modal {
  position: fixed;
  inset: 0;
  background-color: rgba(18, 24, 36, 0.6);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: var(--off-white);
  border-radius: 24px;
  border: 1px solid var(--dourado-mate);
  box-shadow: var(--shadow-medium);
  width: 90%;
  max-width: 550px;
  padding: 3rem;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.modal-close:hover {
  color: var(--text-primary);
}

/* Responsividade */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .map-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .map-frame {
    order: -1;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--off-white);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    flex-direction: column;
    padding: 2rem 0;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: var(--transition-smooth);
    opacity: 0;
    pointer-events: none;
    box-shadow: var(--shadow-subtle);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .section {
    padding: 5rem 1.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .scheduler-box {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Banner Promocional com Desfoque de Fundo */
.banner-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1.5rem;
}

.banner-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.banner-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-medium);
  transform: scale(0.9);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.banner-overlay.active .banner-card {
  transform: scale(1);
}

.banner-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.banner-close:hover {
  color: var(--dourado-mate);
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
}

.banner-icon {
  font-size: 3.5rem;
  color: var(--dourado-mate);
}

.banner-title {
  font-size: 2.2rem;
  color: var(--off-white);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.banner-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
}

/* ==========================================================================
   Room Carousels & Lightbox Gallery
   ========================================================================== */

/* Custom Carousel for Room Cards */
.sala-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: zoom-in;
}

.sala-carousel-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.sala-carousel-inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  z-index: 1;
}

.sala-carousel-inner img.active {
  opacity: 1;
  z-index: 2;
}

/* Slightly zoom on hover when not clicked */
.sala-card:hover .sala-carousel-inner img.active {
  transform: scale(1.05);
}

/* Navigation buttons */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dourado-mate);
  cursor: pointer;
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 10;
}

.sala-carousel:hover .carousel-nav-btn {
  opacity: 1;
}

.carousel-nav-btn:hover {
  background: var(--white);
  color: var(--dourado);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 12px;
}

.next-btn {
  right: 12px;
}

/* Indicators / Dots */
.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
  background: rgba(14, 20, 31, 0.4);
  padding: 4px 8px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot.active {
  background: var(--white);
  transform: scale(1.25);
}

/* Lightbox Modal styles */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 20, 31, 0.96);
  /* Deep dark theme colors */
  backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 1100px;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-carousel-inner {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-carousel-inner img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  position: absolute;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 1;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-carousel-inner img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: var(--off-white);
  font-size: 1.8rem;
  line-height: 44px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 10005;
}

.lightbox-close:hover {
  background: var(--white);
  color: var(--blue-deep);
  transform: scale(1.05);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--off-white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 10005;
}

.lightbox-nav:hover {
  background: var(--white);
  color: var(--blue-deep);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.lightbox-nav.prev {
  left: -80px;
}

.lightbox-nav.next {
  right: -80px;
}

.lightbox-counter {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-top: 24px;
  font-family: var(--font-sans);
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 1px;
}

@media (max-width: 1300px) {
  .lightbox-content {
    width: 85%;
  }

  .lightbox-nav.prev {
    left: -60px;
  }

  .lightbox-nav.next {
    right: -60px;
  }
}

@media (max-width: 992px) {
  .lightbox-content {
    width: 90%;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
  }

  .lightbox-nav.prev {
    left: 10px;
  }

  .lightbox-nav.next {
    right: 10px;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    line-height: 36px;
  }
}