/* ==========================================================================
   Apartamento Maremia - Premium Styles
   ========================================================================== */

:root {
  /* Colors */
  --brand: #1a9ba3;
  --brand-dark: #147278;
  --brand-light: #e8f6f7;
  --accent: #d4a853;
  --accent-light: #f5edd8;
  
  --text: #1f2937;
  --text-light: #6b7280;
  --text-muted: #9ca3af;
  
  --bg: #ffffff;
  --bg-alt: #f8fafa;
  --bg-dark: #0f3d3e;
  
  --white: #ffffff;
  --black: #000000;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
  --shadow-xl: 0 25px 60px rgba(0,0,0,0.18);
  
  /* Spacing */
  --section-padding: clamp(60px, 10vw, 120px);
  
  /* Border radius */
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

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

a {
  color: var(--brand);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--brand-dark);
}

/* Container */
.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  height: 48px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav a:hover {
  background: var(--brand-light);
  color: var(--brand-dark);
}

.nav__cta {
  background: var(--brand) !important;
  color: var(--white) !important;
  margin-left: 8px;
}

.nav__cta:hover {
  background: var(--brand-dark) !important;
  color: var(--white) !important;
}

/* Burger Menu */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,0,0,0.1);
  background: var(--white);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-out forwards;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 61, 62, 0.85) 0%,
    rgba(15, 61, 62, 0.6) 50%,
    rgba(15, 61, 62, 0.4) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
}

.hero__text {
  max-width: 700px;
}

.hero__tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 50px;
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
}

.hero__feature i {
  color: var(--accent);
  font-size: 16px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 0.8s ease-out 1s both;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  letter-spacing: 0.1em;
  animation: fadeInUp 0.8s ease-out 1.2s both;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn--wa {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn--wa:hover {
  background: #20bd5a;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn--ghost {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn--ghost-light:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 17px;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section {
  padding: var(--section-padding) 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--dark {
  background: var(--bg-dark);
  color: var(--white);
}

.section--cta {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--white);
  text-align: center;
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section__header--left {
  text-align: left;
  margin: 0 0 30px;
}

.section__header--light h2,
.section__header--light .section__intro {
  color: var(--white);
}

.section__tag {
  display: inline-block;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section__tag--light {
  color: rgba(255,255,255,0.8);
}

.section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section--dark h2,
.section--cta h2 {
  color: var(--white);
}

.section__intro {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ==========================================================================
   Feature Cards (Apartamento section)
   ========================================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.feature-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  background: var(--brand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-card__icon i {
  font-size: 24px;
  color: var(--brand);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Highlight Box */
.highlight-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--accent-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.highlight-box__content {
  padding: 40px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.highlight-box__icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-box__icon i {
  font-size: 24px;
  color: var(--white);
}

.highlight-box h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.highlight-box p {
  color: var(--text-light);
  line-height: 1.7;
}

.highlight-box__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 250px;
}

/* ==========================================================================
   Room Cards (Espacios section)
   ========================================================================== */

.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.room-card--featured {
  grid-column: span 1;
}

.room-card__gallery {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.room-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.room-card:hover .room-card__img {
  transform: scale(1.05);
}

.room-card__content {
  padding: 24px;
}

.room-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}

.room-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.room-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

.room-card__amenities {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.room-card__amenities li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.room-card__amenities i {
  color: var(--brand);
  font-size: 14px;
}

/* Spaces Row */
.spaces-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.space-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.space-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.space-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.space-card__content {
  padding: 20px;
}

.space-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.space-card h4 i {
  color: var(--brand);
}

.space-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery__overlay i {
  color: var(--white);
  font-size: 24px;
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

/* ==========================================================================
   Info Grid (Check-in / Normas)
   ========================================================================== */

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.checkin-cards {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.checkin-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.checkin-card i {
  font-size: 24px;
  color: var(--brand);
}

.checkin-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
}

.checkin-card span {
  font-size: 1.1rem;
  font-weight: 600;
}

.info-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
  background: var(--white);
  padding: 16px;
  border-radius: var(--radius);
}

.info-note i {
  color: var(--brand);
  margin-top: 2px;
}

.rules-list {
  list-style: none;
}

.rules-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-weight: 500;
}

.rules-list li:last-child {
  border-bottom: none;
}

.rules-list i {
  width: 40px;
  height: 40px;
  background: var(--brand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}

/* ==========================================================================
   Location
   ========================================================================== */

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.location-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.transport-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-alt);
  padding: 20px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.transport-card:hover {
  background: var(--brand-light);
}

.transport-card i {
  font-size: 20px;
  color: var(--brand);
  width: 24px;
  text-align: center;
}

.transport-card strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.transport-card span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.location-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.map-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  background: var(--bg-alt);
  font-size: 0.85rem;
  color: var(--text-light);
}

.map-note i {
  color: var(--brand);
}

/* ==========================================================================
   Events
   ========================================================================== */

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

.event-card {
  text-align: center;
  padding: 28px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.event-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.event-card i {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 14px;
}

.event-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.event-card p {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.5;
}

/* ==========================================================================
   Guide
   ========================================================================== */

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.guide-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand);
}

.guide-card__icon {
  width: 72px;
  height: 72px;
  background: var(--brand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.guide-card:hover .guide-card__icon {
  background: var(--brand);
}

.guide-card__icon i {
  font-size: 28px;
  color: var(--brand);
  transition: var(--transition);
}

.guide-card:hover .guide-card__icon i {
  color: var(--white);
}

.guide-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text);
}

.guide-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.guide-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.guide-card__link i {
  transition: var(--transition);
}

.guide-card:hover .guide-card__link i {
  transform: translateX(4px);
}

/* Custom Tip */
.custom-tip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--accent-light);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
}

.custom-tip__content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.custom-tip__content i {
  font-size: 28px;
  color: var(--accent);
}

.custom-tip strong {
  display: block;
  margin-bottom: 4px;
}

.custom-tip p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* Rules Section (detailed page) */
.rules-section {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 32px;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--text);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer__logo {
  height: 40px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__links a {
  color: var(--white);
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer__links a:hover {
  opacity: 1;
  color: var(--white);
}

.footer__copy {
  text-align: right;
}

.footer__copy p {
  font-size: 0.85rem;
  opacity: 0.5;
}

/* ==========================================================================
   Float WhatsApp
   ========================================================================== */

.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.float-wa:hover {
  transform: scale(1.1);
  color: var(--white);
}

/* ==========================================================================
   Lightbox
   ========================================================================== */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox__close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }

.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox__content {
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox__img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .rooms-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .rooms-grid .room-card:last-child {
    grid-column: span 2;
  }
  
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery__item--wide {
    grid-column: span 1;
  }
  
  .location-grid {
    grid-template-columns: 1fr;
  }
  
  .location-info {
    order: 2;
  }
  
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer__copy {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 80px;
    right: 5%;
    left: 5%;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 16px;
    flex-direction: column;
    gap: 4px;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  
  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav a {
    width: 100%;
    text-align: center;
    padding: 14px;
  }
  
  .nav__cta {
    margin: 8px 0 0;
  }
  
  .hero__features {
    flex-direction: column;
  }
  
  .hero__cta {
    flex-direction: column;
  }
  
  .hero__scroll {
    display: none;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .highlight-box {
    grid-template-columns: 1fr;
  }
  
  .highlight-box__content {
    order: 2;
  }
  
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  
  .rooms-grid .room-card:last-child {
    grid-column: span 1;
  }
  
  .spaces-row {
    grid-template-columns: 1fr;
  }
  
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .checkin-cards {
    flex-direction: column;
  }
  
  .location-info {
    grid-template-columns: 1fr;
  }
  
  .events-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .guide-grid {
    grid-template-columns: 1fr;
  }
  
  .custom-tip {
    flex-direction: column;
    text-align: center;
  }
  
  .custom-tip__content {
    flex-direction: column;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .footer__links {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 92%;
  }
  
  .logo {
    height: 40px;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .gallery {
    grid-template-columns: 1fr;
  }
  
  .events-grid {
    grid-template-columns: 1fr;
  }
  
  .float-wa {
    width: 54px;
    height: 54px;
    font-size: 24px;
    bottom: 16px;
    right: 16px;
  }
}
