/* ─── SISTEMA DE DISEÑO DE ARENAS DE LA PUNTA ─── */
:root {
  /* Paleta de colores inspirada en las sierras de San Luis */
  --gold: #C59B27;
  --gold-light: #E0C068;
  --gold-dark: #9A771C;
  --gold-btn: #A37F1D;
  --green: #2D5A27;
  --green-light: #44803C;
  --green-dark: #1E3F1A;
  --cream: #FAF6F0;
  --cream-dark: #EFEAE0;
  --cream-light: #FDFBF7;
  --bg: #FAF6F0;
  --dark: #1C1A17;
  --dark-surface: #25221E;
  --text: #3D3628;
  --muted: #7A7060;
  --white: #FFFFFF;
  
  /* Utilidades globales */
  --r: 16px;
  --r-lg: 24px;
  --shadow-sm: 0 4px 12px rgba(28, 26, 23, 0.04);
  --shadow-md: 0 12px 24px rgba(28, 26, 23, 0.08);
  --shadow-lg: 0 20px 40px rgba(28, 26, 23, 0.12);
  --shadow-premium: 0 30px 60px rgba(28, 26, 23, 0.18);
  --t: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-title: 'Lora', serif;
  --font-body: 'Inter', sans-serif;
}

/* ─── RESET Y GENERALES ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

/* Scrollbar premium */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--cream-dark);
  border: 2px solid var(--bg);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

/* ─── NAV DE ALTO IMPACTO (GLASSMORPHISM) ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 80px;
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(239, 234, 224, 0.5);
  transition: all var(--t);
}

nav.scrolled {
  height: 68px;
  background: rgba(250, 246, 240, 0.96);
  border-bottom-color: var(--cream-dark);
  box-shadow: var(--shadow-sm);
}

.nav-brand-container {
  display: flex;
  align-items: center;
}

.logo-nav {
  height: 42px;
  width: auto;
  transition: transform var(--t);
}

nav.scrolled .logo-nav {
  height: 36px;
}

.logo-nav:hover {
  transform: scale(1.03);
}

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

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color var(--t);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  left: 0;
  right: 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-dark);
}

.nav-cta {
  background: var(--gold-btn);
  color: var(--white) !important;
  height: 38px;
  padding: 0 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(163, 127, 29, 0.25);
  transition: all var(--t) !important;
  border: 1px solid transparent;
  line-height: 1;
}

/* Botón Cumple Kids en nav */
.nav-cumple-btn {
  background: linear-gradient(135deg, #C84B7A, #E07A28);
  color: var(--white) !important;
  height: 38px;
  padding: 0 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(200, 75, 122, 0.35);
  transition: all var(--t) !important;
  border: none;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(163, 127, 29, 0.35);
}

.nav-cta::after {
  display: none !important;
}

.nav-cumple-btn:hover {
  background: linear-gradient(135deg, #E05590, #F08C40) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(200, 75, 122, 0.45);
}

.nav-cumple-btn::after {
  display: none !important;
}

/* Hamburguesa móvil */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--text);
  display: block;
  transition: all var(--t);
  transform-origin: 1px;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(2px, 1px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(2px, -1px);
}

/* Menú móvil deslizante */
.mob-menu {
  position: fixed;
  inset: 0;
  top: 80px;
  z-index: 199;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 3rem;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.mob-menu a {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: color var(--t);
}

.mob-menu a:hover {
  color: var(--gold);
}

.mob-menu .nav-cta {
  font-family: var(--font-body);
  font-size: 1.1rem !important;
  padding: 0.8rem 2.5rem;
  margin-top: 1rem;
}

/* ─── HERO CON VIDEO Y TEXTO PREMIUM ─── */
.hero {
  height: 100vh;
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #12100e;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.6;
}

/* Fallback si no carga el video: imagen generada */
.hero-img-fallback {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero_complex.png');
  background-size: cover;
  background-position: center;
  opacity: 0.78;
  transition: opacity 1s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    rgba(20, 17, 14, 0.15) 0%, 
    rgba(20, 17, 14, 0.45) 65%, 
    #1c1a17 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 900px;
  margin-top: 40px;
}

.hero-h1 {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 5.8vw, 4.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  letter-spacing: -0.01em;
}

.hero-sub {
  font-style: italic;
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--gold-btn);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(163, 127, 29, 0.35);
  transition: all var(--t);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-btn:hover {
  background: var(--gold-light);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(163, 127, 29, 0.5);
}

.hero-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.hero-btn:hover svg {
  transform: translateY(4px);
}

/* ─── BANDA DE PROMOCIONES SCROLLING ─── */
.promo-band {
  background: var(--dark);
  overflow: hidden;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-track {
  display: flex;
  white-space: nowrap;
  animation: scroll-band 35s linear infinite;
}

.promo-track:hover {
  animation-play-state: paused;
}

.promo-item {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 0 3.5rem;
  flex-shrink: 0;
}

.promo-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: var(--gold);
}

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

/* ─── SECCIONES Y CONTENEDOR GENERAL ─── */
.section-pad {
  padding: 6.5rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 0.8rem;
  position: relative;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--muted);
  text-align: center;
  max-width: 580px;
  margin: 0 auto 4rem;
  line-height: 1.8;
}

/* ─── BENTO GRID DE SECTORES ─── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  width: 100%;
}

.bento-card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
  border: 1px solid rgba(61, 54, 40, 0.05);
}

/* Distribución Bento Grid - Layout Premium */
.bento-hotel {
  grid-column: span 7;
  height: 380px;
}

.bento-resto {
  grid-column: span 5;
  height: 380px;
}

.bento-eventos {
  grid-column: span 3;
  height: 320px;
}

.bento-hipodromo {
  grid-column: span 3;
  height: 320px;
}

.bento-play {
  grid-column: span 4;
  height: 280px;
}

.bento-patio {
  grid-column: span 4;
  height: 280px;
}

.bento-plaza {
  grid-column: span 4;
  height: 280px;
}

.bento-cumple {
  grid-column: span 6;
  height: 320px;
}

.bento-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

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

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, 
    rgba(20, 17, 14, 0.85) 0%, 
    rgba(20, 17, 14, 0.35) 60%, 
    transparent 100%
  );
  z-index: 2;
  transition: background var(--t);
}

.bento-card:hover .bento-overlay {
  background: linear-gradient(to top, 
    rgba(20, 17, 14, 0.95) 0%, 
    rgba(20, 17, 14, 0.5) 60%, 
    rgba(20, 17, 14, 0.1) 100%
  );
}

.bento-body {
  position: relative;
  z-index: 3;
  padding: 1.8rem;
  color: var(--white);
  transition: transform var(--t);
}

.bento-card:hover .bento-body {
  transform: translateY(-4px);
}

.bento-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.bento-title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.4rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.bento-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  max-width: 85%;
  margin-bottom: 0.2rem;
}

/* Indicador de "Ver más" */
.bento-arrow {
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: scale(0.8);
  z-index: 3;
  transition: all var(--t);
  backdrop-filter: blur(8px);
}

.bento-card:hover .bento-arrow {
  opacity: 1;
  transform: scale(1);
  background: var(--gold);
  border-color: var(--gold);
}

.bento-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  stroke-width: 2.5;
  fill: none;
}

/* Badges sobre tarjetas */
.bento-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--gold-btn);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  z-index: 3;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
}

.bento-badge-green {
  background: var(--green);
}

/* ─── SECCIÓN "TODO CONECTADO" ─── */
.conectado {
  background: var(--cream-dark);
  padding: 6.5rem 0;
}

.con-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5.5rem;
  align-items: center;
}

.con-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.8rem;
  display: block;
}

.con-h2 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.con-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2.2rem;
}

.con-features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.con-feat {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
}

.con-feat svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gold);
}

.con-visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  aspect-ratio: 1.1;
  background: var(--dark);
}

.con-map-placeholder {
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at center, rgba(197, 175, 39, 0.1) 0%, rgba(28, 26, 23, 0.95) 100%), url('../assets/images/hero_complex.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}

.con-map-icon-group {
  text-align: center;
  color: var(--white);
  padding: 2rem;
  z-index: 2;
}

.con-map-icon-group svg {
  width: 64px;
  height: 64px;
  stroke: var(--gold-light);
  stroke-width: 1.2;
  margin-bottom: 1rem;
}

.con-map-icon-group p {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.con-map-btn {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--white);
  color: var(--text);
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-dark);
  white-space: nowrap;
  transition: all var(--t);
  z-index: 3;
}

.con-map-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateX(-50%) translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.con-map-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ─── SECCIÓN INSTAGRAM MOCK ─── */
.instagram {
  padding: 6rem 0;
  background: var(--white);
}

.ig-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.ig-title-area {
  flex-grow: 1;
}

.ig-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
}

.ig-sub {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

.ig-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-decoration: none;
  border-bottom: 2px solid var(--gold-light);
  padding-bottom: 4px;
  transition: all var(--t);
}

.ig-follow-btn:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
  transform: translateY(-2px);
}

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

.ig-card {
  aspect-ratio: 1;
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream);
  text-decoration: none;
}

.ig-card-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.ig-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 14, 0);
  transition: background 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  gap: 8px;
}

.ig-card:hover .ig-card-overlay {
  background: rgba(20, 17, 14, 0.5);
}

.ig-card-info {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 6px;
}

.ig-card-icon {
  width: 32px;
  height: 32px;
  fill: var(--white);
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ig-card:hover .ig-card-icon {
  opacity: 1;
  transform: scale(1);
}

.ig-card:hover .ig-card-info {
  opacity: 1;
  transform: translateY(0);
}

.ig-card-info svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

/* ─── MODAL PREMIUM DE DETALLES (SLIDE UP) ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 17, 14, 0.6);
  backdrop-filter: blur(8px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.modal-window {
  background: var(--cream-light);
  width: 90%;
  max-width: 760px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transform: translateY(40px) scale(0.96);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  border: 1px solid rgba(61, 54, 40, 0.08);
}

.modal-overlay.open .modal-window {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-header-img {
  width: 100%;
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.modal-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--cream-light) 0%, rgba(20, 17, 14, 0.4) 100%);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 38px;
  height: 38px;
  background: rgba(20, 17, 14, 0.5);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--t);
  backdrop-filter: blur(4px);
}

.modal-close-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(90deg);
}

.modal-body {
  padding: 2.5rem;
}

.modal-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.modal-title {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.modal-content {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.modal-content strong {
  color: var(--text);
}

.modal-features-list {
  margin: 1.2rem 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.modal-features-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text);
}

.modal-features-list li svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.modal-footer {
  display: flex;
  gap: 1rem;
  border-top: 1px solid var(--cream-dark);
  padding-top: 1.8rem;
}

.modal-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--gold-btn);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(163, 127, 29, 0.2);
  transition: all var(--t);
  flex-grow: 1;
}

.modal-cta-primary:hover {
  background: var(--gold-light);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(163, 127, 29, 0.3);
}

.modal-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--text);
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--cream-dark);
  transition: all var(--t);
  flex-grow: 1;
}

.modal-cta-secondary:hover {
  background: var(--cream-dark);
  transform: translateY(-2px);
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 5.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

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

.logo-footer {
  height: 44px;
  width: auto;
  margin-bottom: 1.25rem;
  align-self: flex-start;
}

.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 0.85rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  transition: all var(--t);
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--t);
}

.footer-col ul a:hover {
  color: var(--gold-light);
  padding-left: 2px;
}

.footer-newsletter p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-input {
  padding: 0.8rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  font-family: var(--font-body);
  transition: all var(--t);
  outline: none;
}

.newsletter-input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
}

.newsletter-btn {
  background: var(--gold-btn);
  color: var(--white);
  padding: 0.8rem 1.1rem;
  border: none;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--t);
  font-family: var(--font-body);
}

.newsletter-btn:hover {
  background: var(--gold-light);
  color: var(--dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ─── WHATSAPP FLOTANTE PREMIUM ─── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 190;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.wa-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.55);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

/* ─── MEDIA QUERIES (RESPONSIVE) ─── */
@media (max-width: 1024px) {
  nav {
    padding: 0 2rem;
  }
  
  .bento-hotel {
    grid-column: span 12;
    height: 320px;
  }
  .bento-resto {
    grid-column: span 12;
    height: 320px;
  }
  .bento-eventos,
  .bento-hipodromo,
  .bento-play,
  .bento-patio,
  .bento-plaza {
    grid-column: span 6;
    height: 250px;
  }

  .bento-cumple {
    grid-column: span 12;
    height: 280px;
  }
  
  .con-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  nav {
    height: 70px;
  }
  
  .logo-nav {
    height: 34px;
  }
  
  .nav-links {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .section-pad {
    padding: 4.5rem 0;
  }
  
  .bento-eventos,
  .bento-hipodromo,
  .bento-play,
  .bento-patio,
  .bento-plaza,
  .bento-cumple {
    grid-column: span 12;
    height: 240px;
  }
  
  .modal-window {
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
  }
  
  .modal-features-list {
    grid-template-columns: 1fr;
  }
  
  .modal-footer {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero-h1 {
    font-size: 1.9rem;
  }

  .hero-h1 span {
    white-space: normal;
  }

  /* Botón Cumple Kids en menú móvil */
  .mob-cumple-btn {
    font-family: var(--font-body);
    font-size: 1rem !important;
    font-weight: 700 !important;
    padding: 0.8rem 2rem;
    border-radius: 100px;
    margin-top: 0.5rem;
    height: auto;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .ig-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
}
