/* ==========================================================================
   SOYNICA.COM - MODERN GLASSMORPHISM AUDIO-REACTIVE DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-dark: #0d0b18;
  --bg-dark-card: rgba(22, 18, 38, 0.7);
  --bg-dark-card-hover: rgba(30, 24, 52, 0.85);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-border-glow: rgba(0, 242, 254, 0.4);
  
  --neon-cyan: #00f2fe;
  --neon-cyan-glow: rgba(0, 242, 254, 0.5);
  --electric-gold: #ffb703;
  --electric-gold-glow: rgba(255, 183, 3, 0.5);
  --vibrant-pink: #ff007f;
  --vibrant-pink-glow: rgba(255, 0, 127, 0.5);
  --electric-purple: #7928ca;
  
  --text-main: #ffffff;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  /* Dynamic Audio Reactive Variables */
  --audio-energy: 0;
  --audio-glow-radius: 10px;
  --audio-pulse-scale: 1;
  --audio-hue-shift: 0deg;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  background: radial-gradient(circle at 50% 0%, #1e133a 0%, #0d0b18 70%);
  min-height: 100vh;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

.gradient-text-cyan {
  background: linear-gradient(135deg, #ffffff 0%, var(--neon-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #ffffff 0%, var(--electric-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-pink {
  background: linear-gradient(135deg, #ffffff 0%, var(--vibrant-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-multi {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--electric-purple) 50%, var(--vibrant-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Container & Glassmorphism Cards */
.container {
  max-width: 1600px;
  width: 95%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.glass-panel {
  background: var(--bg-dark-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.glass-panel-interactive:hover {
  border-color: var(--glass-border-glow);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px 0 rgba(0, 242, 254, 0.2);
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  will-change: transform;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Audio Reactive Pulsing Elements (Hardware Accelerated) */
.audio-reactive-border {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.audio-playing .audio-reactive-border {
  border-color: rgba(0, 242, 254, 0.8);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
}

body.audio-playing .audio-reactive-glow {
  filter: drop-shadow(0 0 10px var(--neon-cyan));
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 11, 24, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link:hover, .nav-link.active {
  color: var(--neon-cyan);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--neon-cyan);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--neon-cyan);
}

/* NAVBAR DROPDOWNS */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-trigger {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
  font-family: inherit;
}

.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown-trigger:hover {
  color: var(--neon-cyan);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 250px;
  background: rgba(13, 11, 24, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 242, 254, 0.35);
  border-radius: 16px;
  padding: 0.6rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.85), 0 0 25px rgba(0, 242, 254, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.85rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.nav-dropdown-item:hover {
  background: rgba(0, 242, 254, 0.12);
  color: var(--neon-cyan);
  transform: translateX(4px);
}

.nav-dropdown-item i {
  font-size: 0.9rem;
  color: var(--neon-cyan);
  width: 18px;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.42rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.86rem;
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: none;
  outline: none;
}

.btn-cyan {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  color: #0d0b18;
  box-shadow: 0 3px 14px rgba(0, 242, 254, 0.35);
}

.btn-cyan:hover {
  box-shadow: 0 5px 20px rgba(0, 242, 254, 0.55);
  transform: translateY(-1px);
}

.btn-pink {
  background: linear-gradient(135deg, #ff007f 0%, #7928ca 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(255, 0, 127, 0.35);
}

.btn-pink:hover {
  box-shadow: 0 6px 28px rgba(255, 0, 127, 0.6);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: rgba(255, 183, 3, 0.05);
  border: 1px solid var(--electric-gold);
  color: var(--electric-gold);
}

.btn-outline-gold:hover {
  background: var(--electric-gold);
  color: #0d0b18;
  box-shadow: 0 4px 20px rgba(255, 183, 3, 0.4);
}

.btn-dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-dark:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Soundwave Animation */
.soundwave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 24px;
}

.soundwave span {
  width: 3px;
  height: 100%;
  background: var(--neon-cyan);
  border-radius: 3px;
  animation: wave 1.2s infinite ease-in-out;
}

.soundwave span:nth-child(1) { animation-delay: 0.0s; }
.soundwave span:nth-child(2) { animation-delay: 0.2s; }
.soundwave span:nth-child(3) { animation-delay: 0.4s; }
.soundwave span:nth-child(4) { animation-delay: 0.1s; }
.soundwave span:nth-child(5) { animation-delay: 0.3s; }

@keyframes wave {
  0%, 100% { height: 4px; }
  50% { height: 24px; }
}

/* SECTION 1: SIMULADOR DE MEMORIA */
.memory-simulator-box {
  background: linear-gradient(135deg, rgba(26, 19, 48, 0.8) 0%, rgba(13, 11, 24, 0.95) 100%);
  border: 1px solid rgba(121, 40, 202, 0.3);
  position: relative;
  overflow: hidden;
}

.memory-sim-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(440px, 1.4fr) minmax(280px, 1fr);
  gap: 2rem;
  align-items: start;
}

.memory-sim-grid > * {
  min-width: 0;
}

@media (max-width: 1200px) {
  .memory-sim-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

.ad-card-btn {
  font-family: inherit;
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.9rem 0.3rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  min-width: 0;
  box-sizing: border-box;
  outline: none;
}

.ad-card-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--neon-cyan);
  transform: translateY(-3px);
}

.ad-card-btn.playing {
  border-color: var(--neon-cyan);
  background: rgba(0, 242, 254, 0.1);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
}

.ad-card-btn.featured-gold {
  border-color: var(--electric-gold);
  background: rgba(255, 183, 3, 0.08);
}

.ad-card-btn.featured-gold:hover {
  box-shadow: 0 0 25px rgba(255, 183, 3, 0.5);
}

.play-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7928ca 0%, #ff007f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.4rem auto 0 auto;
  color: #fff;
  transition: transform 0.2s ease;
  font-size: 0.85rem;
}

.ad-card-btn.featured-gold .play-circle {
  background: linear-gradient(135deg, #ffb703 0%, #ff8800 100%);
  color: #0d0b18;
}

.ad-card-btn:hover .play-circle {
  transform: scale(1.1);
}

.num-select-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.num-select-btn:hover {
  border-color: var(--neon-cyan);
  background: rgba(0, 242, 254, 0.15);
}

.num-select-btn.selected {
  background: var(--electric-gold);
  color: #0d0b18;
  border-color: var(--electric-gold);
  box-shadow: 0 0 15px rgba(255, 183, 3, 0.6);
}

/* SECTION 2: EL ADN DE UNA MARCA */
.brand-adn-card {
  font-family: inherit;
  width: 100%;
  outline: none;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 260px;
  background: #0d0b18;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-adn-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 242, 254, 0.5);
}

.brand-video-card {
  padding: 0;
  min-height: 260px;
  background: #000;
}

.brand-card-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.9;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.brand-video-card:hover .brand-card-video {
  opacity: 1;
  transform: scale(1.03);
}

.brand-video-card.playing-sound {
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.7);
}

.brand-video-card.playing-sound .brand-card-video {
  opacity: 1;
}

.brand-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  margin-top: auto;
}

.brand-quiz {
  background: linear-gradient(180deg, rgba(121, 40, 202, 0.25) 0%, rgba(13, 11, 24, 0.9) 100%);
  border: 1px solid rgba(255, 0, 127, 0.3);
  padding: 1.8rem 1.2rem;
}

.brand-quiz:hover {
  border-color: rgba(255, 0, 127, 0.8);
  box-shadow: 0 0 25px rgba(255, 0, 127, 0.4);
}

/* SECTION 3: HERO SECTION (EXACT 9:16 ASPECT RATIO - MAXIMUM VIEWPORT HEIGHT) */
.hero-video-container {
  position: relative;
  height: 84vh;
  min-height: 560px;
  max-height: 840px;
  aspect-ratio: 9 / 16;
  width: auto;
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid rgba(0, 242, 254, 0.45);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 242, 254, 0.3);
  background: #000;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .hero-video-container {
    height: 66vh;
    min-height: 460px;
    max-height: 600px;
  }
}

.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.hero-video-overlay button {
  pointer-events: auto;
}

.hero-video-overlay.playing {
  opacity: 0;
}

.hero-video-container:hover .hero-video-overlay.playing {
  opacity: 1;
}

/* SECTION 4: JINGLE JUKEBOX */
.filter-tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.filter-tab-btn:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.1);
}

.filter-tab-btn.active {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, #4facfe 100%);
  color: #0d0b18;
  font-weight: 700;
  border-color: var(--neon-cyan);
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}

.jukebox-card {
  background: rgba(20, 16, 36, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.jukebox-card:hover {
  transform: translateY(-6px);
  border-color: var(--neon-cyan);
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.25);
}

.jukebox-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #110d24;
  overflow: hidden;
}

.jukebox-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.jukebox-card:hover .jukebox-card-media img {
  transform: scale(1.06);
}

.jukebox-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 11, 24, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.jukebox-card:hover .jukebox-play-overlay {
  opacity: 1;
  background: rgba(13, 11, 24, 0.2);
}

.badge-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(0, 242, 254, 0.12);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 242, 254, 0.3);
}

/* SECTION 5: CREATIVE PROCESS & QUOTE SIMULATOR */
.process-step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.process-step-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--vibrant-pink);
}

.simulator-input {
  width: 100%;
  background: rgba(13, 11, 24, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.25s ease;
}

.simulator-input:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.3);
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 6, 16, 0.9);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: #130f26;
  border: 1px solid rgba(0, 242, 254, 0.3);
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-vertical-container {
  background: #000;
  border: 2px solid var(--neon-cyan);
  border-radius: 22px;
  height: 90vh;
  max-height: 860px;
  aspect-ratio: 9 / 16;
  width: auto;
  max-width: 92vw;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 242, 254, 0.45), 0 25px 60px rgba(0, 0, 0, 0.95);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.modal-overlay.active .modal-vertical-container {
  transform: scale(1);
}

@media (max-width: 768px) {
  .modal-vertical-container {
    height: 92vh;
    max-height: none;
    width: min(94vw, calc(92vh * 9 / 16));
    border-radius: 18px;
  }
}

/* Vertical Zoom/Crop Engine for YouTube videos encoded inside 16:9 containers */
.vertical-crop-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  border-radius: inherit;
}

.vertical-crop-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 316.5% !important;
  height: 100% !important;
  max-width: none !important;
  border: 0;
  display: block;
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

/* Canvas Spectrum Visualizer */
#waveformCanvas {
  width: 100%;
  height: 50px;
  display: block;
}

/* Utilities */
.text-cyan { color: var(--neon-cyan); }
.text-gold { color: var(--electric-gold); }
.text-pink { color: var(--vibrant-pink); }

/* Mobile Navigation Button */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: rgba(22, 18, 38, 0.85);
  border: 1px solid rgba(0, 242, 254, 0.4);
  border-radius: 12px;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
  transition: all 0.3s ease;
}

.mobile-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-toggle:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.mobile-nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--neon-cyan);
}

.mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.mobile-nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--neon-cyan);
}

/* Mobile Drawer Overlay */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 5, 15, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Mobile Drawer Content */
.mobile-drawer-content {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: linear-gradient(180deg, #130f24 0%, #0a0814 100%);
  border-left: 1px solid rgba(0, 242, 254, 0.35);
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.9), 0 0 35px rgba(0, 242, 254, 0.15);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  padding: 1.5rem;
  box-sizing: border-box;
}

.mobile-drawer-overlay.open .mobile-drawer-content {
  transform: translateX(0);
}

/* Mobile Drawer Header */
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.25rem;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-drawer-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.25s ease;
}

.mobile-drawer-link:hover, .mobile-drawer-link.active {
  background: rgba(0, 242, 254, 0.12);
  border-color: rgba(0, 242, 254, 0.4);
  color: var(--neon-cyan);
}

/* Mobile Accordion Dropdowns */
.mobile-drawer-accordion {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-drawer-accordion-btn {
  width: 100%;
  padding: 0.85rem 1rem;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.mobile-drawer-accordion-btn i {
  transition: transform 0.3s ease;
  font-size: 0.85rem;
  color: var(--neon-cyan);
}

.mobile-drawer-accordion.active .mobile-drawer-accordion-btn i {
  transform: rotate(180deg);
}

.mobile-drawer-accordion-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.mobile-drawer-accordion.active .mobile-drawer-accordion-menu {
  max-height: 350px;
}

.mobile-drawer-sublink {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.7rem 1.25rem 0.7rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: color 0.2s, background 0.2s;
}

.mobile-drawer-sublink:hover {
  color: var(--neon-cyan);
  background: rgba(0, 242, 254, 0.06);
}

/* Responsive adjustments across mobile & vertical screens */
@media (max-width: 991px) {
  .header .nav-menu {
    display: none !important;
  }
  .header .btn-cyan.header-cta-desktop {
    display: none !important;
  }
  .mobile-nav-toggle {
    display: flex !important;
  }
  .header {
    padding: 0.65rem 0 !important;
  }
  main {
    padding-top: 0.4rem !important;
    padding-bottom: 2rem !important;
  }
  #simulador-memoria,
  section[id="simulador-memoria"] {
    padding-top: 0.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .compact-hero-header {
    margin-top: 0.3rem !important;
    margin-bottom: 0.65rem !important;
    padding: 0.2rem 0.5rem !important;
  }
  .compact-hero-header h1 {
    font-size: 1.25rem !important;
    margin-bottom: 0.2rem !important;
  }
  .compact-hero-header p {
    font-size: 0.82rem !important;
    max-width: 100% !important;
  }
  .video-showcase-section {
    max-width: 360px !important;
    margin: 0.4rem auto 1.5rem auto !important;
  }
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* ==========================================================================
   HIGH-DENSITY JINGLE JUKEBOX & YOUTUBE SHOWCASE STYLES
   ========================================================================== */

/* YouTube Vertical Long Demo Showcase */
.demo-showcase-box {
  background: linear-gradient(135deg, rgba(26, 19, 48, 0.9) 0%, rgba(13, 11, 24, 0.98) 100%);
  border: 1.5px solid rgba(0, 242, 254, 0.35);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 242, 254, 0.15);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  padding: 2rem 2.25rem;
}

.demo-layout-grid {
  display: grid;
  grid-template-columns: minmax(300px, 400px) 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

@media (max-width: 960px) {
  .demo-layout-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .demo-showcase-box {
    padding: 1.25rem 1rem !important;
    border-radius: 20px;
  }
}

.demo-video-vertical-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.demo-video-vertical {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.75);
  background: #000;
  border: none;
  position: relative;
}

.demo-video-vertical iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  border: 0;
  display: block;
}

.demo-content-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 0.25rem 0;
  gap: 1.25rem;
}

/* High-Density Compact Jingle Cards */
.compact-jingles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.compact-jingle-card {
  background: rgba(22, 18, 38, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0.75rem 0.9rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  min-height: 96px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.compact-jingle-card:hover {
  background: rgba(32, 26, 56, 0.9);
  border-color: rgba(0, 242, 254, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 242, 254, 0.15);
}

.compact-jingle-card.is-playing {
  background: rgba(0, 242, 254, 0.08);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.35);
}

.compact-jingle-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.compact-play-btn {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #00f2fe 0%, #7928ca 100%);
  color: #0d0b18;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 3px 12px rgba(0, 242, 254, 0.35);
  flex-shrink: 0;
  outline: none;
}

.compact-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 18px rgba(0, 242, 254, 0.6);
}

.compact-jingle-card.is-playing .compact-play-btn {
  background: linear-gradient(135deg, var(--vibrant-pink) 0%, #ff5e3a 100%);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(255, 0, 127, 0.6);
  animation: pulsePlay 1.5s infinite;
}

@keyframes pulsePlay {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.compact-jingle-info {
  flex: 1;
  min-width: 0;
}

.compact-jingle-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  margin-bottom: 0.2rem;
}

.compact-jingle-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.compact-format-pill {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.compact-jingle-desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.compact-jingle-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.72rem;
  padding-top: 0.2rem;
}

.compact-jingle-tag {
  color: var(--neon-cyan);
  font-weight: 600;
  font-size: 0.7rem;
}

.compact-jingle-style {
  color: var(--electric-gold);
  font-size: 0.68rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Micro Progress Bar inside each compact card */
.compact-progress-track {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.compact-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--neon-cyan) 0%, var(--vibrant-pink) 100%);
  transition: width 0.1s linear;
}

/* Search and Filter Toolbar */
.jukebox-toolbar {
  background: rgba(22, 18, 38, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.jukebox-search-box {
  position: relative;
  flex: 1;
  min-width: 260px;
}

.jukebox-search-box input {
  width: 100%;
  background: rgba(13, 11, 24, 0.8);
  border: 1px solid rgba(0, 242, 254, 0.25);
  border-radius: 50px;
  padding: 0.6rem 1rem 0.6rem 2.4rem;
  color: #fff;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.jukebox-search-box input:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
}

.jukebox-search-box i {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--neon-cyan);
  font-size: 0.85rem;
}

.jukebox-counter-pill {
  background: rgba(0, 242, 254, 0.12);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: var(--neon-cyan);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

/* ==========================================
   INTERACTIVE TIMELAPSE FULL-SCREEN SCROLL-DRIVEN BANNER
   ========================================== */
.timelapse-scroll-section {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 480vh;
  padding: 0;
  background: #000;
}

.timelapse-sticky-wrapper {
  position: sticky;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-top: 1.5px solid rgba(0, 242, 254, 0.35);
  border-bottom: 1.5px solid rgba(0, 242, 254, 0.35);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.95);
}

.timelapse-sticky-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  display: block;
  pointer-events: none;
}

.timelapse-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 11, 24, 0.45) 0%, rgba(13, 11, 24, 0) 25%, rgba(13, 11, 24, 0) 75%, rgba(13, 11, 24, 0.45) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 1.5rem 1rem;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.timelapse-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(13, 11, 24, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 242, 254, 0.55);
  border-radius: 50px;
  padding: 0.55rem 1.6rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.85), 0 0 25px rgba(0, 242, 254, 0.35);
}

.timelapse-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 10;
}

.timelapse-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--neon-cyan) 0%, var(--electric-gold) 50%, var(--vibrant-pink) 100%);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.9);
  transition: width 0.04s linear;
}

@media (max-width: 960px) {
  .timelapse-scroll-section {
    height: 250vh;
  }
  .timelapse-badge {
    font-size: 0.78rem;
    padding: 0.38rem 0.9rem;
    max-width: 90vw;
    text-align: center;
  }
  .timelapse-sticky-wrapper video {
    object-fit: contain;
    max-width: 100vw;
    max-height: 100vh;
  }
}

/* ==========================================
   ENHANCED GLOBAL FOOTER SYSTEM
   ========================================== */
.main-site-footer {
  background: linear-gradient(180deg, rgba(10, 8, 20, 0.98) 0%, #040308 100%);
  border-top: 1px solid rgba(0, 242, 254, 0.25);
  padding: 4rem 0 2rem 0;
  position: relative;
  overflow: hidden;
}

.main-site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--electric-gold), var(--vibrant-pink), transparent);
  box-shadow: 0 0 15px var(--neon-cyan);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.9fr 0.9fr;
  gap: 2.2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.footer-brand-col .footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  text-decoration: none;
}

.footer-brand-col .footer-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 1.4rem;
}

.footer-badge-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
}

.footer-showcase-card {
  position: relative;
  background: rgba(18, 14, 30, 0.85);
  border: 1.5px solid rgba(0, 242, 254, 0.45);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.85), 0 0 25px rgba(0, 242, 254, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.footer-showcase-card:hover {
  transform: translateY(-4px);
  border-color: var(--electric-gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 215, 0, 0.35);
}

.footer-showcase-img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: cover;
  display: block;
  margin: 0;
  border-radius: 14px 14px 0 0;
  transition: transform 0.4s ease;
}

.footer-showcase-card:hover .footer-showcase-img {
  transform: scale(1.02);
}

.footer-showcase-caption {
  width: 100%;
  background: rgba(13, 11, 24, 0.95);
  padding: 0.65rem 0.75rem;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--electric-gold);
  letter-spacing: 0.03em;
  border-top: 1px solid rgba(0, 242, 254, 0.2);
}

.footer-links-col h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.86rem;
  padding: 0;
  margin: 0;
}

.footer-links-list a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-links-list a:hover {
  color: var(--neon-cyan);
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-showcase-card {
    max-width: 100%;
  }
  .footer-showcase-img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================
   COMPACT HERO HEADER (MINIMAL VERTICAL SPACE)
   ========================================== */
.compact-hero-header {
  text-align: center;
  padding: 0.5rem 1rem 0.2rem 1rem;
  margin: 0 auto;
  max-width: 900px;
}

.compact-hero-header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.compact-hero-header p {
  color: var(--text-muted);
  font-size: clamp(0.78rem, 1vw, 0.88rem);
  margin: 0.2rem auto 0 auto;
  line-height: 1.35;
  max-width: 650px;
}

/* ==========================================
   INTERACTIVE VERTICAL VIDEO SHOWCASE COMPONENT (TIKTOK / REELS 9:16 PROPORTIONS)
   ========================================== */
.video-showcase-section {
  width: 100%;
  max-width: 440px;
  margin: 1.25rem auto 2.5rem auto;
  padding: 0;
  box-sizing: border-box;
  background: radial-gradient(circle at 50% 50%, rgba(22, 18, 38, 0.95) 0%, rgba(10, 8, 20, 0.98) 100%);
  border: 1.5px solid rgba(0, 242, 254, 0.45);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.95), 0 0 45px rgba(0, 242, 254, 0.25);
  position: relative;
}

.custom-video-wrapper {
  position: relative;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  border: none;
  box-shadow: none;
}

.custom-video-wrapper video {
  width: 100%;
  height: 100%;
  max-height: 72vh;
  display: block;
  object-fit: cover;
  background: #000;
  margin: 0 auto;
}

.video-showcase-caption-bar {
  width: 100%;
  margin: 0 auto;
  padding: 0.85rem 1.25rem 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  background: rgba(13, 11, 24, 0.95);
  border-top: 1px solid rgba(0, 242, 254, 0.2);
}
  gap: 1rem;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.28);
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--vibrant-pink) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  padding-left: 6px;
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.85), 0 0 20px rgba(255, 0, 127, 0.65);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.custom-video-wrapper:hover .video-play-btn {
  transform: scale(1.12);
  box-shadow: 0 0 50px rgba(0, 242, 254, 1), 0 0 30px rgba(255, 0, 127, 0.9);
}

.custom-video-wrapper.is-playing .video-play-overlay {
  opacity: 0;
  visibility: hidden;
}

/* ==========================================
   HERO PRICING SHOWCASE (PRECIOS.HTML) - AJUSTE CINEMATOGRÁFICO
   ========================================== */
.pricing-showcase-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 0;
  margin-bottom: 3.5rem;
  padding: 1.8rem 1.5rem 1.6rem 1.5rem;
  box-sizing: border-box;
  background-color: #06050b;
  background-image: url('../soynica/laimagen/fondo-precios.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 1.5px solid rgba(0, 242, 254, 0.4);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.95), 0 0 50px rgba(0, 242, 254, 0.15);
  overflow: hidden;
}

/* Contenedor central compacto (880px) para máxima visibilidad del mic a la izq y parlante a la der */
.pricing-showcase-container {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header Text */
.pricing-header-block {
  text-align: center;
  margin-bottom: 1.4rem;
}

.pricing-header-pretitle {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.85rem, 1.4vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.pricing-header-main-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  background: linear-gradient(90deg, #00f2fe 0%, #00d2ff 25%, #a855f7 65%, #ff007f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(0, 242, 254, 0.45));
}

.pricing-header-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  color: #cbd5e1;
  line-height: 1.4;
  max-width: 580px;
  margin: 0 auto;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.pricing-header-subtitle .highlight-cyan {
  color: #00f2fe;
  font-weight: 700;
}

.pricing-header-subtitle .highlight-pink {
  color: #ff007f;
  font-weight: 700;
}

/* Pricing Grid */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  align-items: stretch;
  position: relative;
  margin-bottom: 1.6rem;
}

@media (max-width: 992px) {
  .pricing-showcase-section {
    padding: 1.8rem 1rem 1.8rem 1rem;
    background-position: center center;
  }
  .pricing-cards-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    gap: 2rem;
  }
}

/* Card Base */
.pricing-card-item {
  position: relative;
  border-radius: 18px;
  padding: 1.35rem 1.1rem 1.15rem 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.pricing-card-item:hover {
  transform: translateY(-3px);
}

/* Card Premium (Left - Purple) */
.pricing-card-premium {
  background: linear-gradient(180deg, rgba(20, 14, 38, 0.9) 0%, rgba(12, 8, 26, 0.96) 100%);
  border: 1.5px solid rgba(168, 85, 247, 0.45);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(168, 85, 247, 0.15);
}

.pricing-card-premium:hover {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85), 0 0 30px rgba(168, 85, 247, 0.35);
  border-color: rgba(168, 85, 247, 0.75);
}

/* Card Featured Professional (Center - Cyan) */
.pricing-card-featured {
  background: linear-gradient(180deg, rgba(8, 22, 42, 0.93) 0%, rgba(4, 12, 26, 0.98) 100%);
  border: 2px solid #00f2fe;
  box-shadow: 0 0 28px rgba(0, 242, 254, 0.45), inset 0 0 15px rgba(0, 242, 254, 0.12), 0 20px 50px rgba(0, 0, 0, 0.85);
  transform: scale(1.025);
  z-index: 5;
}

.pricing-card-featured:hover {
  transform: scale(1.04) translateY(-3px);
  box-shadow: 0 0 40px rgba(0, 242, 254, 0.7), inset 0 0 20px rgba(0, 242, 254, 0.2), 0 25px 60px rgba(0, 0, 0, 0.9);
}

@media (max-width: 992px) {
  .pricing-card-featured {
    transform: none;
  }
  .pricing-card-featured:hover {
    transform: translateY(-3px);
  }
}

/* Featured Badge */
.pricing-badge-featured {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff007f 0%, #ff2a85 100%);
  color: #ffffff;
  padding: 0.26rem 1rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(255, 0, 127, 0.7);
  z-index: 10;
  white-space: nowrap;
}

/* ==========================================
   3D PODIUM STAGE COMPONENT (TARJETA DESTACADA)
   ========================================== */
.pricing-3d-podium-wrapper {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  height: 54px;
  pointer-events: none;
  z-index: -1;
}

/* Base Inferior Ancha con relieve metálico */
.podium-tier-base {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 30%, rgba(20, 24, 42, 0.95) 0%, rgba(8, 10, 20, 0.98) 100%);
  border: 1.5px solid rgba(0, 242, 254, 0.6);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.95), 0 0 35px rgba(0, 242, 254, 0.25);
  overflow: hidden;
}

/* Neón Rosa en las alas laterales de la base inferior */
.podium-neon-pink-wing {
  position: absolute;
  top: 0;
  width: 38%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid #ff007f;
  filter: drop-shadow(0 0 8px #ff007f) drop-shadow(0 0 18px #ff007f);
}
.podium-neon-pink-wing.left {
  left: -6%;
  border-right: none;
  border-bottom: none;
}
.podium-neon-pink-wing.right {
  right: -6%;
  border-left: none;
  border-bottom: none;
}

/* Línea frontal cyan de la base inferior */
.podium-neon-cyan-front {
  position: absolute;
  bottom: 0;
  left: 12%;
  width: 76%;
  height: 100%;
  border-radius: 50%;
  border-bottom: 2.5px solid #00f2fe;
  box-shadow: 0 4px 15px #00f2fe;
}

/* Nivel Superior Concéntrico (Elíptico con aro cyan brillante) */
.podium-tier-upper {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 25%, rgba(15, 35, 60, 0.96) 0%, rgba(4, 12, 24, 0.98) 100%);
  border: 2px solid #00f2fe;
  box-shadow: 0 0 22px #00f2fe, 0 0 40px rgba(0, 242, 254, 0.5), inset 0 0 14px rgba(0, 242, 254, 0.6);
}

/* Resplandor y sombra en el suelo */
.podium-floor-glow {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 242, 254, 0.45) 0%, rgba(255, 0, 127, 0.25) 45%, transparent 70%);
  filter: blur(8px);
  z-index: -2;
}

/* Card Acapela (Right - Pink) */
.pricing-card-acapela {
  background: linear-gradient(180deg, rgba(32, 10, 26, 0.9) 0%, rgba(18, 6, 16, 0.96) 100%);
  border: 1.5px solid rgba(255, 0, 127, 0.45);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 0, 127, 0.15);
}

.pricing-card-acapela:hover {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85), 0 0 30px rgba(255, 0, 127, 0.35);
  border-color: rgba(255, 0, 127, 0.75);
}

/* Card Top Row */
.p-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.p-card-num-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.p-card-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}

.p-card-num.purple { color: rgba(255, 255, 255, 0.35); }
.p-card-num.cyan { color: #00f2fe; text-shadow: 0 0 12px rgba(0, 242, 254, 0.6); }
.p-card-num.pink { color: rgba(255, 255, 255, 0.35); }

.p-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  text-transform: uppercase;
  text-align: left;
}

.p-card-icon-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.p-card-icon-badge.purple {
  background: rgba(168, 85, 247, 0.15);
  border: 1.5px solid rgba(168, 85, 247, 0.6);
  color: #d946ef;
}

.p-card-icon-badge.cyan {
  background: rgba(0, 242, 254, 0.18);
  border: 1.5px solid #00f2fe;
  color: #00f2fe;
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.4);
}

.p-card-icon-badge.pink {
  background: rgba(255, 0, 127, 0.15);
  border: 1.5px solid rgba(255, 0, 127, 0.6);
  color: #ff007f;
}

/* Subtitle under title */
.p-card-subtitle {
  font-size: 0.78rem;
  color: #94a3b8;
  text-align: center;
  margin: 0.25rem 0 0.65rem 0;
  min-height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
}

/* Price Box */
.p-card-price-block {
  text-align: center;
  margin-bottom: 0.7rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.p-card-price-label {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.05rem;
}

.p-card-price-label.purple { color: #c084fc; }
.p-card-price-label.cyan { color: #00f2fe; }
.p-card-price-label.pink { color: #ff007f; }

.p-card-price-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
  line-height: 1;
}

.p-card-currency {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.p-card-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -1px;
}

.p-card-price-value.purple { color: #f0abfc; text-shadow: 0 0 18px rgba(240, 171, 252, 0.5); }
.p-card-price-value.cyan { color: #00f2fe; text-shadow: 0 0 22px rgba(0, 242, 254, 0.75); }
.p-card-price-value.pink { color: #ff2a85; text-shadow: 0 0 18px rgba(255, 42, 133, 0.5); }

/* Features List */
.p-card-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  margin-bottom: 0.8rem;
  text-align: left;
}

.p-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  color: #e2e8f0;
  line-height: 1.2;
}

.p-check-icon {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.52rem;
  font-weight: 900;
  flex-shrink: 0;
}

.p-check-icon.purple { background: #c084fc; color: #000; }
.p-check-icon.cyan { background: #00f2fe; color: #000; }
.p-check-icon.pink { background: #ff007f; color: #fff; }

/* Payment Box */
.p-payment-box {
  border-radius: 9px;
  padding: 0.45rem 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.p-payment-box.purple {
  background: rgba(28, 16, 48, 0.9);
  border: 1px solid rgba(168, 85, 247, 0.35);
}

.p-payment-box.cyan {
  background: rgba(0, 36, 56, 0.9);
  border: 1px solid rgba(0, 242, 254, 0.4);
}

.p-payment-box.pink {
  background: rgba(48, 14, 34, 0.9);
  border: 1px solid rgba(255, 0, 127, 0.35);
}

.p-payment-icon {
  width: 26px;
  height: 26px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.p-payment-icon.purple { background: rgba(192, 132, 252, 0.15); color: #c084fc; }
.p-payment-icon.cyan { background: rgba(0, 242, 254, 0.15); color: #00f2fe; }
.p-payment-icon.pink { background: rgba(255, 0, 127, 0.15); color: #ff007f; }

.p-payment-title {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.p-payment-title.purple { color: #c084fc; }
.p-payment-title.cyan { color: #00f2fe; }
.p-payment-title.pink { color: #ff007f; }

.p-payment-desc {
  font-size: 0.68rem;
  color: #cbd5e1;
  line-height: 1.2;
  font-weight: 500;
}

/* Pricing Action Button */
.pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.62rem 0.75rem;
  border-radius: 9px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-sizing: border-box;
}

.pricing-btn:hover {
  transform: translateY(-2px);
}

.pricing-btn-purple {
  background: linear-gradient(135deg, #a855f7 0%, #d946ef 100%);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}
.pricing-btn-purple:hover {
  box-shadow: 0 0 25px rgba(217, 70, 239, 0.7);
}

.pricing-btn-cyan {
  background: linear-gradient(135deg, #00f2fe 0%, #00b4d8 100%);
  color: #060b17;
  box-shadow: 0 0 18px rgba(0, 242, 254, 0.6);
}
.pricing-btn-cyan:hover {
  box-shadow: 0 0 28px rgba(0, 242, 254, 0.9);
}

.pricing-btn-pink {
  background: linear-gradient(135deg, #ff007f 0%, #e11d48 100%);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.4);
}
.pricing-btn-pink:hover {
  box-shadow: 0 0 25px rgba(255, 0, 127, 0.7);
}

/* Bottom Feature Badges Bar */
.pricing-bottom-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 0.5rem 0 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.p-icon-circle {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
}

.p-icon-circle.cyan {
  background: rgba(0, 242, 254, 0.15);
  border: 1px solid #00f2fe;
  color: #00f2fe;
}

.p-icon-circle.pink {
  background: rgba(255, 0, 127, 0.15);
  border: 1px solid #ff007f;
  color: #ff007f;
}

.p-icon-circle.purple {
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid #c084fc;
  color: #c084fc;
}

/* ==========================================
   HISTORIA: SPLIT HERO & PHOTO LAYOUT
   ========================================== */
.historia-split-layout {
  display: grid;
  grid-template-columns: minmax(320px, 440px) 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.historia-photo-sticky-wrapper {
  position: sticky;
  top: 85px;
  height: calc(100vh - 110px);
  min-height: 580px;
  max-height: 900px;
  display: flex;
  flex-direction: column;
}

.historia-photo-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 242, 254, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 35px rgba(0, 242, 254, 0.22);
  background: linear-gradient(180deg, rgba(22, 18, 38, 0.8) 0%, rgba(13, 11, 24, 0.98) 100%);
}

.historia-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.historia-photo-card:hover .historia-photo-img {
  transform: scale(1.03);
}

.historia-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(0deg, rgba(13, 11, 24, 0.96) 0%, rgba(13, 11, 24, 0.75) 60%, transparent 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 242, 254, 0.25);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.historia-content-col {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.historia-photo-card.gold-card {
  border-color: rgba(255, 215, 0, 0.45);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 35px rgba(255, 215, 0, 0.22);
}

.historia-photo-card.gold-card .historia-photo-overlay {
  border-top-color: rgba(255, 215, 0, 0.3);
}

.historia-split-layout.reverse {
  grid-template-columns: 1fr minmax(320px, 440px);
}

/* Video showcase contained within the column */
.historia-content-col .video-showcase-section {
  width: 100%;
  position: relative;
  left: auto;
  right: auto;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 242, 254, 0.35);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 242, 254, 0.15);
  background: radial-gradient(circle at 50% 50%, rgba(22, 18, 38, 0.7) 0%, rgba(10, 8, 20, 0.98) 100%);
}

.historia-content-col .custom-video-wrapper {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  background: #000;
  width: 100%;
}

.historia-content-col .custom-video-wrapper video {
  width: 100%;
  height: auto;
  aspect-ratio: 1264 / 720;
  object-fit: cover;
  display: block;
}

.historia-content-col .video-showcase-caption-bar {
  max-width: 100%;
  width: 100%;
  padding: 0.85rem 1.25rem 1rem 1.25rem;
}

@media (max-width: 991px) {
  .historia-split-layout,
  .historia-split-layout.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .historia-photo-sticky-wrapper {
    position: static;
    height: auto;
    min-height: 440px;
    max-height: 550px;
  }
  .historia-split-layout.reverse .historia-photo-sticky-wrapper {
    order: -1;
  }
}


