/* ==========================================================================
   PRODUCCIONES EL GABÁN - Gran Gala Araureña 2026
   Estilo Criollo Premium & Solemne (LexTrust Enhanced)
   Dominio Oficial: produccioneselgaban.lat
   ========================================================================== */

:root {
  /* Paleta Oficial Producciones El Gabán (Extraída del Emblema Oficial) */
  --bg-darkest: #040C17;
  --bg-primary: #071526;
  --bg-secondary: #002343;
  --bg-surface: #0B2038;
  --bg-card: rgba(11, 32, 56, 0.90);
  --bg-card-hover: rgba(16, 44, 78, 0.96);
  --bg-glass: rgba(255, 240, 215, 0.06);

  /* Acentos Naranja Cobre / Ámbar Dorado del Logo */
  --gold-primary: #D88026;
  --gold-light: #FFF0D7;
  --gold-bright: #F39C38;
  --gold-ring: #E97A16;
  --gold-dark: #9E530D;
  --gold-gradient: linear-gradient(135deg, #FFF0D7 0%, #F39C38 35%, #D88026 70%, #9E530D 100%);
  --gold-border: rgba(216, 128, 38, 0.40);
  --gold-glow: rgba(233, 122, 22, 0.35);

  /* Pergamino y Acentos Cálidos */
  --parchment-base: #FFF0D7;
  --parchment-soft: #F8EBDC;
  --warm-amber: #D88026;
  --warm-leather: #5A351D;

  /* Textos */
  --text-primary: #FAF7F2;
  --text-secondary: #C7D6E8;
  --text-muted: #8CA0B8;
  --text-gold: #F39C38;

  /* Tipografías */
  --font-serif: 'Cinzel', serif, Georgia;
  --font-quote: 'Playfair Display', serif, Georgia;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Contenedor y bordes */
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-arch: 140px 140px 20px 20px;
  --radius-pill: 9999px;

  /* Sombras y transiciones */
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--gold-border);
  --shadow-gold: 0 8px 32px rgba(216, 128, 38, 0.3);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* RESET & BASE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-darkest);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  position: relative;
  background: radial-gradient(circle at 50% 0%, #152445 0%, var(--bg-darkest) 75%);
  min-height: 100vh;
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input, select {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
}

/* GRADIENTS & UTILITIES */
.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gold {
  color: var(--gold-primary);
}

.w-4 { width: 1rem; }
.h-4 { height: 1rem; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }

/* TOP ANNOUNCEMENT BAR */
.top-announcement {
  background: linear-gradient(90deg, #120A05 0%, #2E1A0A 50%, #120A05 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.5rem 0;
  font-size: 0.85rem;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.announcement-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #FCA5A5;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #EF4444;
  border-radius: 50%;
  box-shadow: 0 0 8px #EF4444;
  animation: pulseAnimation 1.5s infinite;
}

@keyframes pulseAnimation {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.announcement-text {
  color: var(--text-secondary);
}

.announcement-text strong {
  color: var(--gold-light);
}

.announcement-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold-primary);
  font-weight: 600;
}

.announcement-link:hover {
  color: var(--gold-light);
  transform: translateX(3px);
}

/* SITE HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 20, 38, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-seal-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: contain;
  border: 2px solid var(--gold-ring);
  box-shadow: 0 0 16px rgba(233, 122, 22, 0.45);
  background: var(--parchment-base);
  flex-shrink: 0;
  transition: var(--transition);
}

.brand-seal-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 22px rgba(233, 122, 22, 0.65);
}

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

.brand-title {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accent-el {
  color: var(--gold-ring);
  -webkit-text-fill-color: var(--gold-ring);
}

.brand-slogan {
  font-size: 0.65rem;
  color: var(--gold-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.brand-subtitle {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* HERO FULL EMBLEM SHOWCASE */
.hero-emblem-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.hero-emblem-halo {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-emblem-halo::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 122, 22, 0.4) 0%, rgba(216, 128, 38, 0.15) 60%, transparent 75%);
  filter: blur(16px);
  animation: emblemPulse 3s ease-in-out infinite alternate;
}

@keyframes emblemPulse {
  0% { transform: scale(0.96); opacity: 0.7; }
  100% { transform: scale(1.06); opacity: 1; }
}

.hero-full-logo {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  border: 3px solid var(--gold-ring);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 35px rgba(233, 122, 22, 0.45);
  background: var(--parchment-base);
  transition: var(--transition);
}

.hero-full-logo:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.7), 0 0 45px rgba(233, 122, 22, 0.6);
}

.visual-decor-emblem {
  width: 190px;
  height: 190px;
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-full-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  border: 3px solid var(--gold-ring);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(233, 122, 22, 0.35);
  background: var(--parchment-base);
}

/* HERO BRAND BADGE */
.hero-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.45rem 1.4rem;
  background: rgba(11, 32, 56, 0.85);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 1.5rem;
}

.hero-seal-mini {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold-ring);
  object-fit: contain;
  background: var(--parchment-base);
}

.hero-brand-text {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.hero-brand-text em {
  font-style: normal;
  color: var(--gold-bright);
}

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

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link:hover {
  color: var(--gold-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link-highlight {
  color: #F87171;
  font-weight: 600;
}

.nav-link-highlight:hover {
  color: #EF4444;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #120A05;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.5);
  filter: brightness(1.08);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--gold-border);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold-primary);
  border-color: var(--gold-border);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #0B1E12;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #22BF5B;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
}

/* HERO SECTION */
.hero-section {
  position: relative;
  padding: 4.5rem 0 5rem 0;
  text-align: center;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at center top, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 20% 50%, rgba(20, 36, 70, 0.6) 0%, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(90, 53, 29, 0.4) 0%, transparent 50%);
  pointer-events: none;
}

.hero-accent-light {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.1rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  font-family: var(--font-serif);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-event-subtitle {
  font-family: var(--font-quote);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.hero-event-subtitle em {
  color: var(--gold-light);
  font-style: italic;
}

.hero-quote-box {
  background: rgba(16, 29, 56, 0.6);
  border-left: 3px solid var(--gold-primary);
  border-right: 3px solid var(--gold-primary);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-sm);
  margin-bottom: 2.5rem;
  backdrop-filter: blur(8px);
}

.hero-motto {
  font-family: var(--font-quote);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}

/* EVENT META BAR */
.event-meta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 2rem;
  box-shadow: var(--shadow-card);
  margin-bottom: 2.5rem;
  width: 100%;
  max-width: 960px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.meta-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.meta-icon svg {
  width: 20px;
  height: 20px;
}

.meta-data {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.meta-val {
  font-size: 0.96rem;
  color: var(--text-primary);
  font-weight: 700;
}

.meta-sub {
  font-size: 0.78rem;
  color: var(--gold-light);
}

.meta-divider {
  width: 1px;
  height: 40px;
  background: rgba(212, 175, 55, 0.2);
}

/* COUNTDOWN TIMER */
.countdown-wrapper {
  margin-bottom: 2.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-header {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.countdown-grid {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.countdown-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(16, 29, 56, 0.9);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  min-width: 82px;
  padding: 0.8rem 0.5rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.countdown-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.countdown-unit {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

.countdown-sep {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  opacity: 0.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* SECTION COMMON STYLING */
section {
  padding: 5rem 0;
  position: relative;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

/* SECTION: EL GABAN STREAMING HUB */
.streaming-hub-section {
  background: linear-gradient(180deg, rgba(7, 13, 27, 0.9) 0%, rgba(16, 29, 56, 0.6) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.stream-player-container {
  max-width: 980px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 175, 55, 0.15);
}

.player-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  background: rgba(11, 20, 38, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  flex-wrap: wrap;
  gap: 1rem;
}

.channel-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #F87171;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
}

.pulse-red {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EF4444;
  animation: pulseAnimation 1.2s infinite;
}

.channel-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
}

.channel-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.channel-specs {
  display: flex;
  gap: 0.5rem;
}

.spec-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  color: var(--text-secondary);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
}

.video-player-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  background: #040810;
}

.stream-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stream-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(11, 20, 38, 0.8) 0%, rgba(4, 8, 16, 0.95) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  z-index: 5;
  transition: opacity 0.4s ease;
}

.stream-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.overlay-brand-icon {
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
}

.overlay-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.overlay-text {
  color: var(--text-secondary);
  max-width: 520px;
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.player-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.75rem;
  background: rgba(11, 20, 38, 0.95);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  flex-wrap: wrap;
  gap: 1rem;
}

.player-footer-item {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.player-footer-item strong {
  color: var(--gold-light);
  margin-right: 0.3rem;
}

/* RADIO OFICIAL CARD */
.announcement-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.announcement-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.radio-link {
  color: #FBBF24;
}

.radio-link:hover {
  color: #FDE68A;
}

.btn-radio {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #1A0E05;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.35);
}

.btn-radio:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(245, 158, 11, 0.5);
  color: #1A0E05;
}

.radio-official-card {
  max-width: 980px;
  margin: 2rem auto 0 auto;
  background: linear-gradient(135deg, rgba(20, 35, 68, 0.95) 0%, rgba(28, 20, 10, 0.95) 100%);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 30px rgba(245, 158, 11, 0.12);
}

.radio-card-left {
  max-width: 600px;
}

.radio-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #FDE68A;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.6rem;
}

.pulse-dot-radio {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F59E0B;
  box-shadow: 0 0 10px #F59E0B;
  animation: pulseAnimation 1.3s infinite;
}

.radio-title-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.4rem;
}

.radio-station-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.radio-dial-pill {
  background: var(--gold-gradient);
  color: #120A05;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
}

.radio-station-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* RUMBERA NETWORK LOGO PRESENTATION */
.radio-logo-wrap {
  margin: 0.6rem 0 0.8rem 0;
  display: block;
}

.radio-logo-img {
  max-width: 250px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 10px rgba(254, 240, 138, 0.2));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.radio-logo-img:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 15px rgba(254, 240, 138, 0.35));
}

.ally-logo-box {
  background: rgba(4, 12, 23, 0.65);
  border: 1px solid rgba(233, 122, 22, 0.25);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  margin: 0.85rem 0 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ally-rumbera-logo {
  max-width: 190px;
  max-height: 54px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

.btn-rumbera-mini-logo {
  height: 22px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.6));
}

.footer-rumbera-logo {
  max-width: 150px;
  height: auto;
  margin-top: 0.5rem;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
  opacity: 0.92;
  transition: opacity 0.2s, transform 0.2s;
}

.footer-rumbera-logo:hover {
  opacity: 1;
  transform: scale(1.04);
}

.radio-card-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.sound-wave-bars {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 28px;
}

.sound-wave-bars .bar {
  width: 4px;
  background: #F59E0B;
  border-radius: 2px;
  animation: soundWave 1.2s ease-in-out infinite alternate;
}

.sound-wave-bars .bar-1 { height: 12px; animation-delay: 0.1s; }
.sound-wave-bars .bar-2 { height: 24px; animation-delay: 0.3s; }
.sound-wave-bars .bar-3 { height: 18px; animation-delay: 0.2s; }
.sound-wave-bars .bar-4 { height: 26px; animation-delay: 0.4s; }
.sound-wave-bars .bar-5 { height: 14px; animation-delay: 0.25s; }

@keyframes soundWave {
  0% { transform: scaleY(0.4); opacity: 0.6; }
  100% { transform: scaleY(1); opacity: 1; }
}

/* SECTION: ABOUT PRODUCCIONES EL GABÁN */
.about-company-section {
  background: var(--bg-darkest);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.lead-text {
  font-family: var(--font-quote);
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.body-text {
  color: var(--text-secondary);
  font-size: 0.98rem;
  margin-bottom: 2rem;
}

.guarantee-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.g-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.g-card:hover {
  background: var(--bg-card-hover);
  transform: translateX(6px);
  border-color: var(--gold-primary);
}

.g-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.g-icon svg {
  width: 22px;
  height: 22px;
}

.g-card strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.g-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* VISUAL FRAME */
.visual-card-frame {
  background: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-arch);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.visual-header-badge {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.visual-placeholder-image {
  background: linear-gradient(145deg, #182A4D 0%, #0D1629 100%);
  border: 1px dashed var(--gold-border);
  border-radius: var(--radius-md);
  padding: 2.5rem 1.5rem;
  margin-bottom: 1.5rem;
}

.visual-decor-arpa {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.2rem auto;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
}

.visual-caption h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.visual-caption p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.visual-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.stat-box {
  background: rgba(11, 20, 38, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.5rem;
}

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-primary);
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* SECTION: EJES TEMÁTICOS */
.ejes-section {
  background: radial-gradient(circle at 50% 50%, #13223F 0%, var(--bg-darkest) 80%);
}

.ejes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.eje-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.eje-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.eje-card-featured {
  background: linear-gradient(180deg, rgba(26, 46, 85, 0.9) 0%, rgba(16, 29, 56, 0.9) 100%);
  border-color: var(--gold-primary);
}

.eje-num {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(212, 175, 55, 0.18);
  line-height: 1;
}

.eje-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
}

.eje-icon-wrap svg {
  width: 26px;
  height: 26px;
}

.eje-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.eje-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.eje-features {
  list-style: none;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 1.25rem;
}

.eje-features li {
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.25rem;
}

.eje-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-weight: bold;
}

/* SECTION: CRONOGRAMA OFICIAL */
.cronograma-section {
  background: var(--bg-darkest);
}

.timeline-wrapper {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.timeline-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 200px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-primary) 0%, rgba(212, 175, 55, 0.1) 100%);
}

.timeline-block {
  display: grid;
  grid-template-columns: 180px 42px 1fr;
  align-items: flex-start;
  margin-bottom: 2.2rem;
  position: relative;
}

.timeline-time {
  text-align: right;
  padding-right: 1.5rem;
  display: flex;
  flex-direction: column;
}

.timeline-time .hour {
  font-family: var(--font-serif);
  font-weight: 800;
  color: var(--gold-primary);
  font-size: 1.05rem;
}

.timeline-time .location {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.timeline-marker {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 28px;
}

.marker-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-darkest);
  border: 2px solid var(--gold-primary);
}

.marker-dot.pulse {
  background: var(--gold-primary);
  box-shadow: 0 0 14px var(--gold-primary);
  animation: pulseAnimation 1.5s infinite;
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  margin-left: 1rem;
  transition: var(--transition);
}

.timeline-content:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-primary);
  transform: translateX(4px);
}

.timeline-content h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.55;
}

.timeline-highlight .timeline-content {
  background: linear-gradient(135deg, rgba(30, 52, 98, 0.9) 0%, rgba(16, 29, 56, 0.95) 100%);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.highlight-badge {
  display: inline-block;
  background: var(--gold-gradient);
  color: #120A05;
  font-family: var(--font-serif);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.5rem;
}

/* SECTION: ALLIES */
.allies-section {
  background: linear-gradient(180deg, var(--bg-darkest) 0%, rgba(14, 25, 48, 0.8) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.allies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 2rem;
}

.ally-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  transition: var(--transition);
}

.ally-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-card);
}

.ally-tag {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--gold-primary);
  margin-bottom: 0.6rem;
}

.ally-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.ally-role {
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.ally-list {
  list-style: none;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 1rem;
}

.ally-list li {
  font-size: 0.86rem;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 1.25rem;
}

.ally-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-size: 0.75rem;
}

/* SECTION: TICKETS & SPONSORSHIP */
.tickets-sponsorship-section {
  background: radial-gradient(ellipse at center, rgba(20, 36, 70, 0.6) 0%, var(--bg-darkest) 75%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.pricing-featured {
  background: linear-gradient(180deg, rgba(24, 43, 80, 0.95) 0%, rgba(14, 25, 48, 0.95) 100%);
  border-color: var(--gold-primary);
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.25);
  transform: scale(1.03);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #120A05;
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 0.35rem 1.2rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4);
}

.plan-tag {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--gold-primary);
  text-transform: uppercase;
}

.plan-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--text-primary);
  margin: 0.35rem 0;
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.plan-benefits {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.plan-benefits li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.4rem;
}

.plan-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-weight: bold;
}

/* DIRECT BOOKING BANNER */
.direct-booking-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #101F3B 0%, #1B3360 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 1.8rem 2.5rem;
  box-shadow: var(--shadow-card);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.banner-text h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

.banner-text p {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* SECTION: FAQ */
.faq-section {
  background: var(--bg-darkest);
}

.faq-accordion-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: var(--gold-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.faq-question {
  list-style: none;
  padding: 1.3rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-arrow {
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.75rem 1.4rem 1.75rem;
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.6;
}

.faq-answer a {
  color: var(--gold-light);
  text-decoration: underline;
}

/* FOOTER */
.site-footer {
  background: #040810;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 4.5rem 0 1.5rem 0;
}

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

.footer-logo {
  margin-bottom: 1.2rem;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.footer-domain {
  font-size: 0.9rem;
  color: var(--gold-light);
}

.footer-domain a {
  color: var(--gold-primary);
  text-decoration: underline;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}

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

.footer-links-col a {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.footer-links-col a:hover {
  color: var(--gold-primary);
  padding-left: 4px;
}

.footer-contact-col p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 0.65rem;
}

.footer-contact-col strong {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a {
  color: var(--gold-primary);
}

/* MODAL SYSTEM */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 16, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.modal-dialog {
  background: var(--bg-secondary);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  padding: 2.2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.2);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-backdrop.active .modal-dialog {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--gold-primary);
}

.modal-header {
  margin-bottom: 1.5rem;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.modal-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select {
  background: rgba(7, 13, 27, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}

/* FLOAT WHATSAPP BUTTON */
.float-wa-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #07190F;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 99;
  transition: var(--transition);
  animation: waPulse 2.5s infinite;
}

.float-wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.float-wa-btn svg {
  width: 32px;
  height: 32px;
}

@keyframes waPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-wrapper::before {
    left: 15px;
  }

  .timeline-block {
    grid-template-columns: 1fr;
    padding-left: 2.5rem;
  }

  .timeline-time {
    text-align: left;
    padding-right: 0;
    margin-bottom: 0.5rem;
  }

  .timeline-marker {
    position: absolute;
    left: 8px;
    top: 4px;
  }

  .timeline-content {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 70px;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(11, 20, 38, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gold-border);
    padding: 2rem 1.5rem;
    display: none;
    flex-direction: column;
  }

  .main-nav.active {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
  }

  .mobile-toggle {
    display: flex;
  }

  .event-meta-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
    gap: 1.25rem;
  }

  .meta-divider {
    width: 100%;
    height: 1px;
  }

  .countdown-card {
    min-width: 66px;
    padding: 0.6rem 0.35rem;
  }

  .countdown-number {
    font-size: 1.7rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .direct-booking-banner {
    flex-direction: column;
    text-align: center;
  }

  .float-wa-btn {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }

  .float-wa-btn svg {
    width: 28px;
    height: 28px;
  }
}
