/* =========================================================
   Majestic Mall — Landing (Ipiales)
   Tokens, tipografía editorial, mobile-first.
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, figure, blockquote { margin: 0; }
ul { padding: 0; list-style: none; }
img, picture, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; border-radius: 4px; }

/* ---------- Tokens ---------- */
:root {
  /* Paleta — navy base + acentos controlados (WCAG AA validado contra blanco/navy) */
  --c-navy:        #1F2967;
  --c-navy-deep:   #161E50;
  --c-navy-soft:   #2A3580;
  --c-text:        #1A1B2E;
  --c-text-soft:   #4A4F6B;
  --c-muted:       #6B6E82;
  --c-line:        #E7E8F0;
  --c-bg:          #FFFFFF;
  --c-bg-soft:     #F7F8FC;
  --c-bg-warm:     #FBFAF7;

  /* Acentos del logo — usar SOLO en tags / hovers / detalles */
  --c-accent:      #F3A418; /* naranja - CTA principal */
  --c-accent-hi:   #E68F00; /* hover naranja, AA contra blanco */
  --c-cyan:        #2AB5CE;
  --c-yellow:      #FBD50A;
  --c-red:         #E23744;
  --c-purple:      #5C2E8A;
  --c-gold:        #C9A227; /* sub-marca Majestic Hotel — solo en la sección hotel */

  /* Categoría → color de tag (texto blanco encima, todos AA) */
  --cat-moda:           #5C2E8A;
  --cat-belleza:        #C42636; /* derivado de #E23744 oscurecido para AA */
  --cat-gastronomia:    #B57303; /* derivado de #F3A418 para AA con blanco */
  --cat-entretenimiento:#0F7E94; /* derivado de #2AB5CE para AA con blanco */
  --cat-servicios:      #1F2967;
  --cat-variedad:       #7A6300; /* derivado de #FBD50A para AA con blanco */

  /* Tipografía */
  --ff-heading: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --fs-xs: 0.8125rem;   /* 13 */
  --fs-sm: 0.9375rem;   /* 15 */
  --fs-base: 1rem;      /* 16 */
  --fs-md: 1.125rem;    /* 18 */
  --fs-lg: 1.375rem;    /* 22 */
  --fs-xl: 1.75rem;     /* 28 */
  --fs-2xl: 2.25rem;    /* 36 */
  --fs-3xl: 2.75rem;    /* 44 */
  --fs-4xl: 3.5rem;     /* 56 */

  /* Espaciado modular */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;

  /* Layout */
  --container: 1180px;
  --nav-h: 68px;   /* alto del navbar sticky — el hero lo descuenta para calzar en pantalla */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Sombras sutiles */
  --sh-1: 0 1px 2px rgba(20, 24, 60, 0.05), 0 1px 1px rgba(20, 24, 60, 0.04);
  --sh-2: 0 10px 24px -12px rgba(20, 24, 60, 0.12), 0 2px 6px rgba(20, 24, 60, 0.05);
  --sh-3: 0 24px 48px -24px rgba(20, 24, 60, 0.22), 0 4px 12px rgba(20, 24, 60, 0.06);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --d-fast: 180ms;
  --d-mid: 320ms;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Base ---------- */
body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--ff-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-text);
  line-height: 1.1;
}

p { color: var(--c-text-soft); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s-4);
}

/* Sección base */
.section {
  padding-block: var(--s-8);
}
.section-tight { padding-block: var(--s-7); }

/* Sección sobre azul — hereda del hero */
.section-dark {
  position: relative;
  color: #fff;
  background:
    radial-gradient(ellipse 60% 55% at 50% 45%, rgba(255, 255, 255, 0.06) 0%, transparent 65%),
    linear-gradient(100deg, #151E52 0%, #1F2967 40%, #2E3C8A 100%);
  overflow: hidden;
  isolation: isolate;
}
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(243, 164, 24, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(46, 60, 138, 0.35) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.section-dark > .container { position: relative; z-index: 1; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255, 255, 255, 0.82); }
.section-dark .eyebrow { color: rgba(255, 255, 255, 0.88); }
.section-dark .eyebrow::before { background: var(--c-accent); }
.section-dark .section-lead { color: rgba(255, 255, 255, 0.82); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-navy);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--c-accent);
  border-radius: 2px;
}

.section-title {
  font-size: var(--fs-2xl);
  margin-top: var(--s-3);
  max-width: 22ch;
}

.section-lead {
  margin-top: var(--s-4);
  font-size: var(--fs-md);
  color: var(--c-text-soft);
  max-width: 56ch;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 0.875rem 1.4rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: var(--fs-sm);
  border-radius: var(--radius-pill);
  transition: transform var(--d-fast) var(--ease),
              background var(--d-fast) var(--ease),
              box-shadow var(--d-fast) var(--ease),
              color var(--d-fast) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(20, 24, 60, 0.28); }
.btn:active { transform: translateY(0); }
.btn .ico { width: 18px; height: 18px; }

.btn-primary {
  background: var(--c-accent);
  color: #1A1B2E;
  box-shadow: 0 8px 18px -8px rgba(243, 164, 24, 0.55);
}
.btn-primary:hover { background: var(--c-accent-hi); color: #fff; }

.btn-dark {
  background: var(--c-navy);
  color: #fff;
}
.btn-dark:hover { background: var(--c-navy-deep); }

.btn-ghost {
  background: transparent;
  color: var(--c-navy);
  border: 1.5px solid rgba(31, 41, 103, 0.18);
}
.btn-ghost:hover {
  background: var(--c-bg-soft);
  border-color: rgba(31, 41, 103, 0.35);
}

.btn-on-dark {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-on-dark:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: background var(--d-mid) var(--ease), border-color var(--d-mid) var(--ease), box-shadow var(--d-mid) var(--ease);
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--c-line);
  box-shadow: 0 4px 16px -8px rgba(20, 24, 60, 0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  height: var(--nav-h);
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--ff-heading);
  font-weight: 700;
  color: var(--c-navy);
}
.nav-brand img {
  width: auto;
  height: 42px;
  object-fit: contain;
  display: block;
}
.nav-brand span { font-size: var(--fs-md); letter-spacing: -0.01em; }

/* Utilidad accesible: contenido oculto visualmente pero disponible para SR/SEO */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-links {
  display: none;
  gap: var(--s-6);
  align-items: center;
}
.nav-links a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-text-soft);
  transition: color var(--d-fast) var(--ease);
}
.nav-links a:hover { color: var(--c-navy); }

.nav-cta { display: none; }

.nav-toggle {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--c-navy);
}
.nav-toggle:hover { background: var(--c-bg-soft); }

.nav-mobile {
  display: none;
  padding: var(--s-4) 0 var(--s-5);
  border-top: 1px solid var(--c-line);
}
.nav-mobile.is-open { display: block; }
.nav-mobile ul { display: flex; flex-direction: column; gap: var(--s-2); }
.nav-mobile a {
  display: block;
  padding: var(--s-3) var(--s-2);
  font-weight: 500;
  color: var(--c-text);
  border-radius: 8px;
}
.nav-mobile a:hover { background: var(--c-bg-soft); }
.nav-mobile .btn { width: 100%; margin-top: var(--s-3); }

/* ---------- Hero (foto de familia a sangre + contenido sobre el degradado) ---------- */
.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-content: end;
  min-height: calc(100svh - var(--nav-h));
  padding-block: var(--s-7) var(--s-5);
  color: #fff;
  background: var(--c-navy-deep);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  transform-origin: 50% 42%;
  animation: heroPhotoZoom 26s ease-in-out infinite alternate;
}
/* Degradado: en móvil sube desde abajo y termina en azul sólido, para que el
   texto se apoye en color plano y la familia quede limpia en la mitad de arriba */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(11, 17, 48, 0.42) 0%,
    rgba(11, 17, 48, 0.12) 22%,
    rgba(15, 22, 60, 0.62) 48%,
    rgba(21, 30, 82, 0.92) 70%,
    #151E52 88%
  );
}
@keyframes heroPhotoZoom {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.06) translate(-0.6%, -0.8%); }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-4);
}
.hero-brand {
  width: min(210px, 56vw);
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
}

/* Entrada escalonada al cargar (el hero está sobre la línea de flote: se anima
   con CSS y no con el IntersectionObserver de .reveal, que provoca parpadeo) */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroBrandIn {
  from { opacity: 0; transform: translateY(14px) scale(0.94); }
  to   { opacity: 1; transform: none; }
}
.hero-content > * { animation: heroIn 700ms var(--ease) both; }
.hero-content > .hero-brand { animation: heroBrandIn 800ms var(--ease) both; }
.hero-content > .hero-tagline { animation-delay: 150ms; }
.hero-content > .hero-actions { animation-delay: 300ms; }
.hero-content > .hero-meta    { animation-delay: 450ms; }

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; transform: none; }
}
.hero-tagline {
  font-family: var(--ff-heading);
  font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: #fff;
  max-width: 22ch;
  text-wrap: balance;
  text-shadow: 0 2px 14px rgba(9, 14, 40, 0.55);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}
/* Horario y Dirección comparten fila y WhatsApp ocupa la de abajo: el bloque
   baja de ~230px a ~150px y deja las caras de la foto libres en móvil */
.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: start;
  align-items: start;
  gap: var(--s-4) var(--s-6);
  padding-top: var(--s-4);
  margin-top: var(--s-1);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  width: 100%;
}
.hero-meta-item:last-child { grid-column: 1 / -1; }
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.hero-meta-k {
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.hero-meta-v {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: var(--fs-md);
  color: #fff;
}
.hero-wa-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}
.hero-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0.4rem 0.85rem;
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: #fff;
  background: rgba(37, 211, 102, 0.16);
  border: 1px solid rgba(37, 211, 102, 0.45);
  border-radius: var(--radius-pill);
  transition: background var(--d-fast) var(--ease), border-color var(--d-fast) var(--ease), transform var(--d-fast) var(--ease);
}
.hero-wa:hover {
  background: rgba(37, 211, 102, 0.3);
  border-color: rgba(37, 211, 102, 0.8);
  transform: translateY(-1px);
}
.hero-wa svg {
  width: 15px;
  height: 15px;
  color: #4AE07E;
}

@media (min-width: 900px) {
  .hero {
    align-content: center;
    min-height: min(calc(100svh - var(--nav-h)), 760px);
    padding-block: var(--s-6);
  }
  /* En pantalla ancha el degradado entra por la izquierda y muere antes de la
     mitad: el contenido se apoya en la zona oscura y la familia queda con su
     luz original al centro-derecha */
  .hero-bg { object-position: 50% 32%; transform-origin: 50% 32%; }
  .hero-scrim {
    background:
      linear-gradient(90deg,
        rgba(11, 17, 48, 0.92) 0%,
        rgba(13, 20, 55, 0.80) 18%,
        rgba(19, 27, 74, 0.44) 33%,
        rgba(21, 30, 82, 0.14) 44%,
        rgba(21, 30, 82, 0) 54%),
      linear-gradient(180deg,
        rgba(11, 17, 48, 0.30) 0%,
        rgba(11, 17, 48, 0) 22%,
        rgba(11, 17, 48, 0) 76%,
        rgba(11, 17, 48, 0.34) 100%);
  }
  .hero-content {
    max-width: 30rem;
    gap: var(--s-5);
  }
  .hero-brand { width: clamp(250px, 23vw, 340px); }
  .hero-tagline { max-width: 24ch; }
}
/* Divisor onda — guiño al logo (sutil) */
.wave-divider {
  display: block;
  width: 100%;
  height: 28px;
  color: var(--c-bg);
}
.wave-divider svg { width: 100%; height: 100%; display: block; }

/* ---------- Modal de tienda ---------- */
.store-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--d-mid) var(--ease);
}
.store-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.store-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 60, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.store-modal-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -20px rgba(20, 24, 60, 0.45);
  padding: var(--s-7) var(--s-6) var(--s-6);
  text-align: center;
  transform: translateY(20px) scale(0.96);
  transition: transform var(--d-mid) var(--ease);
}
.store-modal.is-open .store-modal-card { transform: translateY(0) scale(1); }
.store-modal-close {
  position: absolute;
  top: var(--s-3);
  right: var(--s-3);
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--c-text-soft);
  transition: background var(--d-fast) var(--ease), color var(--d-fast) var(--ease);
}
.store-modal-close:hover { background: var(--c-bg-soft); color: var(--c-text); }
.store-modal-close svg { width: 20px; height: 20px; }
.store-modal-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 22px;
  background: var(--c-bg-soft);
  margin-bottom: var(--s-4);
  overflow: hidden;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 2.25rem;
  color: #fff;
  box-shadow: var(--sh-1);
}
.store-modal-logo img { width: 100%; height: 100%; object-fit: cover; }
.store-modal-tag {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: var(--fs-xs);
  color: #fff;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  margin-bottom: var(--s-3);
}
.store-modal-card h3 {
  font-size: var(--fs-xl);
  color: var(--c-text);
  margin: 0;
  letter-spacing: -0.02em;
}
.store-modal-card p {
  color: var(--c-text-soft);
  font-size: var(--fs-md);
  margin-top: var(--s-3);
  line-height: 1.55;
}
.store-modal-wa {
  margin-top: var(--s-5);
  width: 100%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 22px -8px rgba(37, 211, 102, 0.55);
}
.store-modal-wa:hover { background: #1EBE5A; color: #fff; }

.store-card {
  cursor: pointer;
}
.store-card:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
}

body.modal-open { overflow: hidden; }

/* ---------- Slider genérico (autoplay + swipe + dots) ---------- */
.slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--c-bg-soft);
  box-shadow: var(--sh-2);
  isolation: isolate;
}
.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 700ms var(--ease);
  touch-action: pan-y;
  will-change: transform;
}
.slider-track.is-dragging {
  transition: none;
  cursor: grabbing;
}
.slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.slider-dots {
  position: absolute;
  bottom: var(--s-4);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--s-2);
  z-index: 2;
  padding: 0.5rem 0.85rem;
  background: rgba(20, 24, 60, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  padding: 0;
  cursor: pointer;
  transition: background var(--d-fast) var(--ease), width var(--d-mid) var(--ease);
}
.slider-dot:hover { background: rgba(255, 255, 255, 0.7); }
.slider-dot.is-active {
  background: #fff;
  width: 22px;
  border-radius: var(--radius-pill);
}

/* ---------- Propuesta de valor ---------- */
.pv-grid {
  display: grid;
  gap: var(--s-4);
  margin-top: var(--s-6);
}
.pv-card {
  padding: var(--s-6);
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--sh-1);
  transition: transform var(--d-mid) var(--ease), box-shadow var(--d-mid) var(--ease), border-color var(--d-mid) var(--ease);
}
.pv-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
  border-color: rgba(31, 41, 103, 0.14);
}
.pv-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--c-bg-soft);
  border-radius: 14px;
  color: var(--c-navy);
  margin-bottom: var(--s-4);
}
.pv-icon svg { width: 24px; height: 24px; }
.pv-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--s-2);
}
.pv-card p { font-size: var(--fs-sm); }

/* ---------- Directorio ---------- */
.dir-head {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.dir-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 0.4rem 0.85rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  background: #FFF7E6;
  color: #7A5300;
  border: 1px solid #F3D88A;
  border-radius: var(--radius-pill);
  width: max-content;
}
.dir-badge::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--c-accent);
  border-radius: 50%;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin: var(--s-5) 0 var(--s-6);
}
.chip {
  padding: 0.55rem 1rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-text-soft);
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-pill);
  transition: all var(--d-fast) var(--ease);
}
.chip:hover { color: var(--c-navy); border-color: rgba(31, 41, 103, 0.3); }
.chip.is-active {
  background: var(--c-navy);
  color: #fff;
  border-color: var(--c-navy);
}

.dir-grid {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
}
.store-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: var(--s-5);
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  transition: transform var(--d-mid) var(--ease), box-shadow var(--d-mid) var(--ease), border-color var(--d-mid) var(--ease);
}
.store-head {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.store-logo {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid var(--c-line);
  object-fit: cover;
  background: #fff;
}
.store-logo--mono {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  background: var(--mono-bg, var(--c-navy));
  border-color: transparent;
}
.store-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.store-title .store-tag,
.store-title .store-tags { align-self: flex-start; }
.store-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #E23744, #F3A418, #FBD50A, #2AB5CE, #5C2E8A);
  opacity: 0;
  transition: opacity var(--d-mid) var(--ease);
}
.store-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-3);
  border-color: rgba(31, 41, 103, 0.2);
}
.store-card:hover::before { opacity: 1; }
.store-card:hover .store-logo { transform: scale(1.06); }
.store-logo { transition: transform var(--d-mid) var(--ease); }
.store-card h3 {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.2;
}
.store-card p { font-size: var(--fs-sm); color: var(--c-muted); }
.store-tag {
  align-self: flex-start;
  padding: 0.25rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  border-radius: var(--radius-pill);
}
.tag-moda { background: var(--cat-moda); }
.tag-belleza { background: var(--cat-belleza); }
.tag-gastronomia { background: var(--cat-gastronomia); }
.tag-entretenimiento { background: var(--cat-entretenimiento); }
.tag-servicios { background: var(--cat-servicios); }
.tag-variedad { background: var(--cat-variedad); }

.store-card.is-hidden { display: none; }

/* Tienda recién inaugurada */
.store-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-2);
}
.store-new {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.25rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7A5300;
  background: #FFF7E6;
  border: 1px solid #F3D88A;
  border-radius: var(--radius-pill);
}
.store-new::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
}
.store-card.is-new {
  border-color: #F3D88A;
  box-shadow: 0 0 0 1px #F3D88A, var(--sh-1);
}

/* ---------- Entretenimiento ---------- */
.entre-grid {
  display: grid;
  gap: var(--s-5);
  margin-top: var(--s-6);
}
.entre-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--c-navy);
  color: #fff;
  isolation: isolate;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--s-6);
  transition: transform var(--d-mid) var(--ease);
}
.entre-card:hover { transform: translateY(-3px); }
.entre-card .entre-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.entre-card .entre-slider {
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: 0;
  box-shadow: none;
  background: var(--c-navy);
}
.entre-card .entre-slider .slider-dots {
  top: var(--s-4);
  bottom: auto;
}
.entre-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(22, 30, 80, 0.45) 0%, rgba(22, 30, 80, 0.72) 55%, rgba(22, 30, 80, 0.95) 100%);
}
.entre-card .pill {
  align-self: flex-start;
  padding: 0.35rem 0.8rem;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}
.entre-card h3 {
  font-size: var(--fs-xl);
  color: #fff;
  letter-spacing: -0.02em;
}
.entre-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-sm);
  margin-top: var(--s-2);
  max-width: 38ch;
}
.entre-card a.entre-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  margin-top: var(--s-4);
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--c-navy);
  border-radius: var(--radius-pill);
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: background var(--d-fast) var(--ease);
  width: max-content;
}
.entre-card a.entre-cta:hover { background: #fff; }
.entre-card a.entre-cta svg { width: 16px; height: 16px; }

.entre-card.no-bg {
  background: linear-gradient(135deg, #1F2967 0%, #5C2E8A 100%);
}
.entre-card.no-bg::after { display: none; }

/* Cards de entre sobre section-dark — bordes que definan mejor */
.section-dark .entre-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.55);
}
.section-dark .entre-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.65);
  border-color: rgba(243, 164, 24, 0.35);
}

/* ---------- Eventos ---------- */
.eventos-list {
  display: grid;
  gap: var(--s-5);
  margin-top: var(--s-6);
}
.evento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sh-1);
  transition: box-shadow var(--d-mid) var(--ease), transform var(--d-mid) var(--ease);
}
.evento:hover { box-shadow: var(--sh-2); transform: translateY(-2px); }
.evento-media {
  aspect-ratio: 4 / 3;
  background: var(--c-bg-soft);
  overflow: hidden;
}
.evento-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--d-mid) var(--ease);
}
.evento:hover .evento-media img { transform: scale(1.03); }
.evento-body {
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.evento-meta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent-hi);
}
.evento-meta::before {
  content: "";
  width: 14px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.evento h3 {
  font-size: var(--fs-xl);
  letter-spacing: -0.02em;
}
.evento p { font-size: var(--fs-sm); color: var(--c-text-soft); }
.evento a.evento-cta {
  margin-top: var(--s-2);
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--c-navy);
  font-size: var(--fs-sm);
  font-weight: 600;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
  transition: color var(--d-fast) var(--ease);
}
.evento a.evento-cta:hover { color: var(--c-accent-hi); }
.evento a.evento-cta svg { width: 14px; height: 14px; }

/* ---------- Zona Familiar ---------- */
.familiar {
  background: var(--c-bg-warm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
.familiar-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--c-navy);
}
.familiar-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.familiar-body {
  padding: var(--s-7) var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.familiar-body h2 { font-size: var(--fs-2xl); }
.familiar-body p { font-size: var(--fs-md); }
.magis-mark {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  background: #FFF;
  border: 1px solid var(--c-line);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--c-purple);
  width: max-content;
}
.magis-mark .stripe {
  width: 22px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(90deg, #E23744, #F3A418, #FBD50A, #2AB5CE, #5C2E8A);
}

/* ---------- Hotel (Majestic Hotel + Booking) ---------- */
.hotel-card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--c-navy-deep);
  color: #fff;
  box-shadow: var(--sh-3);
}
.hotel-media {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-navy);
}
.hotel-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hotel-body {
  padding: var(--s-7) var(--s-6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s-4);
}
.hotel-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 0.4rem 0.85rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold);
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: var(--radius-pill);
  width: max-content;
}
.hotel-body h2 {
  color: #fff;
  font-size: var(--fs-2xl);
  max-width: 16ch;
}
.hotel-body p {
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--fs-md);
  max-width: 48ch;
}
.hotel-perks {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-5);
}
.hotel-perks li {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}
.hotel-perks li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
  flex: 0 0 auto;
}
.hotel-actions { margin-top: var(--s-2); }

/* Hotel sobre section-dark — resalta card con acento dorado */
.section-dark .hotel-card {
  border: 1px solid rgba(201, 162, 39, 0.28);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(201, 162, 39, 0.05);
}

/* ---------- Ubicación ---------- */
.ubi-grid {
  display: grid;
  gap: var(--s-5);
  margin-top: var(--s-6);
}
.ubi-card {
  display: grid;
  gap: var(--s-5);
}
.ubi-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.ubi-item {
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
}
.ubi-item > div { min-width: 0; }
.ubi-item-ico {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  background: var(--c-bg-soft);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-navy);
}
.ubi-item-ico svg { width: 20px; height: 20px; }
.ubi-item-k {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.ubi-item-v {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: var(--fs-md);
  color: var(--c-text);
  margin-top: 2px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.ubi-item-v a { transition: color var(--d-fast) var(--ease); }
.ubi-item-v a:hover { color: var(--c-accent-hi); }

.ubi-map {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: var(--c-bg-soft);
}
.ubi-map iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
}

/* ---------- Arriendo (CTA B2B) ---------- */
.arriendo {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--c-navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--s-8) var(--s-6);
}
.arriendo::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(243, 164, 24, 0.22) 0%, transparent 70%);
  z-index: -1;
}
.arriendo::after {
  content: "";
  position: absolute;
  bottom: -80px; left: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(42, 181, 206, 0.18) 0%, transparent 70%);
  z-index: -1;
}
.arriendo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 0.4rem 0.85rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(243, 164, 24, 0.16);
  border: 1px solid rgba(243, 164, 24, 0.4);
  color: var(--c-accent);
  border-radius: var(--radius-pill);
}
.arriendo h2 {
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  color: #fff;
  margin-top: var(--s-4);
  max-width: 18ch;
}
.arriendo p {
  margin-top: var(--s-4);
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--fs-md);
  max-width: 56ch;
}
.arriendo-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-top: var(--s-5);
}
.arriendo-bullet {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.92);
}
.arriendo-bullet svg { width: 18px; height: 18px; color: var(--c-accent); }
.arriendo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-6);
}

/* ---------- Redes ---------- */
.redes-grid {
  display: grid;
  gap: var(--s-4);
  margin-top: var(--s-6);
  grid-template-columns: 1fr;
}
.red {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-5);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  background: var(--c-bg);
  transition: transform var(--d-mid) var(--ease), box-shadow var(--d-mid) var(--ease), border-color var(--d-mid) var(--ease);
}
.red:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-2);
  border-color: rgba(31, 41, 103, 0.18);
}
.red-ico {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.red-ico svg { width: 22px; height: 22px; }
.red-ico.ig { background: #C13584; }
.red-ico.fb { background: #1877F2; }
.red-ico.tt { background: #161823; }
.red-k {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.red-v {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: var(--fs-md);
  color: var(--c-text);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--c-navy-deep);
  color: rgba(255, 255, 255, 0.78);
  padding-block: var(--s-8) var(--s-5);
  margin-top: var(--s-8);
}
.footer-top {
  display: grid;
  gap: var(--s-6);
  grid-template-columns: 1fr;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.footer-brand .nav-brand { color: #fff; }
.footer-brand .nav-brand span { color: #fff; }
.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--fs-sm);
  max-width: 38ch;
}
.footer h4 {
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}
.footer ul { display: flex; flex-direction: column; gap: var(--s-2); }
.footer ul a, .footer ul li {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--d-fast) var(--ease);
}
.footer ul a:hover { color: #fff; }
.footer-bottom {
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  align-items: flex-start;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.55), 0 2px 6px rgba(0,0,0,0.15);
  transition: transform var(--d-fast) var(--ease), box-shadow var(--d-fast) var(--ease);
}
.wa-float:hover { transform: translateY(-2px) scale(1.04); }
.wa-float svg { width: 28px; height: 28px; }
.wa-float::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: wa-pulse 2.6s var(--ease) infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(0.85); opacity: 0.85; }
  70% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* ---------- Reveal on scroll (más notorio) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger sutil dentro de grids con .reveal en cascada */
.pv-grid .reveal:nth-child(1),
.eventos-list .reveal:nth-child(1) { transition-delay: 0ms; }
.pv-grid .reveal:nth-child(2),
.eventos-list .reveal:nth-child(2) { transition-delay: 120ms; }
.pv-grid .reveal:nth-child(3),
.eventos-list .reveal:nth-child(3) { transition-delay: 240ms; }

/* ---------- Skip link ---------- */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: var(--s-3) var(--s-4);
  background: var(--c-navy);
  color: #fff;
  z-index: 100;
  border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

/* ---------- Plaza Gastronómica ---------- */
.gastro-slider {
  margin-top: var(--s-6);
  aspect-ratio: 16 / 10;
  max-height: 620px;
}
.gastro-foot {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-line);
}
.gastro-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-5);
}
.gastro-bullets li {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-text);
}
.gastro-bullets li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  flex: 0 0 auto;
}

/* ---------- Eventos sin foto (flat) ---------- */
.evento-flat {
  grid-template-columns: 1fr !important;
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  background: var(--c-bg);
}
.evento-flat .evento-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--c-bg-soft);
  color: var(--c-navy);
  margin-bottom: var(--s-2);
}
.evento-flat .evento-ico svg { width: 26px; height: 26px; }
.evento-flat .evento-meta { margin-top: 0; }

/* ---------- Ubicación: foto + mapa ---------- */
.ubi-visual {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
}
.ubi-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--c-line);
  background: var(--c-bg-soft);
}
.ubi-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* =========================================================
   Breakpoints
   ========================================================= */

@media (min-width: 640px) {
  .pv-grid { grid-template-columns: repeat(2, 1fr); }
  .dir-grid { grid-template-columns: repeat(2, 1fr); }
  .redes-grid { grid-template-columns: repeat(3, 1fr); }
  .entre-grid { grid-template-columns: repeat(2, 1fr); }
  .eventos-list { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .section { padding-block: var(--s-9); }
  .section-title { font-size: var(--fs-3xl); }
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }

  .evento {
    grid-template-columns: 320px 1fr;
  }
  .evento-media { aspect-ratio: auto; height: 100%; }
  .evento-flat { padding: var(--s-7); }

  .gastro-foot {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-6);
  }

  .ubi-visual {
    grid-template-columns: 1fr;
  }

  .familiar {
    grid-template-columns: 0.95fr 1.05fr;
  }
  .familiar-media { aspect-ratio: auto; }
  .familiar-body { padding: var(--s-9); }

  .hotel-card { grid-template-columns: 1.05fr 0.95fr; }
  .hotel-media { aspect-ratio: auto; }
  .hotel-body { padding: var(--s-8) var(--s-8); }

  .ubi-grid {
    grid-template-columns: 1fr 1.15fr;
    gap: var(--s-7);
  }
  .arriendo { padding: var(--s-9) var(--s-8); }

  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .pv-grid { grid-template-columns: repeat(3, 1fr); }
  .dir-grid { grid-template-columns: repeat(3, 1fr); }
  .entre-grid {
    grid-template-columns: 1.3fr 1fr;
  }
  .entre-card { min-height: 460px; }
  .entre-card:first-child h3 { font-size: var(--fs-2xl); }
  .eventos-list { grid-template-columns: repeat(3, 1fr); }
  .section-title { font-size: var(--fs-3xl); }
}

@media (min-width: 1280px) {
  .container { padding-inline: var(--s-6); }
  .dir-grid { grid-template-columns: repeat(4, 1fr); }
}
