/* ─── VARIABLES ─────────────────────────────────────────────── */
:root {
  --pink:        #ff0080;
  --pink-light:  #ff4da6;
  --pink-dark:   #cc0066;
  --pink-glow:   rgba(255, 0, 128, 0.25);
  --pink-glow2:  rgba(255, 0, 128, 0.08);
  --bg:          #050505;
  --bg2:         #0d0d0d;
  --bg3:         #111111;
  --card:        rgba(255,255,255,0.04);
  --card-border: rgba(255, 0, 128, 0.2);
  --white:       #ffffff;
  --gray:        #aaaaaa;
  --dark-gray:   #333333;
  --nav-h:       72px;
}

/* ─── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--pink-dark); border-radius: 3px; }

/* ─── UTILITY ───────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}
.section-title span {
  color: var(--pink);
  text-shadow: 0 0 30px var(--pink-glow), 0 0 60px var(--pink-glow);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: all .3s ease;
  cursor: pointer;
  border: none;
}
.btn-pink {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 0 20px var(--pink-glow), 0 4px 15px rgba(255,0,128,.4);
}
.btn-pink:hover {
  background: var(--pink-light);
  box-shadow: 0 0 40px var(--pink-glow), 0 4px 30px rgba(255,0,128,.6);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--pink);
  border: 1px solid var(--pink);
}
.btn-outline:hover {
  background: var(--pink-glow2);
  box-shadow: 0 0 20px var(--pink-glow);
}

.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--pink), transparent);
  margin: 20px 0 40px;
}
.divider-center {
  margin: 20px auto 40px;
}

.glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  opacity: .5;
}

.py-80  { padding: 80px 0; }
.py-100 { padding: 100px 0; }

/* ─── NAVIGATION ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background .4s ease, box-shadow .4s ease;
}
.nav.scrolled {
  background: rgba(5,5,5,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,0,128,.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo img {
  height: 74px;
  filter: brightness(0) invert(1);
  transition: filter .3s;
}
.nav-logo img:hover {
  filter: brightness(0) saturate(100%) invert(15%) sepia(100%) saturate(7000%) hue-rotate(310deg);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  padding: 8px 8px;
  border-radius: 2px;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transition: transform .3s;
}
.nav-links a:hover { color: var(--pink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--pink); }
.nav-links a.active::after { transform: scaleX(1); }

/* dropdown */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a i { font-size: 9px; transition: transform .3s; }
.nav-dropdown:hover > a i { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: rgba(10,10,10,.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .3s;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  transition: color .2s, background .2s;
}
.dropdown-menu a:hover { color: var(--pink); background: var(--pink-glow2); }
.nav-cta { margin-left: 16px; }

/* hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  width: 28px; height: 2px;
  background: var(--white);
  transition: all .3s;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.77,0,.175,1);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  padding: 5px 12px;
  transition: color .2s;
}
.nav-mobile a:hover, .nav-mobile a.active-mobile { color: var(--pink); }

/* ─── PAGE OFFSET ───────────────────────────────────────────── */
.page-offset { padding-top: var(--nav-h); }

/* ─── PAGE HERO ─────────────────────────────────────────────── */
.page-hero {
  height: 420px;
  background-image: var(--hero-img, none);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.04),
      rgba(255,255,255,.04) 1px,
      transparent 1px,
      transparent 30px
    ),
    linear-gradient(to bottom, rgba(5,5,5,.3), rgba(5,5,5,.92));
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 40px 56px;
}

/* ─── TICKER ────────────────────────────────────────────────── */
.ticker {
  background: var(--pink);
  overflow: hidden;
  padding: 10px 0;
}
.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
}
.ticker-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── STATS BAR ─────────────────────────────────────────────── */
.stats-bar {
  background: var(--pink);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,.03),
    rgba(255,255,255,.03) 1px,
    transparent 1px,
    transparent 30px
  );
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .85;
}

/* ─── SPLIT LAYOUT ──────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.split-img {
  position: relative;
  overflow: hidden;
}
.split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.split-img:hover img { transform: scale(1.04); }
.split-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,0,128,.12), transparent);
}
.split-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg2);
}
.split-content p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}
.split-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.split-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.split-feature i {
  color: var(--pink);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.split-feature span {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* ─── EVENTOS GRID ──────────────────────────────────────────── */
.eventos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 20px;
  padding: 60px 0;
}
.evento-card {
  background: var(--card);
  border: 2px solid var(--pink);
  border-radius: 4px;
  overflow: hidden;
  transition: all .35s;
}
.evento-card:hover {
  border-color: var(--pink);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 30px var(--pink-glow);
}
.evento-card-img-wrap { overflow: hidden; position: relative; }
.evento-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .5s;
}
.evento-card:hover .evento-card-img { transform: scale(1.06); }
.evento-card-date {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--pink);
  padding: 6px 14px;
  border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 0 15px var(--pink-glow);
}
.evento-card-body { padding: 22px; }
.evento-card-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.evento-card-body p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ─── PRÓXIMOS EVENTOS HOME ─────────────────────────────────── */
.proximos-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}
.eventos-list { display: flex; flex-direction: column; gap: 1px; }
.evento-row {
  display: grid;
  grid-template-columns: auto 1fr 200px;
  align-items: center;
  gap: 28px;
  padding: 24px 28px;
  background: var(--card);
  border: 1px solid transparent;
  border-left: 3px solid transparent;
  transition: all .3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.evento-row::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--pink-glow2), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.evento-row:hover {
  border-color: var(--card-border);
  border-left-color: var(--pink);
  background: rgba(255,255,255,.06);
}
.evento-row:hover::before { opacity: 1; }
.evento-thumb {
  width: 200px; height: 120px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}
.evento-date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  background: var(--pink);
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 0 15px var(--pink-glow);
}
.evento-date-badge .day {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}
.evento-date-badge .month {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.evento-info { min-width: 0; }
.evento-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.evento-info span {
  font-size: 12px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.evento-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  color: var(--pink);
  white-space: nowrap;
}
.evento-arrow-icon {
  color: var(--gray);
  font-size: 13px;
  transition: color .3s, transform .3s;
}
.evento-row:hover .evento-arrow-icon { color: var(--pink); transform: translateX(4px); }

/* ─── VIP ───────────────────────────────────────────────────── */
.vip-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.vip-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  padding: 40px 32px;
  text-align: center;
  transition: all .4s;
  position: relative;
  overflow: hidden;
}
.vip-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--pink);
  transition: all .4s;
}
.vip-card:hover {
  border-color: var(--pink);
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 40px var(--pink-glow);
  transform: translateY(-6px);
}
.vip-card:hover::before { left: 0; right: 0; }
.vip-card.featured {
  border-color: var(--pink);
  background: rgba(255,0,128,.06);
}
.vip-card.featured::before { left: 0; right: 0; }
.vip-icon {
  font-size: 36px;
  color: var(--pink);
  margin-bottom: 20px;
  text-shadow: 0 0 20px var(--pink-glow);
}
.vip-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.vip-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 28px;
}
.vip-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  background: var(--pink);
  border-radius: 20px;
  margin-bottom: 8px;
  box-shadow: 0 0 12px var(--pink-glow);
}
.vip-list {
  text-align: left;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 28px;
}
.vip-list li { display: flex; align-items: center; gap: 8px; }
.vip-list li i { color: var(--pink); font-size: 11px; }

/* ─── DESPEDIDAS ────────────────────────────────────────────── */
.desp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.desp-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 360px;
  cursor: default;
}
.desp-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.desp-card:hover img { transform: scale(1.07); }
.desp-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,.9), rgba(5,5,5,.2));
  transition: background .3s;
}
.desp-card:hover::after {
  background: linear-gradient(to top, rgba(5,5,5,.95), rgba(255,0,128,.08));
}
.desp-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  z-index: 1;
}
.desp-card-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.desp-card-content p {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
}
.desp-highlight {
  grid-column: span 2;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.desp-highlight#grupos {
  grid-template-columns: 2fr 3fr;
}
.desp-highlight h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.desp-highlight p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* ─── SPACES PREVIEW (HOME) ─────────────────────────────────── */
.spaces-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ─── SOCIAL STRIP ──────────────────────────────────────────── */
.social-strip {
  background: var(--bg2);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 32px 0;
}
.social-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid var(--dark-gray);
  border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  transition: all .3s;
}
.social-link:hover {
  color: var(--pink);
  border-color: var(--pink);
  box-shadow: 0 0 15px var(--pink-glow);
}
.social-link i { font-size: 16px; }

/* ─── CONTACT ───────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-icon {
  width: 48px; height: 48px;
  background: var(--pink-glow2);
  border: 1px solid var(--card-border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pink);
  font-size: 18px;
}
.contact-info-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 4px;
}
.contact-info-item p, .contact-info-item a {
  font-size: 15px;
  color: var(--gray);
  transition: color .2s;
}
.contact-info-item a:hover { color: var(--white); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--card);
  border: 1px solid var(--dark-gray);
  border-radius: 2px;
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: border-color .3s, box-shadow .3s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #555; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-glow);
}
.form-group select option { background: var(--bg2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-pm { grid-template-columns: 1fr 2fr; }
.map-wrap {
  height: 360px;
  border: 1px solid var(--card-border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 32px;
}
.map-wrap iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(1) invert(1) hue-rotate(180deg);
  opacity: .8;
}

/* ─── HISTORIA ──────────────────────────────────────────────── */
.historia-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
}
.historia-text p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 20px;
}
.historia-text p strong { color: var(--white); }
.historia-year {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,0,128,.3);
  line-height: 1;
  margin-bottom: -20px;
}
.historia-img-wrap { position: relative; }
.historia-img-wrap img {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--card-border);
}
.historia-img-wrap::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--pink), transparent);
  opacity: .25;
  pointer-events: none;
}

/* ─── COMO LLEGAR (MAPAS) ───────────────────────────────────── */
.maps-section {
  background: var(--bg2);
  border-top: 1px solid var(--dark-gray);
  padding: 72px 0 64px;
}
.maps-section .section-title { margin-bottom: 48px; }
.maps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.map-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.map-col-info {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.map-col-info h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 6px;
}
.map-col-info p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}
.map-col-embed { height: 280px; margin-top: 0; }
.map-card-btn { align-self: flex-start; }
.map-card-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* ─── RESEÑA / FEEDBACK ─────────────────────────────────────── */
.resena-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 760px;
  margin: 0 auto;
}
.resena-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 64px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  border: 1px solid rgba(255,255,255,.08);
}
.resena-card i { font-size: 96px; line-height: 1; }
.resena-card span {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
}
.resena-card:hover { transform: translateY(-4px); filter: brightness(1.05); }
.resena-up {
  background: linear-gradient(135deg, #1f7a3a, #2ecc71);
  box-shadow: 0 12px 32px rgba(46,204,113,.25);
}
.resena-up:hover { box-shadow: 0 16px 40px rgba(46,204,113,.4); }
.resena-down {
  background: linear-gradient(135deg, #7a1f2c, #e74c3c);
  box-shadow: 0 12px 32px rgba(231,76,60,.25);
}
.resena-down:hover { box-shadow: 0 16px 40px rgba(231,76,60,.4); }
.resena-check {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  color: rgba(255,255,255,.75);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}
.resena-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--pink);
}
@media (max-width: 640px) {
  .resena-choice { grid-template-columns: 1fr; gap: 20px; }
  .resena-card { padding: 48px 20px; }
  .resena-card i { font-size: 72px; }
}

/* ─── FOOTER ────────────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--dark-gray);
  padding: 60px 0 32px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img {
  height: 120px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 260px;
}
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--gray);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--dark-gray);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: #555; }
.footer-bottom a { color: var(--pink); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--dark-gray);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 14px;
  transition: all .3s;
}
.footer-social a:hover {
  color: var(--pink);
  border-color: var(--pink);
  box-shadow: 0 0 10px var(--pink-glow);
}

/* ─── REVEAL ANIMATION ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ─── GALERÍA ───────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
}
.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid var(--card-border);
  transition: all .4s;
  cursor: zoom-in;
}
.gallery-grid img:hover {
  border-color: var(--pink);
  box-shadow: 0 0 20px var(--pink-glow);
}

/* ─── PACK CARDS ────────────────────────────────────────────── */
.pack-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 60px;
}
.pack-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  padding: 32px;
  text-align: center;
  transition: all .3s;
}
.pack-card.featured {
  background: rgba(255,0,128,.06);
  border-color: var(--pink);
}
.pack-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,.4), 0 0 25px var(--pink-glow);
}
.pack-card i { font-size: 28px; color: var(--pink); margin-bottom: 16px; }
.pack-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.pack-card p { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .vip-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .historia-content { grid-template-columns: 1fr; }
  .historia-img-wrap { max-width: 420px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .pack-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 96px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); }
  .nav-inner { flex-direction: column; justify-content: center; gap: 5px; position: relative; }
  .nav-inner .nav-lang-mobile { display: flex; }
  .nav-logo img { height: 56px; }
  .split { grid-template-columns: 1fr; }
  .split-img { display: none; }
  .split-content { padding: 48px 24px; text-align: center; align-items: center; }
  .split-features { grid-template-columns: 1fr; }
  .vip-grid { grid-template-columns: 1fr; }
  .desp-grid { grid-template-columns: 1fr; }
  .desp-highlight { grid-column: 1; grid-template-columns: 1fr; }
  .desp-highlight#grupos { grid-template-columns: 1fr; }
  .desp-highlight img { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .maps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero {
    height: auto;
    min-height: 0;
    background-image: none;
    background-color: var(--bg);
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
  }
  .page-hero::after { display: none; }
  .page-hero-content { padding: 0; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .proximos-header { flex-direction: column; align-items: flex-start; }
  .evento-row { grid-template-columns: auto 1fr 90px; }
  .evento-thumb { width: 90px; height: 64px; }
  .spaces-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .pack-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── COOKIE BANNER ───────────────────────────────────────────── */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: rgba(10,10,10,.97);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .35s ease;
  backdrop-filter: blur(8px);
}
.cookie-bar.cookie-bar-visible { transform: translateY(0); }
.cookie-bar-text {
  flex: 1;
  font-size: 13px;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  min-width: 220px;
  margin: 0;
}
.cookie-bar-text a { color: var(--pink); text-decoration: underline; }
.cookie-bar-actions { display: flex; gap: 10px; flex-shrink: 0; }
@media (max-width: 600px) {
  .cookie-bar { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-bar-actions { width: 100%; }
  .cookie-bar-actions .btn { flex: 1; justify-content: center; }
}

/* ── WHATSAPP BUBBLE ─────────────────────────────────────────── */
.wa-bubble {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 14px 20px 14px 16px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,.45);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  transition: transform .25s, box-shadow .25s;
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.wa-bubble:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.6);
  animation: none;
}
.wa-bubble i { font-size: 26px; line-height: 1; }
.wa-bubble-label { white-space: nowrap; }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 4px 36px rgba(37,211,102,.75); }
}
@media (max-width: 480px) {
  .wa-bubble-label { display: none; }
  .wa-bubble { padding: 14px; border-radius: 50%; bottom: 20px; right: 16px; }
}

/* ── BTN WHATSAPP ────────────────────────────────────────────── */
.btn-wa {
  background: #25d366 !important;
  color: #fff !important;
  border: none;
  font-size: 15px;
  padding: 16px 32px;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-wa:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
}
.btn-wa i { font-size: 20px; }

/* ─── LANGUAGE SWITCHER ─────────────────────────────────────── */
.lang-switcher {
  display: flex;
  gap: 2px;
  align-items: center;
}
.lang-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255,255,255,.45);
  padding: 4px 7px;
  border-radius: 2px;
  transition: color .2s, background .2s;
  text-decoration: none;
}
.lang-btn:hover { color: #fff; }
.lang-btn.lang-active {
  color: var(--pink);
  background: rgba(255,0,128,.1);
}
@media (max-width: 1024px) {
  .nav-inner > .lang-switcher { display: none; }
}
/* Selector de idiomas sobre el logo (solo móvil) */
.nav-lang-mobile { display: none; }
.nav-lang-mobile .lang-switcher { justify-content: center; gap: 4px; }
.nav-lang-mobile .lang-btn { font-size: 12px; padding: 4px 9px; }
