/* =============================================
   CAPRI NIGHTCLUB — v4 Final
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,700;1,300&display=swap&font-display=swap');

@font-face { font-family: 'Gotham'; font-weight: 300; src: local('Gotham Light'), local('Gotham-Light'); }
@font-face { font-family: 'Gotham'; font-weight: 400; src: local('Gotham Book'), local('Gotham-Book'), local('Gotham'); }
@font-face { font-family: 'Gotham'; font-weight: 700; src: local('Gotham Bold'), local('Gotham-Bold'); }
@font-face { font-family: 'Gotham'; font-weight: 900; src: local('Gotham Black'), local('Gotham-Black'); }

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --rosa:         #e8007a;
  --rosa-glow:    rgba(232,0,122,0.35);
  --rosa-glow-sm: rgba(232,0,122,0.15);
  --violeta:      #6b21e8;
  --negro:        #060608;
  --negro-card:   rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --glass-hover:  rgba(232,0,122,0.4);
  --blanco:       #ffffff;
  --gris:         rgba(255,255,255,0.72);
  --gris-oscuro:  rgba(255,255,255,0.35);
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Gotham', 'Montserrat', 'Futura', sans-serif;

  /* ── Sistema de transiciones ── */
  --ease-out:      cubic-bezier(0.32, 0.72, 0, 1);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:      160ms;
  --dur-normal:    220ms;
  --dur-slow:      360ms;
  --dur-reveal:    520ms;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--negro);
  color: var(--blanco);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

:where(a, button, input, textarea, select):focus-visible {
  outline: 2px solid var(--rosa);
  outline-offset: 4px;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(107,33,232,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(232,0,122,0.14) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
/* =============================================
   HEADER
   ============================================= */

header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 56px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6,6,8,0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(232,0,122,0.25);
  transition: background 0.4s, height 0.4s;
}

header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rosa), transparent);
  opacity: 0.5;
}

header.scrolled {
  background: rgba(6,6,8,0.98);
  height: 80px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.header-logo img {
  height: 76px;
  width: auto;
  transition: height 0.4s;
}

header.scrolled .header-logo img { height: 62px; }

.header-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  line-height: 1;
}

.header-logo-text .brand-name {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: var(--blanco);
  text-shadow: 0 0 22px rgba(232,0,122,0.3);
}

.header-logo-text .brand-descriptor {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 8px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--rosa);
  margin-top: 7px;
  white-space: nowrap;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 44px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 44px;
  align-items: center;
}

nav ul li a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blanco);
  opacity: 0.75;
  transition: opacity 0.3s, color 0.3s;
  position: relative;
  padding-bottom: 5px;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--rosa), transparent);
  transition: width 0.35s;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--blanco);
  opacity: 1;
}

nav ul li a:hover::after,
nav ul li a.active::after { width: 100%; }

nav ul li a.btn-reserva {
  background: var(--rosa);
  color: var(--blanco);
  opacity: 1;
  padding: 13px 28px;
  border-radius: 3px;
  letter-spacing: 2px;
  box-shadow: 0 0 28px var(--rosa-glow), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: box-shadow var(--dur-normal) var(--ease-standard),
              background var(--dur-normal) var(--ease-standard),
              transform  var(--dur-fast)   var(--ease-out);
}

nav ul li a.btn-reserva::after { display: none; }

nav ul li a.btn-reserva:hover {
  background: #ff0d89;
  box-shadow: 0 0 44px var(--rosa-glow);
  color: var(--blanco);
  transform: translateY(-2px);
}

nav ul li a.btn-reserva:active { transform: scale(0.97) translateY(0); }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.lang-switcher button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 3px;
  font-size: 18px;
  line-height: 1;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.2s;
  display: flex;
  align-items: center;
}

.lang-switcher button.active {
  opacity: 1;
  transform: scale(1.15);
}

.lang-switcher button:hover { opacity: 0.85; }

.lang-sep {
  color: var(--gris-oscuro);
  font-size: 10px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--blanco);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================================
   RULETA CAPRI — anuncio continuo bajo el header
   ============================================= */

.ruleta-strip {
  position: relative;
  z-index: 4;
  display: block;
  width: 100%;
  height: 72px;
  margin-top: 96px;
  overflow: hidden;
  color: var(--blanco);
  background:
    radial-gradient(circle at 18% 50%, rgba(107,33,232,0.85), transparent 28%),
    linear-gradient(105deg, #630039 0%, #d1006e 42%, #8d004b 100%);
  border-bottom: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 8px 24px rgba(232,0,122,0.28);
  isolation: isolate;
  cursor: pointer;
}

.ruleta-strip::before,
.ruleta-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ruleta-strip::before {
  z-index: -1;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-20deg) translate3d(-180%, 0, 0);
  animation: ruleta-flash 3.8s var(--ease-out) infinite;
}

.ruleta-strip::after {
  background: linear-gradient(90deg, rgba(107,33,232,0.32), transparent 28%, transparent 72%, rgba(107,33,232,0.32));
  box-shadow: inset 0 1px rgba(255,255,255,0.22), inset 0 -1px rgba(0,0,0,0.24);
}

.ruleta-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 100%;
  height: 100%;
  animation: ruleta-marquee 24s linear infinite;
  will-change: transform;
}

.ruleta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: max-content;
  padding: 0 34px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.ruleta-kicker,
.ruleta-cta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ruleta-kicker {
  background: var(--negro);
  font-size: 15px;
  letter-spacing: 2.5px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.14);
}

.ruleta-wheel {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #fff 0 8%, #e8007a 8% 20%, #fff 20% 28%, #6b21e8 28% 40%, #fff 40% 48%, #e8007a 48% 60%, #fff 60% 68%, #6b21e8 68% 80%, #fff 80% 88%, #e8007a 88% 100%);
  animation: ruleta-wheel-spin 6s linear infinite;
  box-shadow: 0 0 20px rgba(255,255,255,0.38);
}

.ruleta-wheel::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  background: #09090d;
}

.ruleta-wheel i {
  position: relative;
  z-index: 1;
  color: var(--blanco);
  font-size: 17px;
  font-style: normal;
  font-weight: 900;
}

.ruleta-action-word {
  color: var(--blanco);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255,255,255,0.7);
  animation: ruleta-action-pulse 1.5s var(--ease-out) infinite;
}

.ruleta-days {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.ruleta-cta {
  background: var(--blanco);
  color: #780040;
  box-shadow: 0 4px 8px rgba(35,0,20,0.22);
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.ruleta-cta::after {
  content: '\2192';
  margin-left: 8px;
  transition: transform 160ms var(--ease-out);
}

.ruleta-strip:hover .ruleta-cta::after,
.ruleta-strip:focus-visible .ruleta-cta::after { transform: translateX(3px); }
.ruleta-sep { width: 5px; height: 5px; border-radius: 50%; background: var(--blanco); opacity: 0.7; }

.ruleta-strip:hover .ruleta-track,
.ruleta-strip:focus-visible .ruleta-track { animation-play-state: paused; }

@keyframes ruleta-marquee {
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes ruleta-flash {
  0%, 56% { transform: skewX(-20deg) translate3d(-180%, 0, 0); opacity: 0; }
  62% { opacity: 1; }
  82%, 100% { transform: skewX(-20deg) translate3d(430%, 0, 0); opacity: 0; }
}

@keyframes ruleta-wheel-spin { to { transform: rotate(1turn); } }

@keyframes ruleta-action-pulse {
  0%, 100% { transform: scale(1); opacity: 0.88; }
  50% { transform: scale(1.045); opacity: 1; }
}

/* Modal de premios */
.ruleta-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: grid;
  place-items: center;
  padding: 16px;
  overflow-y: auto;
  color: var(--blanco);
  background: rgba(3,3,7,0.9);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms var(--ease-out), visibility 200ms;
}

.ruleta-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ruleta-modal-shell {
  position: relative;
  display: grid;
  width: min(920px, 100%);
  max-height: min(760px, calc(100dvh - 32px));
  grid-template-columns: minmax(270px, 0.8fr) minmax(0, 1.2fr);
  min-height: 520px;
  overflow: hidden;
  border-radius: 16px;
  background:
    radial-gradient(circle at 20% 30%, rgba(107,33,232,0.45), transparent 34%),
    linear-gradient(135deg, #100812 0%, #09090d 48%, #260014 100%);
  box-shadow: 0 28px 70px rgba(0,0,0,0.72);
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.97);
  transition: opacity 220ms var(--ease-out), transform 300ms var(--ease-out);
}

.ruleta-modal.is-open .ruleta-modal-shell {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.ruleta-modal-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: inherit;
}

.ruleta-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--blanco);
  background: rgba(255,255,255,0.09);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 160ms, transform 160ms var(--ease-out);
}

.ruleta-modal-close:hover { background: var(--rosa); transform: rotate(6deg); }
.ruleta-modal-close svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }

.ruleta-modal-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  overflow: hidden;
  background: radial-gradient(circle, rgba(232,0,122,0.18), transparent 58%);
}

.ruleta-modal-stage::before,
.ruleta-modal-stage::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
}
.ruleta-modal-stage::before { width: 340px; height: 340px; }
.ruleta-modal-stage::after { width: 430px; height: 430px; opacity: 0.5; }

.ruleta-modal-wheel {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(210px, 24vw, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #fff 0 8%, #e8007a 8% 20%, #fff 20% 28%, #6b21e8 28% 40%, #fff 40% 48%, #e8007a 48% 60%, #fff 60% 68%, #6b21e8 68% 80%, #fff 80% 88%, #e8007a 88% 100%);
  animation: ruleta-wheel-spin 12s linear infinite;
  box-shadow: 0 0 42px rgba(232,0,122,0.42);
}

.ruleta-modal-wheel::before {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: inherit;
  background: radial-gradient(circle, #1d0716 0 38%, #08080c 39% 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14);
}

.ruleta-modal-wheel i {
  position: relative;
  z-index: 1;
  font-size: 70px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.ruleta-modal-pointer {
  position: absolute;
  z-index: 2;
  top: calc(50% - 154px);
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 24px solid var(--blanco);
  filter: drop-shadow(0 5px 8px rgba(0,0,0,0.45));
}

.ruleta-modal-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 66px clamp(28px, 5vw, 64px) 48px;
}

.ruleta-modal-label {
  align-self: flex-start;
  padding: 6px 10px;
  color: #220011;
  background: var(--blanco);
  border-radius: 3px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ruleta-modal-content h2 {
  max-width: 11ch;
  margin: 16px 0 12px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.94;
  text-wrap: balance;
}

.ruleta-modal-intro {
  max-width: 48ch;
  margin-bottom: 26px;
  color: rgba(255,255,255,0.74);
  font-size: 13px;
  line-height: 1.65;
}

.ruleta-prize-feature,
.ruleta-prize-mini {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ruleta-prize-feature {
  padding: 18px 0;
  border-top: 1px solid rgba(232,0,122,0.42);
  border-bottom: 1px solid rgba(232,0,122,0.42);
}

.ruleta-prize-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 16px 0 24px;
}

.ruleta-prize-mark {
  flex: 0 0 auto;
  color: var(--rosa);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1px;
}

.ruleta-prize-feature small,
.ruleta-prize-mini small {
  display: block;
  margin-bottom: 3px;
  color: rgba(255,255,255,0.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ruleta-prize-feature strong { font-size: 18px; }
.ruleta-prize-mini strong { font-size: 12px; line-height: 1.35; }

.ruleta-modal-reserve {
  align-self: flex-start;
  min-height: 46px;
  padding: 14px 22px;
  color: var(--blanco);
  background: var(--rosa);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 160ms, transform 160ms var(--ease-out);
}
.ruleta-modal-reserve:hover { background: #ff0d89; transform: translateY(-2px); }

@media (max-width: 720px) {
  .ruleta-modal {
    padding: 8px;
  }
  .ruleta-modal-shell {
    width: min(100%, 560px);
    grid-template-columns: 1fr;
    max-height: calc(100dvh - 16px);
    overflow-y: auto;
  }
  .ruleta-modal-stage { min-height: 205px; }
  .ruleta-modal-stage::before { width: 230px; height: 230px; }
  .ruleta-modal-stage::after { width: 300px; height: 300px; }
  .ruleta-modal-wheel { width: 170px; }
  .ruleta-modal-wheel::before { inset: 11px; }
  .ruleta-modal-wheel i { font-size: 44px; }
  .ruleta-modal-pointer { top: 12px; }
  .ruleta-modal-content { padding: 28px 22px 26px; }
  .ruleta-modal-content h2 { margin-top: 13px; font-size: clamp(2rem, 11vw, 3rem); }
  .ruleta-modal-intro { margin-bottom: 20px; }
  .ruleta-prize-row { grid-template-columns: 1fr; gap: 12px; }
  .ruleta-modal-reserve { width: 100%; text-align: center; }
}
/* =============================================
   HERO VIDEO
   ============================================= */

.hero-video {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 520px;
  overflow: hidden;
  margin-top: 0;
  /* Fondo de respaldo mientras carga el video */
  background:
    linear-gradient(135deg, rgba(107,33,232,0.32), rgba(6,6,8,0.28) 50%, rgba(232,0,122,0.18)),
    url('https://res.cloudinary.com/dhdmijhru/video/upload/so_0,q_auto:eco,w_1280,c_limit/v1776049311/capri-hero_ccxy6n.jpg') center / cover no-repeat,
    #060608;
}

.hero-video video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; opacity: 0;
  transition: opacity .24s ease;
  pointer-events: none;
}
.hero-video video.is-playing { opacity: 1; }
.hero-video video::-webkit-media-controls,
.hero-video video::-webkit-media-controls-panel,
.hero-video video::-webkit-media-controls-start-playback-button { display: none !important; -webkit-appearance: none; }

.hero-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,6,8,0.75) 0%, rgba(6,6,8,0.35) 50%, rgba(6,6,8,0.65) 100%);
  z-index: 1;
}

.hero-video-overlay::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 50%, rgba(107,33,232,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 80%, rgba(232,0,122,0.15) 0%, transparent 55%);
}

.hero-video-content {
  position: absolute; top: 45%; left: 50%;
  transform: translate(-50%, -50%);
  max-width: 700px; width: 100%; z-index: 2;
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 24px; padding: 0 24px;
}

.hero-logo-wrap { position: relative; display: inline-flex; align-items: center; justify-content: center; cursor: default; }

.hero-logo {
  width: clamp(160px, 22vw, 260px); height: auto; opacity: 0.92;
  filter: drop-shadow(0 0 30px rgba(232,0,122,0.4));
  transition: filter 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
}

.hero-logo-wrap:hover .hero-logo {
  opacity: 1;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.6)) drop-shadow(0 0 50px rgba(232,0,122,0.8)) drop-shadow(0 0 90px rgba(232,0,122,0.4));
  transform: scale(1.04);
}

.hero-logo-wrap::after {
  content: ''; position: absolute; inset: -24px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,0,122,0.12) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.5s ease; pointer-events: none;
}
.hero-logo-wrap:hover::after { opacity: 1; }

.hero-video-content h1 {
  font-family: var(--font-body); font-weight: 300;
  font-size: clamp(1.3rem, 2.5vw, 2rem); line-height: 1.1;
  letter-spacing: 8px; text-transform: uppercase;
  color: rgba(255,255,255,0.85); margin: 0;
}

.hero-kicker {
  margin: -8px 0 6px;
  color: rgba(255,255,255,.82);
  font-size: clamp(.72rem, 1.4vw, .95rem);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.seo-local {
  position: relative;
  padding: clamp(38px, 5vw, 58px) 24px;
  overflow: hidden;
  background: radial-gradient(circle at 15% 20%, rgba(233,30,134,.1), transparent 30%), linear-gradient(135deg,#09060c 0%,#100812 52%,#080609 100%);
  border-block: 1px solid rgba(255,255,255,.06);
}
.seo-local-inner { max-width: 1040px; margin: 0 auto; text-align: left; }
.seo-local h2 { max-width: 760px; margin: 8px 0 14px; color: #fff; font-size: clamp(1.45rem,3vw,2.35rem); line-height: 1.08; text-wrap: balance; }
.seo-local p { max-width: 900px; margin: 0; color: rgba(255,255,255,.7); font-size: clamp(.88rem,1.3vw,1rem); line-height: 1.75; }
.seo-local p strong { color: #fff; }
.seo-local-facts { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1px; margin: 26px 0 0; padding: 0; overflow: hidden; border-radius: 12px; background: rgba(255,255,255,.08); list-style: none; }
.seo-local-facts li { display: grid; gap: 5px; padding: 17px 18px; background: rgba(7,6,10,.92); }
.seo-local-facts strong { color: #fff; font-size: .78rem; }
.seo-local-facts span { color: rgba(255,255,255,.56); font-size: .72rem; line-height: 1.45; }
.seo-local-related { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 20px; }
.seo-local-related a { color: rgba(255,255,255,.62); font-size: .72rem; text-decoration: underline; text-decoration-color: rgba(232,0,122,.45); text-underline-offset: 4px; }
.seo-local-related a:hover { color: #fff; }
.seo-local-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.seo-local-actions a { padding: 12px 18px; border-radius: 999px; font-size: 9px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
.seo-local-link { color: #fff; border: 1px solid rgba(255,255,255,.24); }
.seo-local-whatsapp { color: #fff; background: var(--rosa); box-shadow: 0 0 18px rgba(232,0,122,.24); }

@media (max-width: 768px) {
  .seo-local { padding-inline: 20px; }
  .seo-local-facts { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .seo-local-related { gap: 10px 16px; }
}

@media (max-width: 480px) {
  .seo-local-facts { grid-template-columns: 1fr; }
  .seo-local-actions { flex-direction: column; }
  .seo-local-actions a { width: 100%; }
}

.hero-video-content .btn-hero {
  display: inline-block; background: var(--rosa); color: var(--blanco);
  padding: 16px 44px; font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; border-radius: 3px;
  box-shadow: 0 0 30px var(--rosa-glow);
  transition: box-shadow var(--dur-normal) var(--ease-standard),
              transform  var(--dur-fast)   var(--ease-out),
              background var(--dur-normal) var(--ease-standard);
  margin-top: 8px;
}
.hero-video-content .btn-hero:hover { box-shadow: 0 0 60px var(--rosa-glow); transform: translateY(-3px); background: #ff0d89; }
.hero-video-content .btn-hero:active { transform: scale(0.97); }

.hero-trust {
  margin-top: -10px;
  color: rgba(255,255,255,0.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.5;
  text-align: center;
}

/* =============================================
   PROMO DEL DÍA
   ============================================= */

.promo-dia {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(107,33,232,0.35) 0%, rgba(6,6,8,0.85) 40%, rgba(232,0,122,0.3) 100%);
  border-top: 1px solid rgba(232,0,122,0.35);
  border-bottom: 1px solid rgba(232,0,122,0.35);
  padding: 36px 48px;
}

.promo-dia::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232,0,122,0.07), transparent);
  animation: promo-sweep 4s ease-in-out infinite;
  will-change: transform;
  pointer-events: none;
}

@keyframes promo-sweep {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(285%, 0, 0); }
}

.promo-dia-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Columna izquierda: tag pequeño + día grande */
.promo-dia-col-dia {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.promo-tag {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rosa);
  background: rgba(232,0,122,0.1);
  border: 1px solid rgba(232,0,122,0.35);
  padding: 5px 10px;
  border-radius: 2px;
  white-space: nowrap;
  width: fit-content;
}

.promo-dia-nombre {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  letter-spacing: -1.5px;
  text-transform: uppercase;
  color: var(--blanco);
  white-space: nowrap;
  line-height: 1;
}

/* Columna centro: producto centrado */
.promo-dia-col-producto {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 40px;
  text-align: center;
}

.promo-dia-producto {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.82);
  white-space: normal;
  line-height: 1.4;
  text-align: center;
}

.promo-dia-sub {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--rosa);
  white-space: nowrap;
}

/* Columna derecha: precio */
.promo-dia-col-precio {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  padding-left: 40px;
  border-left: 1px solid rgba(255,255,255,0.1);
}

.promo-precio-label {
  color: rgba(255,255,255,0.68);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.promo-precio-num {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(3rem, 5vw, 4.8rem);
  letter-spacing: -2px;
  color: var(--rosa);
  white-space: nowrap;
  line-height: 1;
  text-shadow: 0 0 40px rgba(232,0,122,0.7), 0 0 80px rgba(232,0,122,0.4);
  animation: precio-pulse 3s ease-in-out infinite;
}

/* Eliminar clases viejas que ya no se usan */
.promo-sep       { display: none; }
.promo-sep-v     { display: none; }
.promo-dia-top   { display: contents; }
.promo-dia-centro         { display: contents; }
.promo-dia-producto-wrap  { display: contents; }

@keyframes precio-pulse {
  0%, 100% { text-shadow: 0 0 40px rgba(232,0,122,0.7), 0 0 80px rgba(232,0,122,0.4); }
  50%       { text-shadow: 0 0 60px rgba(232,0,122,1), 0 0 120px rgba(232,0,122,0.6); }
}

/* Shows en vivo */
.shows-banner {
  position: relative;
  z-index: 1;
  background: rgba(232,0,122,0.06);
  border-bottom: 1px solid rgba(232,0,122,0.15);
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.shows-banner-dot {
  width: 7px; height: 7px;
  background: var(--rosa);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--rosa-glow);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.shows-banner p {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blanco);
  text-align: center;
}

.shows-banner p span {
  color: var(--rosa);
}

/* =============================================
   SECCIONES BASE
   ============================================= */

section {
  position: relative;
  z-index: 1;
  padding: clamp(64px, 8vw, 100px) clamp(20px, 5vw, 72px);
}

.section-title { text-align: center; margin-bottom: 70px; }

.section-label {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase; color: var(--rosa); margin-bottom: 16px;
}

.section-title h2 {
  font-family: var(--font-body); font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.2rem); letter-spacing: -0.5px;
  color: var(--blanco); line-height: 1.1;
}

.section-title .divider {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--rosa), transparent);
  margin: 20px auto 0; box-shadow: 0 0 12px var(--rosa-glow);
}

/* =============================================
   SERVICIOS — carrusel paneo continuo
   ============================================= */

#servicios {
  padding: 100px 0;
  overflow: hidden;
}

/* Wrapper con máscara de fade en los bordes */
.servicios-carousel-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  cursor: default;
}

/* Fade en los bordes laterales */
.servicios-carousel-wrap::before,
.servicios-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 3;
  pointer-events: none;
}
.servicios-carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--negro) 0%, transparent 100%);
}
.servicios-carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--negro) 0%, transparent 100%);
}

/* Track — fila de cards que se mueve */
.servicios-track {
  display: flex;
  gap: 0;
  width: max-content;
  /* Animación CSS pura — no necesita JS para moverse */
  animation: servicios-paneo 28s linear infinite;
  will-change: transform;
}

/* Pausa al hover en el wrapper */
.servicios-carousel-wrap:hover .servicios-track {
  animation-play-state: paused;
}

@keyframes servicios-paneo {
  0%   { transform: translateX(0); }
 100% { transform: translateX(calc(-340px * 6)); } /* 50% porque hay clones */
}

/* Card individual */
.servicio-card {
  position: relative;
  width: 340px;
  height: 460px;
  flex-shrink: 0;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,0.07);
  background: transparent;
  transition: border-color 0.3s;
}

.servicio-card:hover {
  border-color: rgba(232,0,122,0.25);
}

/* Foto de fondo */
.servicio-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  filter: brightness(0.38);
  transition: filter 280ms var(--ease-standard), transform 360ms var(--ease-out);
}

.servicio-card:hover .servicio-card-img {
  filter: brightness(0.5);
  transform: scale(1.04);
}

/* Overlay gradiente de abajo hacia arriba */
.servicio-card-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  background: linear-gradient(
    to top,
    rgba(6,6,8,0.97) 0%,
    rgba(6,6,8,0.65) 45%,
    rgba(6,6,8,0.1) 75%,
    transparent 100%
  );
  z-index: 2;
}

/* Icono arriba izquierda */
.servicio-card-icon {
  position: absolute;
  top: 18px;
  left: 20px;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
  z-index: 2;
}

.servicio-card:hover .servicio-card-icon {
  background: rgba(232,0,122,0.15);
  border-color: rgba(232,0,122,0.4);
}

.servicio-card-icon svg { stroke: rgba(255,255,255,0.85); }

/* Número decorativo */
.servicio-card-num {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 72px;
  letter-spacing: -4px;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  display: block;
  text-align: right;
  margin-bottom: -8px;
  transition: color 0.3s;
}

.servicio-card:hover .servicio-card-num {
  color: rgba(232,0,122,0.1);
}

/* Título — grande */
.servicio-card h3 {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.5px;
  text-transform: none;
  color: var(--blanco);
  line-height: 1.15;
  text-shadow: 0 2px 16px rgba(0,0,0,0.9);
  margin-bottom: 8px;
}

/* Descripción — siempre visible */
.servicio-card p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin: 0;
  opacity: 1;
  transform: none;
  transition: none;
}

/* Ocultar clases viejas que no se usan */
.servicio-front,
.servicio-back,
.servicio-front-icon,
.servicio-front-content,
.servicio-front-title,
.servicio-front-desc,
.servicio-front-num,
.servicio-back-body,
.servicio-icono,
.servicio-titulo,
.servicio-num,
.servicio-arrow { display: none !important; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .servicio-card { width: 260px; height: 360px; }
  .servicio-card h3 { font-size: 18px; }
  .servicios-track { animation-duration: 22s; }
  .servicios-carousel-wrap::before,
  .servicios-carousel-wrap::after { width: 60px; }
}

@media (max-width: 480px) {
  .servicio-card { width: 220px; height: 320px; }
  .servicio-card h3 { font-size: 16px; }
  .servicios-track { animation-duration: 18s; }
}

/* =============================================
   EVENTO DEL MES — bloque full-width con gradiente animado
   ============================================= */

.evento-mes {
  position: relative;
  width: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  /* Gradiente animado morado → rosa → negro */
  background: linear-gradient(
    120deg,
    #06060a 0%,
    #2d0a6e 20%,
    #6b21e8 40%,
    #e8007a 60%,
    #2d0a6e 80%,
    #06060a 100%
  );
  background-size: 300% 300%;
  animation: evento-gradient 5s ease infinite;
  border-top: 1px solid rgba(232,0,122,0.3);
  border-bottom: 1px solid rgba(232,0,122,0.3);
  user-select: none;
}

#servicios,
.evento-mes,
.trabaja-section,
.resenas-home,
.mapa-banner {
  content-visibility: auto;
  contain-intrinsic-size: 700px;
}

@keyframes evento-gradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Efecto de brillo al hover */
.evento-mes:hover {
  animation: evento-gradient 2.5s ease infinite;
}

.evento-mes::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(232,0,122,0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Partículas decorativas */
.evento-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(232,0,122,0.3);
  filter: blur(40px);
  pointer-events: none;
  animation: evento-float 6s ease-in-out infinite;
}

.evento-particle-1 {
  width: 200px; height: 200px;
  top: -60px; left: 10%;
  animation-delay: 0s;
}
.evento-particle-2 {
  width: 300px; height: 300px;
  top: -80px; right: 15%;
  background: rgba(107,33,232,0.3);
  animation-delay: -2s;
}
.evento-particle-3 {
  width: 150px; height: 150px;
  bottom: -40px; left: 50%;
  animation-delay: -4s;
}

@keyframes evento-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.1); }
}

/* Contenido central */
.evento-mes-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 60px 40px;
}

/* Label pequeño arriba */
.evento-mes-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}

.evento-mes-label::before,
.evento-mes-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.25);
}

/* Título principal — GRANDE */
.evento-mes-titulo {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(2.8rem, 8vw, 7rem);
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--blanco);
  line-height: 1;
  text-shadow:
    0 0 40px rgba(232,0,122,0.6),
    0 0 80px rgba(232,0,122,0.3),
    0 4px 32px rgba(0,0,0,0.5);
  animation: titulo-pulse 3s ease-in-out infinite;
}

@keyframes titulo-pulse {
  0%, 100% { text-shadow: 0 0 40px rgba(232,0,122,0.6), 0 0 80px rgba(232,0,122,0.3), 0 4px 32px rgba(0,0,0,0.5); }
  50%       { text-shadow: 0 0 60px rgba(232,0,122,1),   0 0 120px rgba(232,0,122,0.5), 0 4px 32px rgba(0,0,0,0.5); }
}

/* Ícono de ojo con efecto pulse */
.evento-mes-pulse {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: icon-pulse 2s ease-in-out infinite;
}

.evento-mes-pulse svg { stroke: rgba(255,255,255,0.85); }

@keyframes icon-pulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(232,0,122,0.4); }
  50%       { transform: scale(1.08); box-shadow: 0 0 0 12px rgba(232,0,122,0); }
}

.evento-mes:hover .evento-mes-pulse {
  background: rgba(232,0,122,0.2);
  border-color: var(--rosa);
}

/* ── POPUP SLIDER DE FLYERS ── */
.flyer-overlay {
  position: fixed;
  inset: 0;
  z-index: 9100;
  background:
    radial-gradient(circle at 20% 10%, rgba(107,33,232,.24), transparent 34%),
    radial-gradient(circle at 82% 90%, rgba(232,0,122,.2), transparent 36%),
    rgba(3,3,7,.92);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease-out);
}

.flyer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.flyer-overlay-box {
  position: relative;
  width: min(520px, 92vw);
  max-height: min(90dvh, 760px);
  padding: 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(22,17,31,.95), rgba(6,6,10,.96));
  box-shadow: inset 0 1px rgba(255,255,255,.16), 0 18px 48px rgba(0,0,0,.58);
  transform: scale(.96) translateY(12px);
  transition: transform 260ms var(--ease-out), opacity 220ms var(--ease-out);
  opacity: 0;
}

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

.flyer-slider-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  min-height: 48px;
  padding: 0 50px 12px 3px;
}

.flyer-slider-kicker { display: block; margin-bottom: 4px; color: #ff4ba9; font-size: 9px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; }
.flyer-slider-head h2 { margin: 0; color: #fff; font: 800 clamp(17px, 4vw, 23px)/1.05 var(--font-body); letter-spacing: -.3px; }
.flyer-slider-count { flex: none; color: rgba(255,255,255,.56); font-size: 10px; font-weight: 800; letter-spacing: 1px; }

.flyer-slider-viewport {
  position: relative;
  height: min(67dvh, 610px);
  min-height: 310px;
  overflow: hidden;
  border-radius: 14px;
  background: #09090d;
  touch-action: pan-y;
}

.flyer-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 240ms var(--ease-out);
  will-change: transform;
}

.flyer-slide { flex: 0 0 100%; width: 100%; height: 100%; margin: 0; display: grid; place-items: center; background: radial-gradient(circle, rgba(255,255,255,.06), transparent 64%); }
.flyer-slide img { display: block; width: 100%; height: 100%; object-fit: contain; }

.flyer-slider-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(5,5,9,.72);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16);
  backdrop-filter: blur(14px);
  transform: translateY(-50%);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}
.flyer-slider-nav:hover { background: rgba(232,0,122,.82); }
.flyer-slider-nav:active { transform: translateY(-50%) scale(.94); }
.flyer-slider-nav svg { width: 22px; height: 22px; }
.flyer-slider-prev { left: 10px; }
.flyer-slider-next { right: 10px; }

.flyer-slider-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 34px; padding: 10px 3px 0; }
.flyer-slider-footer > span { color: rgba(255,255,255,.42); font-size: 9px; }
.flyer-slider-dots { display: flex; gap: 7px; }
.flyer-slider-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.22); cursor: pointer; transition: width 180ms ease, background 180ms ease; }
.flyer-slider-dots button.active { width: 26px; border-radius: 999px; background: #e8007a; box-shadow: 0 0 8px rgba(232,0,122,.55); }

body.flyer-modal-open { overflow: hidden; }

/* Acceso persistente a eventos y promociones */
.flyer-fab {
  position: fixed;
  right: clamp(16px, 2.2vw, 30px);
  bottom: 22px;
  z-index: 8800;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 7px 10px 7px 8px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(110deg, rgba(8,7,13,.97), rgba(29,10,38,.96));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.15), 0 8px 22px rgba(0,0,0,.34);
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  animation:
    flyer-fab-arrival 420ms var(--ease-out) backwards,
    flyer-fab-callout 4.8s 1.2s ease-in-out infinite,
    flyer-fab-float 2.2s 460ms ease-in-out infinite;
}

.flyer-fab::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 22%, rgba(232,0,122,.3) 48%, rgba(115,48,255,.26) 62%, transparent 82%);
  transform: translateX(-115%);
  animation: flyer-fab-sweep 4.8s 1.2s ease-in-out infinite;
}

.flyer-fab-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #f00083, #7528e9);
  box-shadow: inset 0 1px rgba(255,255,255,.28), 0 0 12px rgba(232,0,122,.32);
}

.flyer-fab-icon svg { width: 22px; height: 22px; }
.flyer-fab-copy { display: grid; gap: 2px; min-width: 0; text-align: left; }
.flyer-fab-copy strong { font-size: 12px; line-height: 1.1; letter-spacing: .15px; white-space: nowrap; }
.flyer-fab-copy small { color: rgba(255,255,255,.62); font-size: 9px; line-height: 1.1; white-space: nowrap; }
.flyer-fab-count {
  display: grid;
  place-items: center;
  min-width: 21px;
  height: 21px;
  padding: 0 6px;
  border-radius: 999px;
  color: #fff;
  background: #e8007a;
  font-size: 9px;
  font-weight: 800;
}

.flyer-fab:hover { animation-play-state: paused; transform: translateY(-3px) scale(1.015); }
.flyer-fab:active { animation-play-state: paused; transform: scale(.97); }
.flyer-fab:focus-visible { outline: 2px solid #ff5eb4; outline-offset: 3px; }

@keyframes flyer-fab-arrival {
  from { opacity: 0; transform: translateY(12px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes flyer-fab-sweep {
  0%, 66%, 100% { transform: translateX(-115%); }
  82% { transform: translateX(115%); }
}

@keyframes flyer-fab-callout {
  0%, 66%, 100% { box-shadow: inset 0 0 0 1px rgba(255,255,255,.15), 0 8px 22px rgba(0,0,0,.34); }
  76% { box-shadow: inset 0 0 0 1px rgba(255,79,174,.46), 0 8px 22px rgba(0,0,0,.34), 0 0 18px rgba(232,0,122,.3); }
}

@keyframes flyer-fab-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  35% { transform: translate3d(-2px, -4px, 0) rotate(-.35deg); }
  70% { transform: translate3d(1px, -2px, 0) rotate(.25deg); }
}

/* Comunidad de Telegram integrada en el recorrido de cada página */
.telegram-community {
  padding: clamp(26px, 4vw, 48px) clamp(16px, 5vw, 72px);
  background: #07070b;
  border-top: 1px solid rgba(41,169,235,.2);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.telegram-community-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 2.5vw, 28px);
}

.telegram-community-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  background: #229ed9;
  box-shadow: 0 0 0 7px rgba(34,158,217,.1);
}

.telegram-community-icon svg { width: 27px; height: 27px; transform: translate(-1px, 1px); }
.telegram-community-copy { min-width: 0; }
.telegram-community-copy h2 {
  margin: 0 0 5px;
  color: #fff;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.telegram-community-copy p {
  max-width: 62ch;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(.82rem, 1.2vw, .95rem);
  line-height: 1.5;
  text-wrap: pretty;
}

.telegram-community-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  background: #168fc8;
  font-size: 12px;
  font-weight: 800;
  transition: background 180ms ease, transform 180ms var(--ease-out);
}
.telegram-community-link:hover { color: #fff; background: #25a9e6; transform: translateY(-2px); }
.telegram-community-link:active { transform: scale(.98); }
.telegram-community-link:focus-visible { outline: 2px solid #70d3ff; outline-offset: 3px; }

/* Contador global de visitas: presencia mínima, sin competir con los CTA */
.visitor-counter {
  position: fixed;
  left: clamp(14px, 2vw, 26px);
  bottom: 22px;
  z-index: 8780;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 6px 11px 6px 8px;
  border-radius: 999px;
  color: rgba(255,255,255,.9);
  background: rgba(6,6,10,.92);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1), 0 5px 8px rgba(0,0,0,.32);
  opacity: 0;
  transform: translateY(7px);
  transition: opacity 220ms ease, transform 220ms var(--ease-out);
}
.visitor-counter[hidden] { display: none; }
.visitor-counter.is-visible { opacity: 1; transform: translateY(0); }
.visitor-counter-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e8007a;
  box-shadow: 0 0 0 4px rgba(232,0,122,.13);
}
.visitor-counter-copy { display: flex; align-items: baseline; gap: 4px; }
.visitor-counter-copy strong { color: #fff; font-size: 12px; line-height: 1; font-variant-numeric: tabular-nums; }
.visitor-counter-copy small { color: rgba(255,255,255,.58); font-size: 8.5px; line-height: 1; }

.flyer-overlay-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -35%;
  width: 28%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #884cff, #ff2b9a, transparent);
  filter: drop-shadow(0 0 6px #e8007a);
  animation: flyer-border-run 2.4s linear infinite;
}

@keyframes flyer-border-run { to { left: 108%; } }

.flyer-overlay-close {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 42px;
  height: 42px;
  background: rgba(6,6,8,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
}

.flyer-overlay-close:hover {
  background: rgba(232,0,122,0.3);
  border-color: var(--rosa);
}

.flyer-overlay-close svg { stroke: var(--blanco); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .evento-mes-titulo { font-size: clamp(2.4rem, 12vw, 4rem); letter-spacing: -1px; }
  .evento-mes-content { padding: 48px 24px; }
  .flyer-overlay { align-items: flex-end; padding: 12px; }
  .flyer-overlay-box { width: 100%; max-height: calc(100dvh - 24px); padding: 12px; border-radius: 18px; }
  .flyer-slider-head { min-height: 46px; padding: 0 48px 10px 2px; }
  .flyer-slider-viewport { height: min(70dvh, 610px); min-height: 300px; border-radius: 12px; }
  .flyer-slider-nav { width: 46px; height: 46px; }
  .flyer-slider-footer { padding: 9px 2px 0; }
  .flyer-fab {
    right: 12px;
    bottom: calc(112px + env(safe-area-inset-bottom, 0px));
    min-height: 50px;
    padding: 6px 9px 6px 6px;
  }
  .flyer-fab-icon { width: 38px; height: 38px; }
  .flyer-fab-copy strong { font-size: 11px; }
  .telegram-community { padding: 28px 18px; }
  .telegram-community-inner {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }
  .telegram-community-icon { width: 44px; height: 44px; box-shadow: 0 0 0 5px rgba(34,158,217,.1); }
  .telegram-community-icon svg { width: 22px; height: 22px; }
  .telegram-community-link { grid-column: 1 / -1; width: 100%; min-height: 48px; margin-top: 4px; }
  .visitor-counter {
    left: 10px;
    bottom: calc(112px + env(safe-area-inset-bottom, 0px));
    min-height: 34px;
    padding: 5px 9px 5px 7px;
  }
  .visitor-counter-copy strong { font-size: 11px; }
  .visitor-counter-copy small { font-size: 8px; }
}

@media (max-width: 480px) {
  .evento-mes { min-height: 220px; }
  .evento-mes-titulo { font-size: clamp(2rem, 14vw, 3rem); }
  .evento-mes-content { padding: 40px 20px; gap: 12px; }
  .flyer-slider-head h2 { font-size: 17px; }
  .flyer-slider-footer > span { display: none; }
}

/* =============================================
   TRABAJA CON NOSOTROS — solo WhatsApp
   ============================================= */

.trabaja-section {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 64px 72px;
}

.trabaja-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}

.trabaja-texto h2 {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--blanco);
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  line-height: 1.1;
}

.trabaja-texto p {
  font-size: 15px;
  font-weight: 300;
  color: var(--gris);
  line-height: 1.8;
}

.btn-trabaja-wha {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.4);
  color: #25D366;
  padding: 18px 32px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition:
    background var(--dur-normal) var(--ease-standard),
    border-color var(--dur-normal) var(--ease-standard),
    transform var(--dur-fast) var(--ease-out);
}

.btn-trabaja-wha:hover {
  background: rgba(37,211,102,0.22);
  border-color: #25D366;
  transform: translateY(-2px);
}

.btn-trabaja-wha:active { transform: scale(0.97); }
.btn-trabaja-wha svg { fill: #25D366; flex-shrink: 0; }

@media (max-width: 768px) {
  .trabaja-section { padding: 48px 20px; }
  .trabaja-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .btn-trabaja-wha { width: 100%; justify-content: center; }
}

/* =============================================
   SCROLL REVEAL — sistema de animación de entrada
   ============================================= */

.reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity   var(--dur-reveal) var(--ease-out),
    transform var(--dur-reveal) var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 80ms; }
.reveal-d2 { transition-delay: 160ms; }
.reveal-d3 { transition-delay: 240ms; }

/* =============================================
   CONTACTO
   ============================================= */

.mapa-banner { width: 100%; height: 420px; overflow: hidden; position: relative; z-index: 1; }
.mapa-banner iframe {
  width: 100%; height: 100%; border: none; display: block;
  filter: grayscale(80%) invert(90%) hue-rotate(180deg); opacity: 0.9;
}

.contacto-bar {
  position: relative; z-index: 1; background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(232,0,122,0.2); border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(10px); padding: 36px 72px;
}

.contacto-bar-inner {
  max-width: 1140px; margin: 0 auto; display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start; gap: 28px;
}

.contacto-bar-item {
  display: flex; align-items: flex-start; gap: 14px; flex: 1; min-width: 180px;
}

.contacto-bar-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(232,0,122,0.08); border: 1px solid rgba(232,0,122,0.2);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.contacto-bar-icon svg {
  width: 16px; height: 16px; stroke: var(--rosa); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}

.contacto-bar-item > div { display: flex; flex-direction: column; gap: 3px; }

.contacto-bar-item strong {
  font-family: var(--font-body); font-weight: 700; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--blanco);
}
.contacto-bar-item span, .contacto-bar-item a {
  font-size: 13px; font-weight: 300; color: var(--gris); line-height: 1.5;
}
.contacto-bar-item a { color: var(--rosa); transition: opacity 0.2s; }
.contacto-bar-item a:hover { opacity: 0.7; }

.contacto-bar-sep { width: 1px; height: 48px; background: var(--glass-border); flex-shrink: 0; }
.contacto-bar-sep { display: none; }

/* =============================================
   FOOTER
   ============================================= */

footer {
  position: relative; z-index: 1; background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--glass-border); padding: 44px 72px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px;
}
.footer-logo img { height: 44px; }
footer p { font-size: 12px; font-weight: 300; color: var(--gris-oscuro); letter-spacing: 1.5px; text-transform: uppercase; }
.footer-social { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px 24px; }
.footer-social a { font-size: 11px; font-weight: 700; color: var(--gris-oscuro); letter-spacing: 2px; text-transform: uppercase; transition: color 0.3s; }
.footer-social a:hover { color: var(--rosa); }

/* =============================================
   RESPONSIVE
   ============================================= */

/* ── TABLET GRANDE ── */
@media (max-width: 1024px) {
  nav ul { gap: 20px; }
  .header-right { gap: 24px; }
  .contacto-bar-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ── TABLET ── */
@media (max-width: 900px) {
  .evento-mes-inner { grid-template-columns: 1fr; gap: 40px; }
  .evento-flyer { max-width: 400px; margin: 0 auto; }
}

/* ── MÓVIL ── */
@media (max-width: 768px) {

  /* Header */
  header {
    padding: 0 max(14px, env(safe-area-inset-left)) 0 max(14px, env(safe-area-inset-right));
    height: 76px;
    justify-content: space-between;
  }
  header.scrolled { height: 68px; }
  .header-logo { gap: 9px; min-width: 0; }
  .header-logo img { height: 53px; flex: 0 0 auto; }
  header.scrolled .header-logo img { height: 48px; }
  .header-logo-text .brand-name {
    font-size: clamp(18px, 5.7vw, 23px);
    letter-spacing: clamp(3px, 1.4vw, 6px);
  }
  .header-logo-text .brand-descriptor {
    margin-top: 5px;
    font-size: clamp(6.5px, 2vw, 8px);
    letter-spacing: clamp(1.2px, 0.6vw, 2.4px);
  }
  .header-right { display: none; }

  /* Hamburger — visible en mobile */
  .menu-toggle {
    display: flex;
    order: 3;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  /* Menú móvil */
  .mobile-nav-wrapper {
    display: none;
    position: fixed;
    top: 76px; left: 0;
    width: 100%;
    height: calc(100dvh - 76px);
    background: rgba(6,6,8,0.98);
    backdrop-filter: blur(20px);
    padding: 32px 24px;
    border-top: 1px solid var(--glass-border);
    overflow-y: auto;
    z-index: 999;
  }
  .mobile-nav-wrapper.open { display: block; }
  .mobile-nav-wrapper nav ul {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  .mobile-nav-wrapper nav ul li { width: 100%; }
  .mobile-nav-wrapper nav ul li a {
    display: block;
    padding: 16px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--glass-border);
    opacity: 1;
  }
  .mobile-nav-wrapper nav ul li a.btn-reserva {
    display: inline-block;
    margin-top: 20px;
    padding: 13px 28px;
  }
  .mobile-nav-wrapper nav ul li a::after { display: none; }
  .mobile-nav-wrapper .lang-switcher { margin-top: 24px; }

  .ruleta-strip {
    height: 62px;
    margin-top: 76px;
  }
  .ruleta-track { animation-duration: 19s; }
  .ruleta-group { gap: 14px; padding: 0 18px; font-size: 11px; }
  .ruleta-wheel { width: 38px; height: 38px; flex-basis: 38px; }
  .ruleta-kicker { font-size: 12px; letter-spacing: 2px; }
  .ruleta-action-word { font-size: 17px; letter-spacing: 2px; }
  .ruleta-days { font-size: 10px; }
  .ruleta-kicker, .ruleta-cta { min-height: 30px; padding: 6px 11px; }

  /* El anuncio ya reserva el espacio bajo el header fijo */
  .hero-video {
    margin-top: 0;
    height: calc(100svh - 202px - env(safe-area-inset-bottom, 0px));
    min-height: 520px;
  }

  .hero-video-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 20px;
    width: 100%;
    gap: 14px;
  }

  .hero-logo { width: clamp(118px, 34vw, 168px); }
  .hero-video-content h1 {
    max-width: 28ch;
    font-size: clamp(0.82rem, 3.7vw, 1.05rem);
    letter-spacing: clamp(1.5px, 0.7vw, 3px);
    line-height: 1.35;
    text-wrap: balance;
  }
  .hero-video-content .btn-hero { padding: 14px 32px; font-size: 10px; letter-spacing: 3px; }
  .hero-trust { max-width: 32ch; margin-top: -5px; font-size: 10px; letter-spacing: 0.35px; line-height: 1.55; text-wrap: balance; }

  /* Promo del día */
 /* Promo en móvil */
  .promo-dia {
    padding: 16px 20px;
    background:
      radial-gradient(circle at 100% 0%, rgba(232,0,122,0.3), transparent 46%),
      linear-gradient(145deg, #1a0b28 0%, #09090d 56%, #160916 100%);
  }
  .promo-dia-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
    text-align: left;
    width: 100%;
    max-width: 390px;
    margin-inline: auto;
    padding: 15px 16px;
    border: 1px solid rgba(232,0,122,0.32);
    border-radius: 14px;
    background: rgba(255,255,255,0.035);
  }
  .promo-dia-col-dia {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    padding: 0 0 11px;
    border: none;
    min-width: 0;
  }
  .promo-tag {
    font-size: 7px;
    letter-spacing: 1.5px;
    padding: 6px 8px;
  }
  .promo-dia-col-producto {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 11px 0 12px;
    border: none;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.13);
    text-align: left;
  }
  .promo-dia-col-precio {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.13);
    padding: 10px 0 0;
    text-align: left;
  }
  .promo-dia-nombre {
    min-width: 0;
    font-size: clamp(1.2rem, 5.8vw, 1.65rem);
    letter-spacing: -0.02em;
    line-height: 1.05;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .promo-dia-producto { font-size: clamp(0.92rem, 4vw, 1.05rem); font-weight: 700; line-height: 1.3; white-space: normal; text-align: left; text-wrap: pretty; }
  .promo-dia-sub { font-size: 0.72rem; letter-spacing: 1.25px; white-space: normal; }
  .promo-precio-label { max-width: 9ch; font-size: 8px; line-height: 1.35; letter-spacing: 1.5px; white-space: normal; }
  .promo-precio-num { font-size: clamp(2.1rem, 10.5vw, 2.75rem); letter-spacing: -0.03em; text-align: right; }

  /* Shows banner */
  .shows-banner { padding: 11px 14px; gap: 10px; }
  .shows-banner p { font-size: 9px; letter-spacing: 1.4px; line-height: 1.45; }

  /* Secciones */
  section { padding: 52px 20px; }

  /* Servicios */


  /* Evento del mes */
  .evento-mes { padding: 48px 20px; }
  .evento-mes-left h2 { font-size: clamp(1.8rem, 7vw, 2.2rem); }
  .evento-mes-left p { max-width: 100%; }


  /* Contacto */
  .mapa-banner { height: 240px; }
  .contacto-bar { padding: 24px 20px; }
  .contacto-bar-sep { display: none; }
  .contacto-bar-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 16px; }
  .contacto-bar-item { min-width: 0; }
  .contacto-bar-item span,
  .contacto-bar-item a { font-size: 12px; }

  /* Flyer overlay */
  .flyer-overlay-box { max-width: 100%; }

  /* Footer */
  footer { flex-direction: column; text-align: center; padding: 28px 20px; gap: 16px; }
  .footer-social { justify-content: center; }
  .footer-logo img { height: 36px; margin: 0 auto; }
  footer p { font-size: 10px; }
}

/* ── MÓVIL PEQUEÑO ── */
@media (max-width: 480px) {
  header { height: 70px; }
  header.scrolled { height: 64px; }
  .header-logo img { height: 46px; }
  header.scrolled .header-logo img { height: 43px; }
  .header-logo-text .brand-name { font-size: clamp(17px, 5.5vw, 21px); letter-spacing: clamp(2.5px, 1vw, 4px); }
  .header-logo-text .brand-descriptor { font-size: 6.5px; letter-spacing: clamp(1px, 0.45vw, 1.7px); }
  .mobile-nav-wrapper { top: 70px; height: calc(100dvh - 70px); }

  .ruleta-strip { margin-top: 70px; height: 58px; }
  .ruleta-group { gap: 11px; padding-inline: 14px; }
  .ruleta-kicker { font-size: 11px; }
  .ruleta-action-word { font-size: 15px; }
  .hero-video {
    margin-top: 0;
    height: calc(100svh - 192px - env(safe-area-inset-bottom, 0px));
    min-height: 520px;
  }
  .hero-logo { width: clamp(110px, 40vw, 160px); }
  .hero-video-content h1 { font-size: 0.65rem; letter-spacing: 3px; }

  section { padding: 44px 16px; }
  .servicio-card { aspect-ratio: 4/3; }

  .promo-dia { padding: 14px 16px; }
  .promo-dia-inner { max-width: 370px; padding: 14px; }

  .contacto-bar-inner { grid-template-columns: 1fr; }
  .contacto-bar-item { min-width: 100%; }
}

@media (hover: none) {
  .servicios-carousel-wrap:hover .servicios-track,
  .ruleta-strip:hover .ruleta-track { animation-play-state: running; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .ruleta-track {
    width: 100%;
    transform: none;
    justify-content: center;
  }
  .ruleta-strip { height: auto; min-height: 72px; }
  .ruleta-group {
    width: 100%;
    min-width: 0;
    justify-content: center;
    flex-wrap: wrap;
    white-space: normal;
    padding-block: 10px;
  }
  .ruleta-group[aria-hidden="true"] { display: none; }
}

/* =============================================
   MODAL DE SERVICIOS
   ============================================= */

.servicio-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(6,6,8,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.servicio-modal {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  background: rgba(12,12,18,0.98);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.8);
  transform: scale(0.94) translateY(20px);
  transition: transform 260ms var(--ease-out);
}

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

/* Botón cerrar */
.servicio-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, border-color 0.2s;
}

.servicio-modal-close:hover {
  background: rgba(232,0,122,0.2);
  border-color: var(--rosa);
}

.servicio-modal-close svg { stroke: var(--blanco); }

/* Foto — columna izquierda */
.servicio-modal-img {
  background-size: cover;
  background-position: center;
  min-height: 420px;
  position: relative;
}

.servicio-modal-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,6,8,0.3) 0%, transparent 60%);
}

/* Contenido — columna derecha */
.servicio-modal-content {
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Header: icono + número */
.servicio-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.servicio-modal-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,0,122,0.12);
  border: 1px solid rgba(232,0,122,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.servicio-modal-icon svg { stroke: var(--rosa); width: 24px; height: 24px; }

.servicio-modal-num {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 64px;
  letter-spacing: -4px;
  color: rgba(255,255,255,0.05);
  line-height: 1;
}

/* Subtítulo */
.servicio-modal-subtitulo {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rosa);
  margin-bottom: 8px;
}

/* Título principal */
.servicio-modal-titulo {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.5px;
  color: var(--blanco);
  line-height: 1.1;
}

/* Descripción */
.servicio-modal-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Botón WhatsApp */
.servicio-modal-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--blanco);
  padding: 14px 24px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 0 20px rgba(37,211,102,0.2);
  align-self: flex-start;
}

.servicio-modal-btn:hover {
  background: #1fb856;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .servicio-modal {
    grid-template-columns: 1fr;
    max-height: 92svh;
    border-radius: 16px 16px 0 0;
  }

  .servicio-modal-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .servicio-modal-img {
    min-height: 240px;
    max-height: 40svh;
  }

  .servicio-modal-content {
    padding: 24px 24px 32px;
  }

  .servicio-modal-titulo {
    font-size: clamp(20px, 6vw, 26px);
  }

  .servicio-modal-desc {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .servicio-modal-img { min-height: 200px; }
  .servicio-modal-content { padding: 20px 20px 28px; }
}


/* =============================================
   NAVBAR MÓVIL TIPO APP
   Solo visible en mobile (≤ 768px)
   ============================================= */

.app-nav {
  display: none; /* oculta en desktop */
}

@media (max-width: 768px) {
  /* Espacio abajo del contenido para que la navbar no tape nada */
  body { padding-bottom: 72px; }

  .app-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6,6,8,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(232,0,122,0.2);
    height: calc(64px + env(safe-area-inset-bottom, 0px));
    align-items: stretch;
    padding-bottom: env(safe-area-inset-bottom, 0px); /* notch iPhone */
  }

  .app-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: rgba(255,255,255,0.45);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: var(--font-body);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
    text-decoration: none;
    padding: 8px 4px;
    -webkit-tap-highlight-color: transparent;
  }

  .app-nav-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: stroke 0.2s, filter 0.2s;
}

  .app-nav-item:hover,
  .app-nav-item.active {
    color: var(--rosa);
  }
.app-nav-item.app-nav-featured {
  color: var(--rosa);
  position: relative;
}

.app-nav-item.app-nav-featured svg {
  stroke: var(--rosa);
  filter: drop-shadow(0 0 6px rgba(232,0,122,0.6));
}

.app-nav-item.app-nav-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--rosa);
  border-radius: 0 0 2px 2px;
  box-shadow: 0 0 8px var(--rosa);
}

  /* Botón central destacado — Reservas */
  .app-nav-center {
  flex: 1;
}

  .app-nav-center-btn {
  display: contents;
}

  .app-nav-center:hover .app-nav-center-btn,
  .app-nav-center.active .app-nav-center-btn {
    transform: scale(1.08);
    box-shadow: 0 0 32px rgba(232,0,122,0.7);
  }

  .app-nav-center-btn svg {
    stroke: white;
  }

  .app-nav-center span {
    font-size: 8px;
    color: var(--rosa);
  }

}

@media (max-width: 480px) {
  .app-nav { height: calc(60px + env(safe-area-inset-bottom, 0px)); }
  .app-nav-item { font-size: 8px; }
  .app-nav-center-btn { width: 44px; height: 44px; }
  body { padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px)); }
}

body.menu-open,
body.modal-open { overflow: hidden; }

/* =============================================
   CAPRI LIQUID GLASS SYSTEM — navegación global
   ============================================= */

/* Nunca debe participar del flujo de escritorio. Se abre únicamente en móvil. */
.mobile-nav-wrapper { display: none; }

header {
  top: 0;
  left: clamp(16px, 3vw, 42px);
  right: clamp(16px, 3vw, 42px);
  width: auto;
  height: 76px;
  padding: 0 18px 0 14px;
  overflow: hidden;
  isolation: isolate;
  border: 0;
  border-radius: 0 0 22px 22px;
  background:
    radial-gradient(circle at 12% 0%, rgba(107,33,232,0.18), transparent 28%),
    linear-gradient(135deg, rgba(18,18,25,0.9), rgba(5,5,8,0.84));
  backdrop-filter: blur(24px) saturate(1.25);
  -webkit-backdrop-filter: blur(24px) saturate(1.25);
  box-shadow:
    inset 0 1px rgba(255,255,255,0.12),
    inset 0 -1px rgba(255,255,255,0.035),
    0 12px 36px rgba(0,0,0,0.34),
    0 0 0 1px rgba(255,255,255,0.08);
  transition: transform 320ms var(--ease-out), height 320ms var(--ease-out), background 320ms var(--ease-out);
}

header > * { position: relative; z-index: 2; }

header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 12% 0%, rgba(232,0,122,0.16), transparent 22%),
    radial-gradient(circle at 88% 100%, rgba(107,33,232,0.16), transparent 24%);
  pointer-events: none;
}

header::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  width: 28%;
  height: 1px;
  z-index: 3;
  opacity: 0.9;
  background: linear-gradient(90deg, transparent, #8d4bff 30%, #ff2b9a 66%, transparent);
  filter: drop-shadow(0 0 6px rgba(232,0,122,0.85));
  transform: translate3d(-120%,0,0);
  animation: glass-border-travel 3.4s var(--ease-out) infinite;
  pointer-events: none;
}

@keyframes glass-border-travel {
  0%, 15% { transform: translate3d(-120%,0,0); opacity: 0; }
  25% { opacity: 0.9; }
  70% { opacity: 0.9; }
  86%, 100% { transform: translate3d(455%,0,0); opacity: 0; }
}

header.scrolled {
  top: 0;
  height: 68px;
  transform: none;
  background: linear-gradient(135deg, rgba(12,12,17,0.95), rgba(4,4,7,0.92));
}

.header-logo { gap: 10px; }
.header-logo img { height: 58px; }
header.scrolled .header-logo img { height: 52px; }

.header-logo-text .brand-name {
  font-size: 22px;
  letter-spacing: 2.2px;
  line-height: 0.95;
}

.header-logo-text .brand-descriptor {
  margin-top: 6px;
  font-size: 8px;
  letter-spacing: 1.15px;
  color: #ff2b9a;
}

.header-right { gap: 18px; }
header nav ul { gap: 4px; }

header nav ul li a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 1px;
  transition: color 200ms var(--ease-out), opacity 200ms var(--ease-out), background 240ms var(--ease-out), transform 180ms var(--ease-out);
}

header nav ul li a::after { display: none; }
header nav ul li a:hover,
header nav ul li a.active { background: rgba(255,255,255,0.075); }
header nav ul li a:active { transform: scale(0.97); }

header nav ul li a.btn-reserva {
  padding: 11px 19px;
  letter-spacing: 1px;
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(232,0,122,0.24), inset 0 1px rgba(255,255,255,0.18);
}

/* CHICAS es el acceso promocional permanente de la navegación. */
header nav ul li a.nav-girls-featured,
.mobile-nav-wrapper nav ul li a.nav-girls-featured {
  color: #fff;
  background: linear-gradient(135deg, rgba(232,0,122,.28), rgba(107,33,232,.16));
  box-shadow: inset 0 0 0 1px rgba(255,43,154,.28);
  animation: girls-nav-glow 1.65s var(--ease-out) infinite;
}

@keyframes girls-nav-glow {
  0%, 100% { box-shadow: inset 0 0 0 1px rgba(255,43,154,.25), 0 0 0 rgba(232,0,122,0); }
  50% { box-shadow: inset 0 0 0 1px rgba(255,92,177,.65), 0 0 14px rgba(232,0,122,.34); }
}

.ruleta-strip { margin-top: 104px; }

@media (min-width: 769px) {
  header { padding-left: clamp(24px, 2.2vw, 38px); }
  .header-logo img { display: none; }
  .header-logo { min-width: 210px; }
  .header-logo-text { display: block; }
  .header-logo-text .brand-name {
    color: #e8007a;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1.25px;
    line-height: 1;
    white-space: nowrap;
  }
  .header-logo-text .brand-name::after { content: ' NIGHT CLUB'; color: #fff; font-weight: 400; }
  .header-logo-text .brand-descriptor { display: none; }

  .ruleta-strip {
    width: auto;
    height: 66px;
    margin: 104px clamp(16px, 3vw, 42px) 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 22px;
    background:
      radial-gradient(circle at 12% 15%, rgba(121,48,255,0.78), transparent 35%),
      linear-gradient(100deg, rgba(84,12,134,0.93), rgba(225,0,119,0.9) 55%, rgba(96,8,119,0.92));
    box-shadow: inset 0 1px rgba(255,255,255,0.22), 0 14px 38px rgba(105,0,86,0.3), 0 0 0 1px rgba(232,0,122,0.1);
    backdrop-filter: blur(20px) saturate(1.35);
    -webkit-backdrop-filter: blur(20px) saturate(1.35);
  }
}

@media (min-width: 769px) {
  :is(.anf-grid, .gal-grid, .gal-video-grid, .resenas-grid) {
    gap: clamp(12px, 1.4vw, 20px);
  }
}

@media (max-width: 768px) {
  body { padding-bottom: calc(112px + env(safe-area-inset-bottom, 0px)); }

  header,
  header.scrolled {
    top: 0;
    left: 10px;
    right: 10px;
    height: 64px;
    padding: 0 12px;
    border-radius: 0 0 18px 18px;
  }

  header.scrolled { top: 0; height: 60px; transform: none; }
  .header-logo {
    position: relative;
    left: auto;
    gap: 0;
    width: max-content;
    transform: none;
  }
  .header-logo img { display: none; }
  header.scrolled .header-logo img { display: none; }
  .header-logo-text { width: auto; min-width: 0; }
  .header-logo-text .brand-name {
    display: inline;
    width: auto;
    color: #e8007a;
    font-size: clamp(20px, 6.3vw, 27px);
    font-weight: 800;
    letter-spacing: -.8px;
    text-align: left;
    white-space: nowrap;
  }
  .header-logo-text .brand-name::after { content: ' NIGHT CLUB'; color: #fff; font-weight: 400; }
  .header-logo-text .brand-descriptor {
    display: none;
  }
  .menu-toggle { margin-left: 8px; }

  .header-lang-mobile {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 48px;
    min-width: 48px;
    height: 48px;
    margin-left: auto;
    border: 0;
    border-radius: 12px;
    color: rgba(255,255,255,.66);
    background: rgba(8,8,13,.7);
    font: 700 8px/1 var(--font-body);
    cursor: pointer;
  }
  .header-lang-mobile img { width: 25px; height: 18px; margin-bottom: 4px; border-radius: 4px; }

  .menu-toggle { border-radius: 14px; background: rgba(255,255,255,0.055); }
  .menu-toggle span { width: 23px; height: 1.5px; }

  .mobile-nav-wrapper {
    top: 74px;
    left: 10px;
    right: 10px;
    width: auto;
    height: auto;
    max-height: calc(100dvh - 174px);
    padding: 18px;
    border: 0;
    border-radius: 22px;
    background: rgba(7,7,11,0.94);
    backdrop-filter: blur(26px) saturate(1.2);
    -webkit-backdrop-filter: blur(26px) saturate(1.2);
    box-shadow: inset 0 1px rgba(255,255,255,0.11), 0 18px 48px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.07);
  }
  .mobile-nav-wrapper.open { display: block; }

  .mobile-nav-wrapper nav ul li a {
    padding: 14px 12px;
    border-radius: 12px;
    border-bottom-color: rgba(255,255,255,0.065);
    font-size: 12px;
    letter-spacing: 1px;
  }

  .ruleta-strip {
    width: auto;
    min-height: 58px;
    margin: 74px 10px 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.17);
    border-radius: 19px;
    background:
      radial-gradient(circle at 10% 0%, rgba(126,48,255,0.82), transparent 40%),
      linear-gradient(105deg, rgba(74,10,119,0.95), rgba(218,0,116,0.92) 60%, rgba(88,8,106,0.94));
    box-shadow: inset 0 1px rgba(255,255,255,0.22), 0 12px 28px rgba(103,0,84,0.3);
  }

  .app-nav {
    display: flex;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: calc(104px + env(safe-area-inset-bottom, 0px));
    padding: 7px 5px max(7px, env(safe-area-inset-bottom, 0px));
    overflow: hidden;
    isolation: isolate;
    border: 0;
    border-radius: 24px 24px 0 0;
    background:
      radial-gradient(circle at 50% 120%, rgba(107,33,232,0.15), transparent 45%),
      rgba(3,3,6,0.97);
    backdrop-filter: blur(24px) saturate(1.35);
    -webkit-backdrop-filter: blur(24px) saturate(1.35);
    box-shadow: inset 0 1px rgba(255,255,255,0.13), 0 14px 38px rgba(0,0,0,0.48), 0 0 0 1px rgba(255,255,255,0.09);
  }

  .app-nav::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 32%;
    height: 1px;
    z-index: 3;
    background: linear-gradient(90deg, transparent, #8645ff, #ff2b9a, transparent);
    filter: drop-shadow(0 0 6px rgba(232,0,122,0.8));
    animation: glass-border-travel 3.2s var(--ease-out) infinite 500ms;
    pointer-events: none;
  }

  .app-nav-item {
    position: relative;
    z-index: 2;
    min-width: 0;
    min-height: 88px;
    gap: 3px;
    margin: 0 2px;
    padding: 6px 2px;
    border-radius: 18px;
    color: rgba(255,255,255,0.5);
    font-size: 8px;
    letter-spacing: 0.25px;
    transition: color 220ms var(--ease-out), background 280ms var(--ease-out), transform 180ms var(--ease-out);
  }

  .app-nav-item svg {
    width: 56px;
    height: 56px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.025));
    box-shadow: inset 0 1px rgba(255,255,255,0.12), 0 5px 14px rgba(0,0,0,0.22);
    stroke-width: 1.65;
    transition: transform 260ms var(--ease-out), filter 260ms var(--ease-out);
  }

  .app-nav-item:nth-child(1) svg { background-color: rgba(104,56,255,0.12); }
  .app-nav-item:nth-child(2) svg { background-color: rgba(24,170,225,0.11); }
  .app-nav-item:nth-child(3) svg { background-color: rgba(232,0,122,0.14); }
  .app-nav-item:nth-child(4) svg { background-color: rgba(255,121,45,0.1); }

  .app-nav-item:hover,
  .app-nav-item.active,
  .app-nav-item.app-nav-featured {
    color: #fff;
    background: rgba(255,255,255,0.09);
  }

  .app-nav-item.active { flex: 1.12; }

  .app-nav-item.active svg,
  .app-nav-item.app-nav-featured svg {
    stroke: #ff2b9a;
    border-color: rgba(255,43,154,0.48);
    background: linear-gradient(145deg, rgba(232,0,122,0.32), rgba(112,38,255,0.18));
    transform: translateY(-1px) scale(1.08);
    filter: drop-shadow(0 0 9px rgba(232,0,122,0.7));
  }

  .app-nav-item.active:not(.app-nav-featured) {
    color: rgba(255,255,255,.78);
    background: rgba(255,255,255,.055);
  }
  .app-nav-item.active:not(.app-nav-featured) svg {
    stroke: rgba(255,255,255,.78);
    border-color: rgba(255,255,255,.14);
    background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.035));
    transform: none;
    filter: none;
  }

  .app-nav-item.app-nav-featured {
    color: #fff;
    background: linear-gradient(145deg, rgba(232,0,122,.25), rgba(107,33,232,.13));
    animation: girls-mobile-glow 1.65s var(--ease-out) infinite;
  }
  .app-nav-item.app-nav-featured svg { animation: girls-mobile-heart 1.65s var(--ease-out) infinite; }

  @keyframes girls-mobile-glow {
    0%, 100% { box-shadow: inset 0 0 0 1px rgba(255,43,154,.18); }
    50% { box-shadow: inset 0 0 0 1px rgba(255,91,177,.52), 0 0 12px rgba(232,0,122,.28); }
  }
  @keyframes girls-mobile-heart {
    0%, 100% { transform: translateY(-1px) scale(1.05); filter: drop-shadow(0 0 7px rgba(232,0,122,.55)); }
    50% { transform: translateY(-2px) scale(1.14); filter: drop-shadow(0 0 12px rgba(255,43,154,.9)); }
  }

  .app-nav-item.app-nav-featured::before { display: none; }
  .app-nav-item:active { transform: scale(0.96); }

  .hero-video { height: calc(100svh - 224px - env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 480px) {
  body { padding-bottom: calc(108px + env(safe-area-inset-bottom, 0px)); }
  .ruleta-strip { margin-top: 74px; }
  .app-nav { height: calc(100px + env(safe-area-inset-bottom, 0px)); }
  .app-nav-item { min-height: 84px; margin-inline: 1px; font-size: 7.5px; }
  .app-nav-item svg { width: 54px; height: 54px; }
  .hero-video { height: calc(100svh - 214px - env(safe-area-inset-bottom, 0px)); }
}

@media (min-width: 769px) { .header-lang-mobile { display: none; } }

/* Controles compartidos: vidrio por función, sin perder jerarquía ni contraste. */
:is(.btn-hero, .btn-trabaja-wha, .btn-resenas-more, .servicio-modal-btn,
    .ruleta-modal-cta, .ruleta-cta, .flyer-overlay-close, .servicio-modal-close,
    .ruleta-modal-close) {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: inset 0 1px rgba(255,255,255,0.2), 0 10px 28px rgba(0,0,0,0.22);
  backdrop-filter: blur(14px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
  transition-duration: 180ms;
}

:is(.btn-hero, .servicio-modal-btn, .ruleta-modal-cta) {
  background: linear-gradient(135deg, rgba(255,22,144,0.96), rgba(183,0,104,0.93));
}

@media (prefers-reduced-motion: reduce) {
  header::after,
  .app-nav::after,
  .nav-girls-featured,
  .app-nav-item.app-nav-featured,
  .app-nav-item.app-nav-featured svg,
  .flyer-fab,
  .flyer-fab::before,
  .telegram-community-link { transition: none; }
  .visitor-counter { transition: none; opacity: 1; transform: none; }
}

/* =============================================
   RESERVAS — bloque WhatsApp (reemplaza formulario)
   ============================================= */

/* =============================================
   HOME — promo diaria v2
   ============================================= */
.promo-dia {
  padding: 16px clamp(12px, 3vw, 42px);
  border: 0;
  background: #07060a;
}

.promo-dia::before {
  z-index: 2;
  width: 34%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8d4bff, #ff2b9a, transparent);
  animation-duration: 2.8s;
  opacity: .9;
}

.promo-dia-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, .9fr) minmax(280px, 1.35fr) minmax(180px, .65fr);
  gap: 0;
  min-height: 156px;
  max-width: 1180px;
  overflow: hidden;
  border: 1px solid rgba(255,43,154,.28);
  border-radius: 16px;
  background:
    radial-gradient(circle at 8% 10%, rgba(107,33,232,.3), transparent 32%),
    radial-gradient(circle at 94% 55%, rgba(232,0,122,.3), transparent 36%),
    linear-gradient(115deg, #120b1d, #08080c 52%, #1a0715);
}

.promo-dia-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 38%, rgba(255,255,255,.055) 49%, transparent 60%);
  background-size: 220% 100%;
  animation: promo-card-light 2.6s linear infinite;
}

.promo-dia-col-dia,
.promo-dia-col-producto,
.promo-dia-col-precio {
  position: relative;
  z-index: 1;
  border: 0;
}

.promo-dia-col-dia {
  justify-content: center;
  gap: 10px;
  padding: 26px 30px;
}

.promo-tag {
  padding: 6px 10px;
  border-radius: 999px;
  color: #ff69b5;
  background: rgba(232,0,122,.1);
  font-size: 8px;
  letter-spacing: 2px;
}

.promo-dia-nombre {
  font-size: clamp(2rem, 3.3vw, 3rem);
  letter-spacing: -.045em;
  text-wrap: balance;
}

.promo-dia-col-producto {
  align-items: flex-start;
  justify-content: center;
  padding: 24px clamp(28px, 4vw, 54px);
  text-align: left;
}

.promo-dia-col-producto::before,
.promo-dia-col-precio::before {
  content: '';
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 1px;
  background: linear-gradient(transparent, rgba(255,255,255,.2), transparent);
}

.promo-dia-producto {
  max-width: 28ch;
  color: #fff;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  text-wrap: balance;
}

.promo-dia-sub { margin-top: 7px; color: #ff4ca6; font-size: .8rem; letter-spacing: 1.3px; }

.promo-dia-col-precio {
  align-items: center;
  justify-content: center;
  padding: 22px 28px;
  text-align: center;
}

.promo-precio-label { color: rgba(255,255,255,.62); font-size: 8px; letter-spacing: 1.7px; }
.promo-precio-num { margin-top: 5px; font-size: clamp(3.2rem, 5vw, 4.6rem); letter-spacing: -.055em; }

@keyframes promo-card-light { to { background-position: -220% 0; } }

@media (max-width: 768px) {
  .promo-dia { padding: 10px; background: #07060a; }
  .promo-dia-inner {
    grid-template-columns: minmax(0, 1fr) clamp(86px, 27vw, 116px);
    grid-template-rows: auto auto;
    min-height: 174px;
    max-width: 430px;
    padding: 0;
    border-radius: 15px;
  }
  .promo-dia-col-dia {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 7px;
    padding: 20px 18px 6px;
  }
  .promo-tag { padding: 5px 8px; font-size: 6.5px; letter-spacing: 1.15px; }
  .promo-dia-nombre { font-size: clamp(1.35rem, 7vw, 2rem); letter-spacing: -.04em; white-space: normal; overflow-wrap: normal; }
  .promo-dia-col-producto {
    grid-column: 1;
    grid-row: 2;
    align-items: flex-start;
    justify-content: flex-start;
    min-width: 0;
    padding: 8px 18px 20px;
    border: 0;
  }
  .promo-dia-col-producto::before { display: none; }
  .promo-dia-producto { font-size: clamp(.92rem, 4.2vw, 1.08rem); line-height: 1.3; text-align: left; }
  .promo-dia-sub { margin-top: 5px; font-size: .7rem; }
  .promo-dia-col-precio {
    grid-column: 2;
    grid-row: 1 / 3;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 0;
    padding: 16px 7px;
    border: 0;
    background: linear-gradient(180deg, rgba(232,0,122,.07), rgba(232,0,122,.18));
    container-type: inline-size;
  }
  .promo-dia-col-precio::before { top: 16px; bottom: 16px; }
  .promo-precio-label { max-width: 7ch; font-size: 6.5px; line-height: 1.35; letter-spacing: 1px; text-align: center; }
  .promo-precio-num { display: block; max-width: 100%; font-size: clamp(1.6rem, 8vw, 2.1rem); font-size: clamp(1.6rem, 36cqw, 2.55rem); letter-spacing: -.075em; line-height: 1; text-align: center; }
}

@media (max-width: 360px) {
  .promo-dia-inner { grid-template-columns: minmax(0, 1fr) 86px; }
  .promo-dia-col-dia { padding-inline: 14px; }
  .promo-dia-col-producto { padding-inline: 14px; }
  .promo-dia-nombre { font-size: 1.22rem; }
  .promo-precio-num { font-size: clamp(1.5rem, 8vw, 1.75rem); font-size: clamp(1.5rem, 34cqw, 1.75rem); }
}

/* Slide generado con la misma promoción diaria */
.flyer-promo-daily {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 5vw, 42px);
  background:
    radial-gradient(circle at 15% 15%, rgba(107,33,232,.38), transparent 36%),
    radial-gradient(circle at 88% 82%, rgba(232,0,122,.42), transparent 42%),
    #08060d;
}
.flyer-promo-orbit { position: absolute; width: 70%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; box-shadow: 0 0 80px rgba(232,0,122,.18); animation: flyer-promo-orbit 6s linear infinite; }
.flyer-promo-card { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; width: min(100%, 390px); padding: clamp(24px, 6vw, 42px) 20px; text-align: center; }
.flyer-promo-label { padding: 6px 12px; border-radius: 999px; color: #ff72bc; background: rgba(232,0,122,.12); font-size: 8px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; }
.flyer-promo-day { margin-top: 14px; color: #fff; font-size: clamp(2.2rem, 9vw, 4.2rem); font-weight: 900; line-height: .95; letter-spacing: -.055em; text-transform: uppercase; }
.flyer-promo-rule { width: 46px; height: 2px; margin: 20px 0; background: #e8007a; box-shadow: 0 0 10px #e8007a; }
.flyer-promo-product { max-width: 25ch; color: #fff; font-size: clamp(1.1rem, 4.5vw, 1.5rem); font-weight: 700; line-height: 1.3; }
.flyer-promo-sub { margin-top: 7px; color: #ff66b5; font-size: .85rem; font-weight: 800; }
.flyer-promo-card small { margin-top: 24px; color: rgba(255,255,255,.56); font-size: 9px; letter-spacing: 1.3px; text-transform: uppercase; }
.flyer-promo-price { margin-top: 2px; color: #ff0a87; font-size: clamp(4rem, 18vw, 7rem); font-weight: 900; line-height: .95; letter-spacing: -.075em; text-shadow: 0 0 34px rgba(232,0,122,.52); }
.flyer-promo-card a { margin-top: 22px; padding: 14px 25px; border-radius: 999px; color: #fff; background: linear-gradient(135deg, #e8007a, #7b24df); font-size: 10px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
@keyframes flyer-promo-orbit { to { transform: rotate(360deg); } }

/* =============================================
   HOME — CTA dinámico de anfitrionas
   ============================================= */
.girls-home-banner {
  position: relative;
  min-height: clamp(250px, 34vw, 430px);
  margin: 14px clamp(14px, 3vw, 42px) 20px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 18px;
  background: #09070e;
  box-shadow: 0 12px 34px rgba(0,0,0,.42);
  contain: paint;
}

.girls-home-media,
.girls-home-slide,
.girls-home-energy { position: absolute; inset: 0; }

.girls-home-slide {
  opacity: 0;
  background-position: center 28%;
  background-size: cover;
  transform: scale(1.02);
  transition: opacity 280ms var(--ease-out);
  will-change: transform, opacity;
}

.girls-home-slide.is-active {
  z-index: 1;
  opacity: 1;
  animation: girls-home-zoom 2s linear both;
}

.girls-home-media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(5,3,10,.78), rgba(5,3,10,.18) 36%, rgba(5,3,10,.2) 64%, rgba(5,3,10,.8)),
    linear-gradient(0deg, rgba(6,3,11,.72), transparent 48%, rgba(6,3,11,.28));
}

.girls-home-energy {
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(232,0,122,.05), rgba(6,3,11,.52) 68%),
    linear-gradient(112deg, transparent 35%, rgba(255,52,165,.2) 48%, transparent 58%);
  background-size: 100% 100%, 240% 100%;
  animation: girls-home-sweep 1.6s linear infinite;
}

.girls-home-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: inherit;
  padding: 40px 20px;
  text-align: center;
}

.girls-home-content > span {
  margin-bottom: 12px;
  color: rgba(255,255,255,.82);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,.9);
}

.girls-home-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: min(92%, 780px);
  min-height: 74px;
  padding: 18px clamp(24px, 5vw, 58px);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(105deg, rgba(161,25,211,.9), rgba(232,0,122,.96) 52%, rgba(129,26,217,.9));
  background-size: 200% 100%;
  box-shadow: inset 0 1px rgba(255,255,255,.3), 0 8px 28px rgba(232,0,122,.4);
  font-size: clamp(19px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1;
  text-transform: uppercase;
  text-wrap: balance;
  animation: girls-home-cta-pulse 1.45s var(--ease-out) infinite;
  transition: transform 150ms ease, filter 180ms ease;
}

.girls-home-cta svg { width: clamp(22px, 3vw, 34px); height: auto; flex: none; }
.girls-home-cta:hover { filter: brightness(1.13); transform: scale(1.025); }
.girls-home-cta:active { transform: scale(.98); }
.girls-home-content small { margin-top: 13px; color: rgba(255,255,255,.78); font-size: 11px; font-weight: 600; text-shadow: 0 2px 10px #000; }

@keyframes girls-home-zoom {
  from { transform: scale(1.02) translate3d(0,0,0); }
  to { transform: scale(1.15) translate3d(0,-1.5%,0); }
}
@keyframes girls-home-sweep { to { background-position: 0 0, -240% 0; } }
@keyframes girls-home-cta-pulse {
  0%, 100% { background-position: 0 0; box-shadow: inset 0 1px rgba(255,255,255,.3), 0 8px 24px rgba(232,0,122,.32); }
  50% { background-position: 100% 0; box-shadow: inset 0 1px rgba(255,255,255,.35), 0 8px 32px rgba(232,0,122,.55); }
}

@media (max-width: 768px) {
  .girls-home-banner {
    min-height: 260px;
    margin: 10px 10px 14px;
    border-radius: 15px;
  }
  .girls-home-content { padding: 30px 14px; }
  .girls-home-content > span { margin-bottom: 10px; font-size: 8px; letter-spacing: 1.5px; }
  .girls-home-cta { width: min(100%, 390px); min-height: 64px; gap: 10px; padding: 15px 18px; font-size: clamp(18px, 6.2vw, 27px); }
  .girls-home-content small { max-width: 29ch; font-size: 10px; line-height: 1.4; }
}

@media (prefers-reduced-motion: reduce) {
  .girls-home-slide.is-active,
  .girls-home-energy,
  .girls-home-cta { animation: none; }
  .girls-home-slide { transition-duration: 120ms; }
}

.res-wha-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 48px 36px;
  text-align: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  height: 100%;
}

.res-wha-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.res-wha-info-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
}

.res-wha-info-row svg { stroke: var(--rosa); flex-shrink: 0; }

.res-wha-desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 320px;
}

.res-btn-wha {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #25D366;
  color: var(--blanco);
  padding: 20px 40px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 0 30px rgba(37,211,102,0.3), 0 8px 32px rgba(0,0,0,0.3);
  animation: wha-pulse 3s ease-in-out infinite;
}

@keyframes wha-pulse {
  0%, 100% { box-shadow: 0 0 30px rgba(37,211,102,0.3), 0 8px 32px rgba(0,0,0,0.3); }
  50%       { box-shadow: 0 0 50px rgba(37,211,102,0.6), 0 8px 40px rgba(0,0,0,0.4); }
}

.res-btn-wha:hover {
  background: #1fb856;
  transform: translateY(-3px);
  box-shadow: 0 0 60px rgba(37,211,102,0.5), 0 16px 48px rgba(0,0,0,0.4);
  animation: none;
}

.res-btn-wha svg { fill: white; flex-shrink: 0; }

.res-wha-sub {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}

.res-espacios-titulo {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: -0.3px;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  line-height: 1;
}

@media (max-width: 768px) {
  .res-wha-block { padding: 32px 20px; gap: 20px; }
  .res-btn-wha { padding: 16px 28px; font-size: 12px; letter-spacing: 2px; width: 100%; justify-content: center; }
  .res-wha-desc { font-size: 14px; }
}

/* MOBILE NAV — limpia, compacta y con CHICAS elevada */
@media (max-width: 768px) {
  body { padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px)); }
  .app-nav {
    height: calc(78px + env(safe-area-inset-bottom, 0px));
    padding: 7px 7px max(6px, env(safe-area-inset-bottom, 0px));
    overflow: visible;
    border-radius: 22px 22px 0 0;
    background: rgba(3,3,6,.985);
    box-shadow: inset 0 1px rgba(255,255,255,.1), 0 -8px 22px rgba(0,0,0,.28);
  }
  .app-nav::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 50%;
    width: 82px;
    height: 46px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,0,122,.2), rgba(107,33,232,.08) 48%, transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
  }
  .app-nav-item,
  .app-nav-item.active {
    min-height: 62px;
    gap: 2px;
    margin: 0 1px;
    padding: 5px 2px;
    border-radius: 12px;
    background: transparent;
    color: rgba(255,255,255,.5);
    font-size: 7px;
    flex: 1;
  }
  .app-nav-item svg,
  .app-nav-item.active:not(.app-nav-featured) svg {
    width: 40px;
    height: 40px;
    padding: 5px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    stroke: rgba(255,255,255,.48);
    filter: none;
    transform: none;
  }
  .app-nav .app-nav-item:not(.app-nav-featured) svg {
    border: 0;
    background: transparent;
    box-shadow: none;
    filter: none;
  }
  .app-nav-item.active:not(.app-nav-featured) { color: rgba(255,255,255,.88); background: transparent; }
  .app-nav-item.active:not(.app-nav-featured) svg { stroke: rgba(255,255,255,.9); }
  .app-nav-item.app-nav-featured,
  .app-nav-item.app-nav-featured.active {
    min-height: 62px;
    color: #fff;
    background: transparent;
    animation: girls-nav-float 1.55s var(--ease-out) infinite;
  }
  .app-nav-item.app-nav-featured svg,
  .app-nav-item.app-nav-featured.active svg {
    width: 50px;
    height: 50px;
    padding: 11px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 50%;
    background: linear-gradient(145deg, #f10a84, #762ae8 62%, #3923b6);
    box-shadow: inset 0 1px rgba(255,255,255,.3), 0 7px 16px rgba(232,0,122,.36);
    stroke: #fff;
    animation: girls-heart-clean 1.55s var(--ease-out) infinite;
  }
  .app-nav-item.app-nav-featured span {
    display: block;
    margin-top: 1px;
    color: #fff;
    font-size: 7px;
    line-height: 1.2;
    text-shadow: 0 1px 5px #000;
  }
  @keyframes girls-nav-float {
    0%, 100% { transform: translateY(-8px); }
    50% { transform: translateY(-11px); }
  }
  @keyframes girls-heart-clean {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(232,0,122,.55)); }
    50% { filter: drop-shadow(0 0 11px rgba(255,74,170,.95)); }
  }
}

@media (max-width: 360px) {
  .app-nav { left: 6px; right: 6px; padding-inline: 4px; }
  .app-nav-item svg,
  .app-nav-item.active:not(.app-nav-featured) svg { width: 37px; height: 37px; }
  .app-nav-item.app-nav-featured svg,
  .app-nav-item.app-nav-featured.active svg { width: 48px; height: 48px; padding: 10px; }
}

@media (prefers-reduced-motion: reduce) and (max-width: 768px) {
  .app-nav-item.app-nav-featured { animation: none; transform: translateY(-8px); }
  .app-nav-item.app-nav-featured svg { animation: none; transform: none; }
}
