:root {
  --bg: #0a0806;
  --bg-alt: #14100a;
  --bg-card: #1c1610;
  --gold: #d9a94d;
  --gold-light: #f4d78c;
  --gold-deep: #a97a2c;
  --text: #f5f0e6;
  --text-dim: #bdb4a3;
  --border: rgba(217, 169, 77, 0.25);
  --font-display: 'Bebas Neue', sans-serif;
  --font-script: 'Dancing Script', cursive;
  --font-body: 'Poppins', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.script-inline {
  font-family: var(--font-script);
  color: var(--gold-light);
  font-size: 1.2em;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: #1a1206;
  box-shadow: 0 8px 24px rgba(217, 169, 77, 0.35);
}
.btn--gold:hover { box-shadow: 0 10px 30px rgba(217, 169, 77, 0.5); }

.btn--outline {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold);
}
.btn--outline:hover { background: rgba(217, 169, 77, 0.1); }

.btn--ghost {
  background: rgba(217, 169, 77, 0.12);
  color: var(--gold-light);
  border-color: var(--border);
  padding: 0.6rem 1.3rem;
  font-size: 0.85rem;
}

.btn--full { width: 100%; }

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 8, 6, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.topbar__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.topbar__logo { height: 64px; filter: brightness(0) invert(1); }

/* Hero */
.hero {
  padding: 2rem 1.25rem 3rem;
  text-align: center;
  background: radial-gradient(ellipse at top, var(--bg-alt) 0%, var(--bg) 70%);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--gold-light);
  margin: 0 0 1.2rem;
}

.hero__poster {
  max-width: 400px;
  margin: 0 auto 2rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(217, 169, 77, 0.08);
}
.hero__poster img { width: 100%; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.4rem auto 0;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(217, 169, 77, 0.08);
  border: 1px solid var(--border);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 500;
}
.urgency__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  flex-shrink: 0;
  animation: urgency-pulse 1.6s ease-in-out infinite;
}
@keyframes urgency-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}
@media (prefers-reduced-motion: reduce) {
  .urgency__dot { animation: none; }
}

.reserva__urgency { color: var(--gold-light); }

/* Countdown */
.countdown-section {
  text-align: center;
  padding: 3rem 1.25rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.countdown__unit {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  min-width: 80px;
}
.countdown__unit span {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}
.countdown__unit small {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  color: var(--text-dim);
}

/* Sections generic */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  letter-spacing: 0.04em;
  color: var(--text);
  text-align: center;
  margin: 0 0 1.2rem;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 0.6rem auto 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

/* About */
.about { padding: 4rem 1.25rem; }
.about__inner { max-width: 680px; margin: 0 auto; text-align: center; }
.about__text { color: var(--text-dim); font-size: 1.05rem; }
.about__text strong { color: var(--gold-light); }
.about__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--gold-light);
}

/* Reserva */
.reserva { background: var(--bg-alt); padding: 4rem 1.25rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.reserva__inner { max-width: 520px; margin: 0 auto; }
.reserva__note {
  text-align: center;
  color: var(--text-dim);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.reserva__note strong { color: var(--gold-light); }

.reserva-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.8rem;
}
.form-row { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.form-row--split .form-row { margin-bottom: 0; }
@media (max-width: 480px) {
  .form-row--split { grid-template-columns: 1fr; }
}
.form-row label {
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 500;
}
.form-row input,
.form-row select,
.form-row textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  resize: vertical;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.ticket-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}
.ticket-option { position: relative; cursor: pointer; }
.ticket-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.ticket-option__body {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.1rem 0.8rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.ticket-option__name {
  font-weight: 600;
  color: var(--text);
  grid-column: 1;
}
.ticket-option__desc {
  grid-column: 1;
  color: var(--text-dim);
  font-size: 0.82rem;
}
.ticket-option__price {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}
.ticket-option input:checked + .ticket-option__body {
  border-color: var(--gold);
  background: rgba(217, 169, 77, 0.1);
  box-shadow: 0 0 0 1px var(--gold) inset;
}
.ticket-option input:focus-visible + .ticket-option__body {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

.form-alt {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 1rem;
  margin-bottom: 0;
}
.form-alt a { color: var(--gold-light); text-decoration: underline; }

/* Ubicacion */
.ubicacion { padding: 4rem 1.25rem; }
.ubicacion__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.ubicacion__address { color: var(--text-dim); margin-bottom: 1.5rem; }
.ubicacion__map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.ubicacion__link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold-light);
  font-size: 0.9rem;
  text-decoration: underline;
}

/* Footer */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 3rem 1.25rem 2rem;
  text-align: center;
}
.footer__logo { height: 92px; filter: brightness(0) invert(1); margin: 0 auto 1.2rem; }
.footer__contact { margin-bottom: 1rem; color: var(--text-dim); }
.footer__contact a { color: var(--gold-light); }
.footer__contact span { margin: 0 0.5rem; }
.footer__social { display: flex; gap: 1.2rem; justify-content: center; margin-bottom: 1.5rem; }
.footer__social a {
  color: var(--gold-light);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
}
.footer__copy { color: var(--text-dim); font-size: 0.8rem; margin: 0; }

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

@media (min-width: 640px) {
  .hero__content { padding-bottom: 4rem; }
}
