/* ═══════════════════════════════
   CSS VARIABLES
═══════════════════════════════ */
:root {
  --bg:       hsl(220, 15%, 12%);
  --bg-dark:  hsl(220, 15%, 10%);
  --bg-card:  hsl(220, 15%, 16%);
  --bg-input: hsl(220, 15%, 19%);
  --border:   hsl(220, 10%, 22%);
  --amber:    hsl(35, 80%, 52%);
  --amber-lt: hsl(35, 80%, 70%);
  --amber-bg: hsla(35, 80%, 52%, 0.12);
  --amber-bd: hsla(35, 80%, 52%, 0.3);
  --text:     #ffffff;
  --text-md:  #d1d5db;
  --text-sm:  #9ca3af;
  --text-dim: #6b7280;
  --green:    #16a34a;
  --green-bg: rgba(22, 163, 74, 0.15);
  --green-bd: rgba(22, 163, 74, 0.3);
  --red:      #ef4444;
  --red-bg:   rgba(239, 68, 68, 0.15);
  --red-bd:   rgba(239, 68, 68, 0.3);
  --radius:   12px;
  --radius-lg: 16px;
  --transition: 200ms ease;
}

/* ═══════════════════════════════
   RESET & BASE
═══════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Inter', system-ui, sans-serif; font-size: 15px; line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ═══════════════════════════════
   TYPOGRAPHY
═══════════════════════════════ */
.font-serif, h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; }
em { font-style: italic; color: var(--amber); }

/* ═══════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.bg-dark { background: var(--bg-dark); }
.bg-darker { background: var(--bg); }
.text-center { text-align: center; }
.hidden { display: none !important; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.text-2xl { font-size: 1.5rem; }
.justify-center { justify-content: center; }

/* ═══════════════════════════════
   SECTION HEADERS
═══════════════════════════════ */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label { color: var(--amber); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.75rem; display: block; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--text); margin-bottom: 1rem; }
.section-desc { color: var(--text-sm); font-size: 0.85rem; max-width: 36rem; margin: 0 auto; }
.subtitle { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--text); }
.section-tagline { text-align: center; margin-top: 3.5rem; }

/* ═══════════════════════════════
   GRID LAYOUTS
═══════════════════════════════ */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 640px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr 1fr; } }

/* ═══════════════════════════════
   CARDS
═══════════════════════════════ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition);
}
.card:hover { border-color: hsla(35, 80%, 52%, 0.4); }
.card-amber {
  background: var(--amber-bg);
  border-color: var(--amber-bd);
}
.card-amber-sm {
  background: var(--amber-bg);
  border: 1px solid var(--amber-bd);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.card-icon {
  width: 2.5rem; height: 2.5rem;
  background: var(--amber-bg);
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: var(--amber);
}
.card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--text); margin-bottom: 0.75rem; }
.card-title-sm { font-size: 0.875rem; font-weight: 600; color: var(--text); margin-bottom: 0.5rem; }
.card-text { color: var(--text-sm); font-size: 0.85rem; line-height: 1.7; }
.card-text-sm { color: var(--text-dim); font-size: 0.78rem; line-height: 1.6; }

/* ═══════════════════════════════
   TAGS
═══════════════════════════════ */
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  background: var(--amber-bg);
  border: 1px solid var(--amber-bd);
  color: var(--amber-lt);
  font-size: 0.75rem; font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

/* ═══════════════════════════════
   BUTTONS
═══════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--amber); color: white;
  font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 1.5rem; border-radius: 999px;
  transition: background var(--transition), transform var(--transition);
  border: none; cursor: pointer;
}
.btn-primary:hover { background: hsl(35, 80%, 45%); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1); color: white;
  border: 1px solid rgba(255,255,255,0.3);
  font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 1.5rem; border-radius: 999px;
  backdrop-filter: blur(4px);
  transition: background var(--transition);
  cursor: pointer;
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); }

/* ═══════════════════════════════
   NAVBAR
═══════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0.875rem 1.5rem;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(16, 19, 28, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
}
.nav-brand { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.nav-logo { width: 2.25rem; height: 2.25rem; border-radius: 0.5rem; object-fit: cover; }
.nav-title { display: block; color: white; font-weight: 700; font-size: 0.95rem; line-height: 1.2; }
.nav-sub { display: block; color: var(--amber); font-size: 0.7rem; }
.nav-links {
  display: none; flex: 1;
  list-style: none; margin: 0; padding: 0;
  align-items: center; gap: 0.25rem;
}
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-link {
  color: var(--text-md); font-size: 0.85rem;
  padding: 0.35rem 0.65rem; border-radius: 0.5rem;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: white; background: rgba(255,255,255,0.06); }
.nav-actions { display: flex; align-items: center; gap: 0.5rem; margin-left: auto; }
.btn-wa, .btn-call {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 600; font-size: 0.8rem;
  padding: 0.5rem 1rem; border-radius: 999px;
  transition: background var(--transition);
}
.btn-wa { background: #16a34a; color: white; }
.btn-wa:hover { background: #15803d; }
.btn-call { background: var(--amber); color: white; }
.btn-call:hover { background: hsl(35, 80%, 45%); }
.nav-toggle {
  display: flex; flex-direction: column; gap: 4px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: white; border-radius: 2px;
  transition: all var(--transition);
}
@media (min-width: 900px) { .nav-toggle { display: none; } }
/* Mobile menu open */
#navbar.menu-open .nav-links {
  display: flex; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(16, 19, 28, 0.98);
  padding: 1rem 1.5rem; gap: 0.25rem;
  border-bottom: 1px solid var(--border);
}
#navbar.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
#navbar.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
#navbar.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,12,20,0.85) 0%, rgba(10,12,20,0.4) 60%, rgba(10,12,20,0.2) 100%);
}
.hero-content {
  position: relative; z-index: 10;
  height: 100%; display: flex; flex-direction: column; justify-content: center;
  padding: 0 1.5rem; max-width: 1200px; margin: 0 auto;
  padding-bottom: 4rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: hsla(35, 80%, 52%, 0.2);
  border: 1px solid hsla(35, 80%, 52%, 0.5);
  color: var(--amber-lt); font-size: 0.75rem; font-weight: 500;
  padding: 0.375rem 0.875rem; border-radius: 999px;
  backdrop-filter: blur(4px); margin-bottom: 1.5rem;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--amber); border-radius: 50%; }
.hero-title {
  font-size: clamp(2.2rem, 6vw, 3.75rem);
  color: white; line-height: 1.15; max-width: 36rem;
  margin-bottom: 1rem;
}
.hero-sub {
  color: #d1d5db; font-size: 0.85rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
.hero-dots { display: flex; gap: 0.5rem; }
.hero-dot {
  height: 3px; width: 1rem; border-radius: 999px;
  background: rgba(255,255,255,0.35);
  border: none; cursor: pointer;
  transition: background var(--transition), width var(--transition);
}
.hero-dot.active { background: var(--amber); width: 2rem; }
.hero-address {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  background: rgba(10,12,20,0.8); backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.75rem 1.5rem;
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--text-sm); font-size: 0.8rem;
}
.hero-address svg { color: var(--amber); flex-shrink: 0; }

/* ═══════════════════════════════
   SERVICES
═══════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 0.5rem;
  transition: border-color var(--transition);
}
.service-card:hover { border-color: hsla(35, 80%, 52%, 0.4); }
.service-icon { font-size: 1.5rem; }
.service-label { color: var(--text-md); font-size: 0.78rem; font-weight: 500; }

/* ═══════════════════════════════
   ROOMS
═══════════════════════════════ */
.rooms-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .rooms-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .rooms-grid { grid-template-columns: 1fr 1fr 1fr; } }

.room-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color var(--transition);
}
.room-card:hover { border-color: hsla(35, 80%, 52%, 0.45); }

.room-carousel { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.carousel-track {
  display: flex; height: 100%;
  transition: transform 0.4s ease;
}
.carousel-track img {
  flex-shrink: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.car-prev, .car-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.5); color: white;
  border: none; cursor: pointer;
  width: 2rem; height: 2rem; border-radius: 50%;
  font-size: 1.25rem; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
  z-index: 2;
}
.room-carousel:hover .car-prev,
.room-carousel:hover .car-next { opacity: 1; }
.car-prev { left: 0.5rem; }
.car-next { right: 0.5rem; }
.car-dots {
  position: absolute; bottom: 0.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.3rem; z-index: 2;
}
.car-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.45); cursor: pointer; border: none;
  transition: background var(--transition);
}
.car-dot.active { background: var(--amber); }
.room-badge {
  position: absolute; top: 0.75rem; left: 0.75rem; z-index: 3;
  background: var(--amber); color: white;
  font-size: 0.7rem; font-weight: 700;
  padding: 0.25rem 0.625rem; border-radius: 999px;
}
.room-body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.room-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: white; margin-bottom: 0.4rem; }
.room-desc { color: var(--text-sm); font-size: 0.78rem; margin-bottom: 1rem; line-height: 1.5; }
.amenidades { display: grid; grid-template-columns: 1fr 1fr; gap: 0.2rem 0.5rem; margin-bottom: 1.25rem; }
.amenidades span { color: var(--text-dim); font-size: 0.72rem; }
.room-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.room-price { color: var(--amber); font-weight: 700; font-size: 1.1rem; }
.btn-reservar {
  background: var(--amber); color: white;
  border: none; cursor: pointer;
  font-size: 0.78rem; font-weight: 600;
  padding: 0.5rem 1rem; border-radius: 999px;
  transition: background var(--transition);
}
.btn-reservar:hover { background: hsl(35, 80%, 45%); }

.balcon-divider {
  display: flex; align-items: center; gap: 1.5rem;
  margin: 3.5rem 0 2rem;
}
.divider-line { flex: 1; border-top: 1px solid var(--border); }
.divider-center { text-align: center; }
.rooms-note { color: var(--text-dim); font-size: 0.72rem; text-align: center; margin-top: 1.5rem; }

/* ═══════════════════════════════
   GALLERY
═══════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: 1fr 1fr 1fr; } }
.gallery-item {
  position: relative; aspect-ratio: 4/3;
  overflow: hidden; border-radius: var(--radius);
  border: none; cursor: pointer; padding: 0;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.35); }
.gallery-overlay svg { opacity: 0; transition: opacity var(--transition); }
.gallery-item:hover .gallery-overlay svg { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.lightbox img {
  max-width: min(960px, 100%); max-height: 80vh;
  object-fit: contain; border-radius: var(--radius);
}
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.12); color: white;
  border: none; cursor: pointer;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); color: white;
  border: none; cursor: pointer;
  width: 3rem; height: 3rem; border-radius: 50%;
  font-size: 1.75rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ═══════════════════════════════
   DOCUMENTATION
═══════════════════════════════ */
.doc-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.doc-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-md); font-size: 0.85rem;
  padding: 0.75rem 1.25rem; border-radius: 999px;
  transition: border-color var(--transition), color var(--transition);
}
.doc-link:hover { border-color: hsla(35, 80%, 52%, 0.5); color: var(--amber); }

/* ═══════════════════════════════
   CONTACT
═══════════════════════════════ */
.contact-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-bottom: 3.5rem; }
.btn-wa-lg, .btn-call-lg {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 1.5rem; border-radius: 999px;
  transition: background var(--transition);
}
.btn-wa-lg { background: #16a34a; color: white; }
.btn-wa-lg:hover { background: #15803d; }
.btn-call-lg { background: var(--amber); color: white; }
.btn-call-lg:hover { background: hsl(35, 80%, 45%); }

.map-tabs {
  display: flex; justify-content: center; margin-bottom: 1.5rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 999px; padding: 4px; gap: 4px;
  width: fit-content; margin: 0 auto 1.5rem;
}
.map-tab {
  padding: 0.5rem 1.25rem; border-radius: 999px;
  border: none; cursor: pointer;
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-sm);
  transition: background var(--transition), color var(--transition);
  background: transparent;
}
.map-tab.active { background: var(--amber); color: white; }
.map-tab:hover:not(.active) { color: white; }

.map-layout {
  display: grid; grid-template-columns: 1fr;
  gap: 1.5rem; margin-bottom: 4rem;
}
@media (min-width: 900px) { .map-layout { grid-template-columns: 1fr 1fr; } }
.map-embed-wrap {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  height: 20rem;
}
@media (min-width: 900px) { .map-embed-wrap { height: auto; min-height: 20rem; } }
.map-embed-wrap iframe { display: block; }

.location-cards { display: flex; flex-direction: column; gap: 1rem; }
.location-card {
  text-align: left; width: 100%; cursor: pointer;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
  display: flex; align-items: flex-start; gap: 1rem;
  transition: border-color var(--transition);
}
.location-card:hover { border-color: hsla(35, 80%, 52%, 0.4); }
.location-card.active { border-color: var(--amber); }
.loc-icon-wrap {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  background: var(--bg-input); border-radius: 0.625rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: background var(--transition);
}
.loc-icon-wrap.active { background: var(--amber-bg); }
.loc-info { flex: 1; min-width: 0; }
.loc-header { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin-bottom: 0.25rem; }
.loc-name { font-size: 0.875rem; font-weight: 600; color: var(--text-md); }
.loc-name.active { color: var(--amber); }
.loc-badge {
  font-size: 0.65rem; font-weight: 600;
  background: var(--amber-bg); color: var(--amber);
  padding: 0.2rem 0.5rem; border-radius: 999px; flex-shrink: 0;
}
.loc-addr { color: var(--text-md); font-size: 0.78rem; margin-bottom: 0.2rem; }
.loc-desc { color: var(--text-dim); font-size: 0.75rem; margin-bottom: 0.5rem; }
.loc-maps-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  color: var(--amber); font-size: 0.75rem; font-weight: 500;
  transition: color var(--transition);
}
.loc-maps-link:hover { color: var(--amber-lt); }

/* Marquee */
.convenio-section { border-top: 1px solid var(--border); padding-top: 3rem; }
.marquee-wrap { overflow: hidden; position: relative; }
.marquee-wrap::before, .marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 4rem; z-index: 1;
}
.marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--bg-dark), transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(to left, var(--bg-dark), transparent); }
.marquee-track {
  display: flex; gap: 2rem; align-items: center;
  animation: marquee 24s linear infinite;
  width: max-content;
}
.marquee-item {
  flex-shrink: 0; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 0.625rem;
  width: 8rem; height: 4rem;
  display: flex; align-items: center; justify-content: center; padding: 0.5rem;
}
.marquee-item img { max-height: 2.5rem; max-width: 100%; object-fit: contain; opacity: 0.7; }
.marquee-item img:hover { opacity: 1; }
.marquee-text { color: var(--text-dim); font-size: 0.75rem; font-weight: 500; text-align: center; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.footer { background: hsl(220, 15%, 8%); border-top: 1px solid var(--border); padding: 3rem 0 1.5rem; }
.footer-top {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-top { grid-template-columns: auto 1fr auto; align-items: start; } }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-logo { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; object-fit: cover; }
.footer-name { color: white; font-weight: 700; font-size: 0.95rem; }
.footer-location { color: var(--amber); font-size: 0.75rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 0.25rem 1rem; }
.footer-nav a { color: var(--text-dim); font-size: 0.82rem; transition: color var(--transition); }
.footer-nav a:hover { color: white; }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact p { display: flex; align-items: center; gap: 0.5rem; color: var(--text-sm); font-size: 0.82rem; }
.footer-contact svg { color: var(--amber); flex-shrink: 0; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.25rem; text-align: center; }
.footer-bottom p { color: var(--text-dim); font-size: 0.78rem; }

/* ═══════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════ */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  background: #16a34a; color: white;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(22, 163, 74, 0.55); }

/* ═══════════════════════════════
   MODALS
═══════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.modal-box {
  background: hsl(220, 15%, 14%);
  border: 1px solid hsl(220, 10%, 24%);
  border-radius: 1.25rem;
  width: 100%; max-width: 36rem;
  max-height: 92vh;
  display: flex; flex-direction: column;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}
.modal-box-sm { max-width: 32rem; }
.modal-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.modal-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: white; }
.modal-price { color: var(--amber); font-weight: 700; font-size: 0.9rem; margin-top: 0.25rem; }
.modal-close {
  background: var(--bg-input); color: var(--text-sm);
  border: none; cursor: pointer;
  width: 2rem; height: 2rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-left: 1rem;
  transition: background var(--transition), color var(--transition);
}
.modal-close:hover { background: hsl(220, 15%, 25%); color: white; }

/* Step 1 — question */
.step-question {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 2.5rem 2rem; gap: 1.25rem;
}
.question-icon {
  width: 3.5rem; height: 3.5rem;
  background: var(--amber-bg); border-radius: 0.875rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--amber);
}
.question-title { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; color: white; }
.question-desc { color: var(--text-sm); font-size: 0.82rem; max-width: 22rem; }
.question-btns { display: flex; gap: 0.75rem; width: 100%; max-width: 18rem; }
.btn-yes {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--amber); color: white;
  border: none; cursor: pointer; font-weight: 700; font-size: 0.9rem;
  padding: 0.75rem; border-radius: 999px;
  transition: background var(--transition);
}
.btn-yes:hover { background: hsl(35, 80%, 45%); }
.btn-no {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--bg-card); color: var(--text-md);
  border: 1px solid var(--border); cursor: pointer; font-weight: 700; font-size: 0.9rem;
  padding: 0.75rem; border-radius: 999px;
  transition: all var(--transition);
}
.btn-no:hover { color: white; border-color: hsl(220, 10%, 35%); }

/* Step 2 — form */
#step-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

#step-question {
  flex: 1;
}

.modal-badge-bar {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--amber-bg); border-bottom: 1px solid var(--amber-bd);
  padding: 0.625rem 1.5rem; flex-shrink: 0;
}
.modal-badge-text { color: var(--amber-lt); font-size: 0.78rem; }
.modal-badge-change { background: none; border: none; cursor: pointer; color: var(--text-dim); font-size: 0.75rem; text-decoration: underline; transition: color var(--transition); }
.modal-badge-change:hover { color: var(--text-md); }

.res-form { overflow-y: auto; flex: 1; padding: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .form-grid { grid-template-columns: 1fr; } }
.form-span-2 { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { color: var(--text-md); font-size: 0.75rem; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg-input);
  border: 1px solid var(--border);
  color: white; font-size: 0.85rem;
  padding: 0.625rem 0.75rem; border-radius: 0.625rem;
  outline: none; transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--amber); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 4rem; }
.req { color: var(--amber); }
.opt { color: var(--text-dim); font-weight: 400; }

/* Resumen */
.resumen {
  background: hsl(220, 15%, 18%);
  border: 1px solid var(--border);
  border-radius: 0.75rem; padding: 1rem;
}
.resumen-header {
  display: flex; align-items: center; gap: 0.5rem;
  color: white; font-size: 0.78rem; font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--amber);
}
.resumen-sub { color: var(--text-dim); font-weight: 400; font-size: 0.7rem; margin-left: 0.25rem; }
.resumen-rows { display: flex; flex-direction: column; gap: 0.35rem; }
.resumen-row { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--text-sm); }
.resumen-row span:last-child { color: white; }
.resumen-total {
  display: flex; justify-content: space-between;
  font-weight: 700; font-size: 0.85rem;
  border-top: 1px solid var(--border); padding-top: 0.5rem; margin-top: 0.25rem;
  color: white;
}
.resumen-total span:last-child { color: var(--amber); font-size: 0.95rem; }
.resumen-note { color: var(--text-dim); font-size: 0.68rem; margin-top: 0.5rem; }

/* Terms */
.btn-terms {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--bg-input); color: var(--text-md);
  border: 1px solid var(--border); cursor: pointer;
  font-size: 0.8rem; font-weight: 500;
  padding: 0.75rem 1rem; border-radius: 0.75rem;
  transition: all var(--transition);
}
.btn-terms:hover { border-color: hsla(35, 80%, 52%, 0.5); color: white; }
.btn-terms svg { color: var(--amber); flex-shrink: 0; }
.terms-warning {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--red-bg); border: 1px solid var(--red-bd);
  color: #fca5a5; font-size: 0.78rem;
  padding: 0.625rem 0.875rem; border-radius: 0.625rem; margin-top: 0.5rem;
}
.terms-accepted {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--green-bg); border: 1px solid var(--green-bd);
  color: #86efac; font-size: 0.8rem; font-weight: 500;
  padding: 0.75rem 1rem; border-radius: 0.75rem;
}

/* Modal footer */
.modal-footer {
  display: flex; gap: 0.75rem; padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border); flex-shrink: 0;
}
.btn-submit {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 700; font-size: 0.85rem;
  padding: 0.875rem; border-radius: 999px;
  border: none; cursor: pointer;
  transition: background var(--transition), opacity var(--transition);
}
.btn-submit.ready { background: #16a34a; color: white; }
.btn-submit.ready:hover { background: #15803d; }
.btn-submit.blocked { background: var(--bg-card); color: var(--text-dim); border: 1px solid var(--border); cursor: default; }
.btn-cancelar {
  background: var(--bg-card); color: var(--text-md);
  border: 1px solid var(--border); cursor: pointer;
  font-size: 0.85rem; font-weight: 500;
  padding: 0.875rem 1.25rem; border-radius: 999px;
  transition: background var(--transition);
}
.btn-cancelar:hover { background: hsl(220, 15%, 22%); }

/* Legal modal */
.legal-body { overflow-y: auto; flex: 1; padding: 1.5rem; }
.legal-item {
  background: hsl(220, 15%, 18%);
  border: 1px solid hsl(220, 10%, 24%);
  border-radius: 0.75rem; overflow: hidden; margin-bottom: 0.75rem;
}
.legal-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; cursor: pointer;
  color: white; font-size: 0.85rem; font-weight: 500;
  list-style: none; user-select: none;
  transition: background var(--transition);
}
.legal-item summary:hover { background: hsl(220, 15%, 22%); }
.legal-item summary::-webkit-details-marker { display: none; }
.legal-item summary svg { transition: transform var(--transition); flex-shrink: 0; color: var(--text-dim); }
.legal-item[open] summary svg { transform: rotate(180deg); }
.legal-content {
  padding: 0 1.25rem 1rem; border-top: 1px solid var(--border);
  padding-top: 0.75rem; color: var(--text-sm); font-size: 0.78rem; line-height: 1.7;
}

/* ═══════════════════════════════
   ANIMATIONS
═══════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeInUp 0.7s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }

/* ═══════════════════════════════
   CALENDAR INPUT
═══════════════════════════════ */
input[type="date"] { color-scheme: dark; }
