/* ============================================================
   DESPEDIDAS PREMIUM · Stylesheet
   Estética: editorial luxury con energía nightlife
   Tipografía: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

/* ============ DESIGN TOKENS ============ */
:root {
  --bg: #0A0218;
  --bg-soft: #15082E;
  --bg-card: #1A0B33;
  --bg-elevated: #25144A;
  --magenta: #E91E63;
  --magenta-bright: #FF1788;
  --magenta-soft: #FF4D9A;
  --magenta-glow: rgba(233, 30, 99, 0.15);
  --text: #FFFFFF;
  --text-soft: rgba(255, 255, 255, 0.72);
  --text-muted: rgba(255, 255, 255, 0.5);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
  --max: 1200px;
  --pad: clamp(20px, 5vw, 64px);
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* Subtle grain texture overlay para profundidad */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ LAYOUT ============ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--magenta);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--magenta);
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 16px 0 20px;
}
.section-title em { font-style: italic; color: var(--magenta-soft); }

.section-sub {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 580px;
  line-height: 1.6;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--magenta);
  color: #fff;
}
.btn-primary:hover { background: var(--magenta-bright); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { border-color: var(--magenta); color: var(--magenta-soft); }
.btn svg { width: 16px; height: 16px; }

/* ============ NAVBAR ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(10, 2, 24, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--magenta);
  letter-spacing: -0.01em;
  line-height: 1;
}
.logo span { color: var(--text); }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  color: var(--text-soft);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--magenta-soft); }
.nav-cta-mobile { display: none; }
.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--text);
  position: relative;
  transition: all 0.3s ease;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s ease;
}
.menu-toggle span::before { top: -7px; left: 0; }
.menu-toggle span::after { top: 7px; left: 0; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  /* Fallback background si la imagen no carga */
  background: radial-gradient(ellipse at 70% 40%, #2A0F4D 0%, #0A0218 70%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-content { max-width: 620px; }
.hero-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  background: var(--magenta-glow);
  border: 1px solid rgba(233, 30, 99, 0.4);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-pill b {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--magenta-soft);
  font-size: 17px;
  letter-spacing: 0.01em;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--magenta-soft);
  font-weight: 500;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-decor {
  position: absolute;
  bottom: 32px;
  left: var(--pad);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-decor::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--text-muted);
}

/* ============ SECTION: SERVICIOS ============ */
.section { padding: 120px 0; position: relative; }
.section-head {
  max-width: 760px;
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.4s ease, border-color 0.4s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(233, 30, 99, 0.4);
}
.service-card .img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--bg-elevated);
}
.service-card .img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,2,24,0.6) 100%);
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover img { transform: scale(1.05); }
.service-card .body { padding: 22px 22px 26px; }
.service-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-soft);
}
.service-card .features {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-card .features li {
  font-size: 13px;
  color: var(--text-soft);
  padding-left: 18px;
  position: relative;
}
.service-card .features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1px;
  background: var(--magenta);
}

/* ============ PACK FEATURED ============ */
.pack-section { padding: 60px 0 120px; }
.pack-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-soft) 100%);
  border: 1px solid rgba(233, 30, 99, 0.25);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.pack-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, var(--magenta-glow) 0%, transparent 60%);
  pointer-events: none;
}
.pack-card > * { position: relative; z-index: 2; }
.pack-content h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  margin: 14px 0 24px;
  letter-spacing: -0.01em;
}
.pack-content h2 em { font-style: italic; color: var(--magenta-soft); }
.pack-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  margin: 0 0 32px;
}
.pack-list li {
  font-size: 14px;
  color: var(--text-soft);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.pack-list svg {
  width: 16px;
  height: 16px;
  color: var(--magenta);
  flex-shrink: 0;
  margin-top: 2px;
}
.pack-price {
  text-align: center;
}
.pack-price .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: block;
}
.pack-price .amount {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(64px, 10vw, 110px);
  line-height: 1;
  color: var(--magenta-soft);
  letter-spacing: -0.02em;
}
.pack-price .note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--text-soft);
  margin-top: 16px;
  display: block;
}
.pack-price .location {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.06em;
}

/* ============ STAFF ============ */
.staff-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 50%, var(--bg) 100%);
}
.staff-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
.staff-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.staff-features li {
  font-size: 14px;
  color: var(--text-soft);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.staff-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 1px;
  background: var(--magenta);
}
.staff-features li strong {
  color: var(--text);
  font-weight: 500;
}
.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.dancer {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-card);
}
.dancer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dancer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,2,24,0.85) 100%);
  pointer-events: none;
}
.dancer:hover img { transform: scale(1.05); }
.dancer .name {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.dancer .name::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--magenta);
  margin-bottom: 10px;
}

/* ============ STAT MOMENT ============ */
.stat-section {
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(96px, 16vw, 200px);
  line-height: 0.9;
  color: var(--magenta);
  letter-spacing: -0.04em;
  margin: 0;
}
.stat-label {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 24px;
}

/* ============ FAQ ============ */
.faq-grid {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-item summary {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
  padding: 28px 48px 28px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.3s ease;
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 300;
  color: var(--magenta);
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--magenta-soft); }
.faq-answer {
  padding: 0 48px 28px 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
}

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
}
.final-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  max-width: 880px;
  margin: 0 auto 32px;
}
.final-cta h2 em { font-style: italic; color: var(--magenta-soft); font-weight: 500; }
.final-cta .btn { padding: 18px 36px; font-size: 16px; }

/* ============ FOOTER ============ */
footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
  background: #050010;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { font-size: 28px; margin-bottom: 16px; display: inline-block; }
.footer-brand p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 18px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 10px;
  transition: color 0.2s ease;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--magenta-soft); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ============ FLOATING WHATSAPP ============ */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease;
  animation: pulse-wa 2.5s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 32px; height: 32px; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ============ SCROLL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .staff-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .staff-head { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  .pack-card { grid-template-columns: 1fr; gap: 36px; text-align: left; }
  .pack-price { text-align: left; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 2, 24, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    border-top: 1px solid var(--border);
  }
  .nav-links.open a {
    padding: 16px var(--pad);
    font-size: 16px;
    border-bottom: 1px solid var(--border);
  }
  .menu-toggle { display: flex; }
  .nav-cta-desktop { display: none; }
  .section { padding: 80px 0; }
  .pack-section { padding: 40px 0 80px; }
  .final-cta { padding: 80px 0; }
  .pack-list { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 100px 0 60px; min-height: 90vh; }
  .hero-decor { display: none; }
  .float-wa { width: 56px; height: 56px; bottom: 16px; right: 16px; }
  .float-wa svg { width: 28px; height: 28px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { flex: 1; justify-content: center; }
  .pack-card { padding: 28px 22px; }
}

/* Reduce motion support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}
