/* ============================================================
   Cheerplay Mix Music Productions — CSS Principal
   Paleta: Negro #0a0a0a | Magenta #E91E8C | Dorado #FFD700 | Cian #00C8D7
   ============================================================ */

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

:root {
  --bg:         #0a0a0a;
  --bg2:        #111111;
  --bg3:        #1a1a1a;
  --border:     #2a2a2a;
  --primary:    #E91E8C;
  --primary-d:  #b5166b;
  --gold:       #FFD700;
  --gold-d:     #c9a800;
  --cyan:       #00C8D7;
  --purple:     #6a0dad;
  --text:       #ffffff;
  --text-2:     #cccccc;
  --text-3:     #888888;
  --success:    #22c55e;
  --warning:    #f59e0b;
  --danger:     #ef4444;
  --info:       #3b82f6;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow-glow: 0 0 20px rgba(233,30,140,0.25);
  --shadow-gold: 0 0 20px rgba(255,215,0,0.2);
  --transition:  0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

h1,h2,h3,h4 { font-family: 'Orbitron', sans-serif; line-height: 1.2; }

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

/* -- HELPERS -- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-gold { color: var(--gold); }
.text-cyan { color: var(--cyan); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* -- NAVBAR -- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.navbar.scrolled { background: rgba(10,10,10,0.98); }
.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-brand { display: flex; align-items: center; gap: 4px; font-family: 'Orbitron', sans-serif; font-size: 1.2rem; font-weight: 900; }
.brand-cheer { color: var(--primary); }
.brand-play  { color: var(--gold); }
.brand-sub   { color: var(--cyan); font-size: 0.7em; margin-left: 4px; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; list-style: none; }
.nav-links a { color: var(--text-2); font-weight: 500; transition: color var(--transition); font-size: 0.95rem; }
.nav-links a:hover { color: var(--primary); }
.nav-btn {
  background: linear-gradient(135deg, var(--primary), var(--purple));
  color: #fff !important; padding: 8px 20px; border-radius: 25px;
  font-weight: 600; transition: transform var(--transition), box-shadow var(--transition) !important;
}
.nav-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow) !important; }
.nav-btn-gold {
  background: linear-gradient(135deg, var(--gold), #ff9900) !important;
  color: #000 !important;
}
.nav-btn-gold:hover { box-shadow: var(--shadow-gold) !important; }
.nav-user { display: flex; align-items: center; gap: 10px; color: var(--text-2); font-size: 0.9rem; }
.nav-logout { color: var(--text-3) !important; font-size: 0.85rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-2); border-radius: 2px; transition: var(--transition); }

/* -- MAIN CONTENT -- */
.main-content { padding-top: 68px; }

/* -- FLASH -- */
.flash {
  position: fixed; top: 80px; left: 50%; transform: translateX(-50%);
  z-index: 2000; display: flex; align-items: center; gap: 12px;
  padding: 14px 24px; border-radius: var(--radius); font-weight: 500;
  min-width: 320px; max-width: 580px; box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: slideDown 0.3s ease;
}
.flash button { background: none; border: none; cursor: pointer; font-size: 1.1rem; opacity: 0.7; margin-left: auto; }
.flash-success { background: #14532d; border: 1px solid var(--success); color: #86efac; }
.flash-error   { background: #7f1d1d; border: 1px solid var(--danger); color: #fca5a5; }
.flash-warning { background: #78350f; border: 1px solid var(--warning); color: #fde68a; }
.flash-info    { background: #1e3a5f; border: 1px solid var(--info); color: #93c5fd; }
@keyframes slideDown { from { opacity:0; top:60px; } to { opacity:1; top:80px; } }

/* -- HERO -- */
.hero {
  min-height: 100vh;
  background: radial-gradient(ellipse at center, #1a001a 0%, #000 60%);
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  padding: 100px 1.5rem 60px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E91E8C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-particle {
  position: absolute; border-radius: 50%;
  animation: float infinite ease-in-out;
}
.hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-block; padding: 6px 20px; border-radius: 25px;
  border: 1px solid var(--primary); color: var(--primary);
  font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 1.5rem; animation: pulse-border 2s infinite;
}
.hero-title {
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 900; margin-bottom: 1rem;
}
.hero-title .line1 { display: block; color: var(--primary); }
.hero-title .line2 { display: block; color: var(--gold); font-size: 0.6em; letter-spacing: 6px; }
.hero-desc {
  font-size: 1.15rem; color: var(--text-2); max-width: 540px;
  margin: 0 auto 2.5rem; line-height: 1.8;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
@keyframes pulse-border {
  0%,100% { box-shadow: 0 0 0 rgba(233,30,140,0); }
  50% { box-shadow: 0 0 15px rgba(233,30,140,0.4); }
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* -- BOTONES -- */
.btn {
  display: inline-block; padding: 13px 32px; border-radius: 35px;
  font-weight: 700; font-size: 0.95rem; cursor: pointer; border: none;
  transition: transform var(--transition), box-shadow var(--transition);
  font-family: 'Outfit', sans-serif; letter-spacing: 0.5px;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--purple));
  color: #fff; box-shadow: 0 4px 20px rgba(233,30,140,0.3);
}
.btn-primary:hover { box-shadow: 0 8px 35px rgba(233,30,140,0.5); color:#fff; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #ff9900);
  color: #000; box-shadow: 0 4px 20px rgba(255,215,0,0.3);
}
.btn-gold:hover { box-shadow: 0 8px 35px rgba(255,215,0,0.5); color:#000; }
.btn-outline {
  background: transparent; color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-success { background: var(--success); color: #fff; }
.btn-cyan { background: linear-gradient(135deg, var(--cyan), #0098a8); color:#000; }
.btn-full { width: 100%; text-align: center; }

/* -- SECCION HOW IT WORKS -- */
.section { padding: 90px 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block; color: var(--cyan); font-size: 0.8rem;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 0.75rem;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.section-desc { color: var(--text-2); max-width: 540px; margin: 0 auto; font-size: 1.05rem; }

.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.step-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  text-align: center; position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.step-card:hover { transform: translateY(-6px); border-color: var(--primary); box-shadow: var(--shadow-glow); }
.step-number {
  font-family: 'Orbitron', sans-serif; font-size: 3.5rem; font-weight: 900;
  color: var(--primary); opacity: 0.15; position: absolute; top: 10px; right: 20px;
}
.step-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.step-title { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--gold); }
.step-desc { color: var(--text-3); font-size: 0.95rem; }

/* -- PRICING -- */
.pricing-section { background: var(--bg2); padding: 90px 0; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.5rem;
}
.pricing-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); }
.pricing-card.featured { border-color: var(--primary); box-shadow: var(--shadow-glow); }
.pricing-card.pro-card { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.pricing-header {
  padding: 1.5rem; text-align: center;
  background: linear-gradient(135deg, rgba(233,30,140,0.15), rgba(106,13,173,0.15));
  border-bottom: 1px solid var(--border);
}
.pricing-header.gold-bg {
  background: linear-gradient(135deg, rgba(255,215,0,0.12), rgba(255,153,0,0.1));
}
.pricing-name { font-size: 1.4rem; font-weight: 900; color: var(--primary); margin-bottom: 0.25rem; }
.pro-card .pricing-name { color: var(--gold); }
.pricing-badge {
  display: inline-block; font-size: 0.7rem; letter-spacing: 2px;
  color: var(--text-3); text-transform: uppercase;
}
.pricing-options { padding: 1.5rem; }
.pricing-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.pricing-row:last-child { border-bottom: none; }
.duration-label { color: var(--text-2); font-size: 0.95rem; display: flex; align-items: center; gap: 6px; }
.duration-label::before { content: '⏱'; }
.price-amount { color: var(--gold); font-weight: 700; font-size: 1.05rem; font-family:'Orbitron',sans-serif; }
.pricing-cta { padding: 0 1.5rem 1.5rem; }

/* -- BADGES/STATUS -- */
.badge {
  display: inline-block; padding: 3px 12px; border-radius: 20px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px;
}
.badge-warning { background: rgba(245,158,11,0.18); color: var(--warning); border: 1px solid rgba(245,158,11,0.3); }
.badge-success { background: rgba(34,197,94,0.15); color: var(--success); border: 1px solid rgba(34,197,94,0.3); }
.badge-danger  { background: rgba(239,68,68,0.15); color: var(--danger); border: 1px solid rgba(239,68,68,0.3); }
.badge-info    { background: rgba(59,130,246,0.15); color: var(--info); border: 1px solid rgba(59,130,246,0.3); }
.badge-primary { background: rgba(233,30,140,0.15); color: var(--primary); border: 1px solid rgba(233,30,140,0.3); }
.badge-secondary { background: var(--bg3); color: var(--text-3); border: 1px solid var(--border); }

/* -- CARDS -- */
.card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.card:hover { border-color: rgba(233,30,140,0.3); }
.card-header {
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.card-header h3 { font-size: 1rem; color: var(--text); }
.card-body { padding: 1.5rem; }

/* -- FORMS -- */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; margin-bottom: 0.4rem; color: var(--text-2); font-size: 0.9rem; font-weight: 500; }
.form-label span.required { color: var(--primary); margin-left: 2px; }
.form-control {
  width: 100%; padding: 11px 16px;
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text); border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif; font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(233,30,140,0.15);
}
.form-control::placeholder { color: var(--text-3); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 90px; }
.form-hint { font-size: 0.8rem; color: var(--text-3); margin-top: 0.3rem; }
.form-error { font-size: 0.85rem; color: var(--danger); margin-top: 0.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }

/* -- AUTH PAGES -- */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse at center, #1a001a 0%, #000 70%);
  padding: 2rem 1rem;
}
.auth-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem;
  width: 100%; max-width: 460px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.auth-logo { text-align: center; margin-bottom: 1.5rem; }
.auth-logo-text { font-family: 'Orbitron', sans-serif; font-size: 1.4rem; font-weight: 900; }
.auth-title { font-size: 1.5rem; text-align: center; margin-bottom: 0.5rem; }
.auth-subtitle { color: var(--text-3); text-align: center; margin-bottom: 2rem; font-size: 0.9rem; }
.auth-divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 1.5rem 0; color: var(--text-3); font-size: 0.85rem;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.btn-google {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 12px; background: var(--bg3);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--text); font-size: 0.95rem; font-family:'Outfit',sans-serif;
  cursor: pointer; transition: border-color var(--transition), background var(--transition);
  text-decoration: none;
}
.btn-google:hover { border-color: var(--primary); background: rgba(233,30,140,0.05); color:var(--text); }
.auth-footer { text-align: center; margin-top: 1.5rem; color: var(--text-3); font-size: 0.9rem; }
.auth-footer a { color: var(--primary); }

/* -- DASHBOARD / CLIENT PORTAL -- */
.page-header {
  background: linear-gradient(135deg, rgba(233,30,140,0.08), rgba(106,13,173,0.05));
  border-bottom: 1px solid var(--border); padding: 2.5rem 0;
}
.page-header h1 { font-size: 2rem; }
.page-header p { color: var(--text-2); margin-top: 0.3rem; }

.orders-grid { display: grid; gap: 1.25rem; }
.order-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.order-card:hover { border-color: rgba(233,30,140,0.4); transform: translateX(4px); }
.order-number { font-family: 'Orbitron', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.order-meta { color: var(--text-3); font-size: 0.85rem; margin-top: 0.25rem; }
.order-actions { margin-left: auto; display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
.order-total { font-family: 'Orbitron', sans-serif; color: var(--gold); font-size: 1.1rem; font-weight: 700; }

/* -- MIX ITEMS -- */
.mix-item {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.25rem;
  margin-bottom: 1rem;
}
.mix-item-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.75rem; flex-wrap: wrap; gap: 0.5rem;
}
.mix-title { font-weight: 700; color: var(--gold); }
.mix-details { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 0.6rem; }
.mix-detail-row { display: flex; gap: 0.5rem; font-size: 0.9rem; }
.mix-detail-label { color: var(--text-3); min-width: 110px; }
.mix-detail-value { color: var(--text-2); }
.drive-link-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 25px;
  background: linear-gradient(135deg, var(--cyan), #0098a8);
  color: #000; font-weight: 700; font-size: 0.85rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.drive-link-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,200,215,0.4); color:#000; }

/* -- TABLE -- */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
th { padding: 12px 16px; text-align: left; color: var(--text-3); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 1px solid var(--border); }
td { padding: 14px 16px; border-bottom: 1px solid rgba(42,42,42,0.5); vertical-align: middle; }
tr:hover td { background: rgba(233,30,140,0.04); }

/* -- STAT CARDS -- */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 1rem; margin-bottom: 2rem; }
.stat-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  text-align: center;
}
.stat-value { font-family: 'Orbitron', sans-serif; font-size: 2rem; font-weight: 900; }
.stat-label { color: var(--text-3); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 0.25rem; }
.stat-card.s-primary .stat-value { color: var(--primary); }
.stat-card.s-gold .stat-value { color: var(--gold); }
.stat-card.s-cyan .stat-value { color: var(--cyan); }
.stat-card.s-success .stat-value { color: var(--success); }
.stat-card.s-warning .stat-value { color: var(--warning); }

/* -- FOOTER -- */
.footer { background: #050505; border-top: 1px solid var(--border); padding: 60px 0 0; margin-top: 80px; }
.footer-container {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
}
.footer-brand .footer-logo { font-family: 'Orbitron', sans-serif; font-size: 1.3rem; font-weight: 900; }
.footer-tagline { color: var(--cyan); font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; margin: 0.5rem 0; }
.footer-desc { color: var(--text-3); font-size: 0.9rem; line-height: 1.7; }
.footer-links h4 { color: var(--text-2); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; font-family:'Outfit',sans-serif; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: var(--text-3); font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-contact h4 { color: var(--text-2); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; font-family:'Outfit',sans-serif; }
.footer-contact p { color: var(--text-3); font-size: 0.9rem; margin-bottom: 1rem; }
.footer-contact a { color: var(--primary); }
.footer-social { display: flex; gap: 0.75rem; }
.social-btn {
  display: inline-flex; align-items: center; justify-content:center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border);
  font-size: 1rem; transition: border-color var(--transition), background var(--transition);
}
.social-btn:hover { border-color: var(--primary); background: rgba(233,30,140,0.1); }
.footer-bottom {
  border-top: 1px solid var(--border); margin-top: 3rem;
  padding: 1.25rem; text-align: center; color: var(--text-3); font-size: 0.82rem;
}

/* -- ORDER FORM -- */
.order-page { padding: 2rem 0 4rem; }
.mix-block {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem; margin-bottom: 1.5rem; position: relative;
  transition: border-color var(--transition);
}
.mix-block:hover { border-color: rgba(233,30,140,0.3); }
.mix-block-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.mix-block-title { font-size: 1.1rem; color: var(--gold); }
.mix-block-remove {
  background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.3);
  color: var(--danger); padding: 6px 14px; border-radius: var(--radius-sm);
  cursor: pointer; font-size: 0.85rem; transition: var(--transition);
}
.mix-block-remove:hover { background: rgba(239,68,68,0.25); }
.price-display {
  background: linear-gradient(135deg, rgba(255,215,0,0.08), rgba(255,153,0,0.05));
  border: 1px solid rgba(255,215,0,0.2); border-radius: var(--radius-sm);
  padding: 12px 16px; display: flex; justify-content: space-between; align-items: center;
  margin-top: 0.75rem;
}
.price-display-label { color: var(--text-3); font-size: 0.85rem; }
.price-display-value { font-family: 'Orbitron', sans-serif; color: var(--gold); font-weight: 700; font-size: 1.1rem; }
.add-mix-btn {
  width: 100%; padding: 1rem; border: 2px dashed var(--border);
  background: transparent; color: var(--text-3); border-radius: var(--radius);
  cursor: pointer; font-size: 1rem; font-family: 'Outfit', sans-serif;
  transition: border-color var(--transition), color var(--transition);
  margin-bottom: 2rem;
}
.add-mix-btn:hover { border-color: var(--primary); color: var(--primary); }
.order-summary {
  background: var(--bg2); border: 1px solid rgba(255,215,0,0.2);
  border-radius: var(--radius); padding: 1.5rem; margin-bottom: 2rem;
  position: sticky; bottom: 1rem;
}
.order-total-display {
  font-family: 'Orbitron', sans-serif; color: var(--gold); font-size: 1.8rem; font-weight: 900;
}

/* -- PAYMENT LOG -- */
.payment-list { display: grid; gap: 0.75rem; }
.payment-item {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 16px; flex-wrap: wrap; gap: 0.5rem;
}
.payment-amount { font-family: 'Orbitron', sans-serif; color: var(--success); font-weight: 700; }
.payment-date { color: var(--text-3); font-size: 0.85rem; }
.payment-method { color: var(--cyan); font-size: 0.82rem; }

/* -- FILTER BAR -- */
.filter-bar {
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.25rem; margin-bottom: 1.5rem;
}
.filter-bar .form-control { max-width: 220px; }
.filter-bar select { max-width: 160px; }

/* -- RESPONSIVE -- */
@media (max-width: 900px) {
  .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 68px; left: 0; right: 0; background: rgba(10,10,10,0.98);
    padding: 1rem; border-bottom: 1px solid var(--border); gap: 0.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px; }
  .footer-container { grid-template-columns: 1fr; }
  .order-card { flex-direction: column; align-items: flex-start; }
  .order-actions { margin-left: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-cta { flex-direction: column; }
  .auth-card { padding: 1.75rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ================================================================
   ANIMACIONES LANDING — MÚSICA / DJ / CHEERLEADING
   ================================================================ */

/* -- FLOATING MUSIC NOTES -- */
.music-notes {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden; z-index: 1;
}
.note {
  position: absolute;
  bottom: -40px;
  left: var(--x, 50%);
  font-size: calc(1rem * var(--s, 1));
  color: var(--primary);
  animation: riseNote 8s ease-in infinite;
  animation-delay: var(--d, 0s);
  opacity: 0;
  user-select: none;
}
.note:nth-child(even) { color: var(--gold); }
.note:nth-child(3n)   { color: var(--cyan); }
@keyframes riseNote {
  0%   { transform: translateY(0)   rotate(0deg)   scale(0.8); opacity: 0; }
  10%  { opacity: 0.8; }
  80%  { opacity: 0.5; }
  100% { transform: translateY(-110vh) rotate(360deg) scale(1.2); opacity: 0; }
}

/* -- VINYL RECORDS -- */
.vinyl-container {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 220px; height: 220px;
  pointer-events: none; z-index: 1;
}
.vinyl-left  { left: -60px; }
.vinyl-right { right: -60px; transform: translateY(-50%) scaleX(-1); }
.vinyl-record {
  width: 100%; height: 100%; border-radius: 50%;
  background: radial-gradient(circle, #1a1a1a 25%, #0d0d0d 25.5%, #2a2a2a 30%, #111 35%, #333 40%, #111 45%,
    #2a2a2a 50%, #0d0d0d 55%, #222 60%, #131313 65%, #2d2d2d 70%, #111 75%, #0d0d0d 80%);
  animation: spinVinyl 4s linear infinite;
  position: relative; box-shadow: 0 0 40px rgba(233,30,140,0.3);
}
.vinyl-record-2 { animation: spinVinyl 5s linear infinite; animation-direction: reverse; }
.vinyl-grooves {
  position: absolute; inset: 6px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow:
    inset 0 0 0 12px rgba(255,255,255,0.02),
    inset 0 0 0 24px rgba(255,255,255,0.02),
    inset 0 0 0 36px rgba(255,255,255,0.02),
    inset 0 0 0 48px rgba(255,255,255,0.02),
    inset 0 0 0 60px rgba(255,255,255,0.02);
}
.vinyl-label {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: 'Orbitron', sans-serif; font-size: 0.6rem;
  font-weight: 900; color: #fff; line-height: 1.2;
}
.vinyl-needle {
  position: absolute; bottom: -20px; right: -5px;
  width: 4px; height: 60px; background: var(--gold);
  border-radius: 2px; transform: rotate(-30deg);
  transform-origin: top center;
}
@keyframes spinVinyl {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* -- EQ BARS (HERO) -- */
.eq-bar-hero {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px; display: flex; align-items: flex-end;
  gap: 2px; padding: 0 8px;
  pointer-events: none; z-index: 1; opacity: 0.35;
}
.eq-bar {
  flex: 1; background: var(--c, var(--primary));
  border-radius: 2px 2px 0 0;
  height: var(--h, 50%);
  animation: eqPulse 0.8s ease-in-out infinite alternate;
  animation-delay: calc(var(--i) * 0.05s);
}
@keyframes eqPulse {
  from { transform: scaleY(0.3); opacity: 0.4; }
  to   { transform: scaleY(1);   opacity: 1; }
}

/* -- SOUNDWAVE (HERO) -- */
.soundwave-hero {
  display: flex; align-items: center; justify-content: center;
  gap: 4px; height: 36px; margin: 0.75rem auto 1.5rem;
}
.sw-bar {
  width: 4px; border-radius: 2px;
  background: linear-gradient(to top, var(--primary), var(--cyan));
  animation: swPulse 1s ease-in-out infinite alternate;
  animation-delay: calc(var(--i) * 0.08s);
}
@keyframes swPulse {
  from { height: 6px;  opacity: 0.4; }
  to   { height: 28px; opacity: 1; }
}

/* -- POMPOM ROW -- */
.pompom-row { margin-top: 2rem; display: flex; align-items: center; justify-content: center; gap: 1.5rem; }
.pompom {
  font-size: 1.8rem; color: var(--gold); display: inline-block;
  animation: pompomShake 0.6s ease-in-out infinite alternate;
}
.pompom-l { animation-direction: alternate; }
.pompom-r { animation-direction: alternate-reverse; }
@keyframes pompomShake {
  from { transform: rotate(-25deg) scale(1);   }
  to   { transform: rotate(25deg)  scale(1.15); }
}
.pompom-divider { font-size: 1.5rem; }

/* -- GLITCH TITLE -- */
.glitch-wrap { position: relative; }
.glitch {
  position: relative;
}
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0; right: 0;
  display: block; opacity: 0.6;
  font-size: inherit; font-family: inherit; font-weight: inherit;
}
.glitch::before {
  color: var(--cyan);
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  animation: glitch1 3s infinite;
}
.glitch::after {
  color: var(--primary);
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
  animation: glitch2 3s infinite;
}
@keyframes glitch1 {
  0%,90%,100% { transform: none; opacity: 0; }
  93% { transform: translateX(-4px); opacity: 0.5; }
  96% { transform: translateX(4px);  opacity: 0.5; }
}
@keyframes glitch2 {
  0%,90%,100% { transform: none; opacity: 0; }
  94% { transform: translateX(4px);  opacity: 0.5; }
  97% { transform: translateX(-4px); opacity: 0.5; }
}

/* -- PULSE BUTTON -- */
.pulse-btn {
  animation: btnPulse 2s ease-in-out infinite;
}
@keyframes btnPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(233,30,140,0.3); }
  50%      { box-shadow: 0 8px 40px rgba(233,30,140,0.7), 0 0 60px rgba(233,30,140,0.2); }
}

/* -- STEP CARDS EQ -- */
.step-eq {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 3px; height: 28px; margin-top: 1.25rem;
}
.step-eq-bar {
  width: 6px; border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--primary), var(--gold));
  height: var(--h, 50%);
  animation: eqPulse 0.9s ease-in-out infinite alternate;
  animation-delay: var(--d, 0s);
}
.step-connector {
  display: none; /* visible solo en desktop por CSS grid */
}

/* -- ENERGY / STATS SECTION -- */
.energy-section {
  background: var(--bg2); padding: 70px 0; position: relative; overflow: hidden;
}
.energy-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(233,30,140,0.06) 0%, transparent 70%);
}
.energy-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 1.5rem; position: relative; z-index: 1;
}
.energy-card {
  text-align: center; padding: 2rem 1rem;
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius);
  transition: transform var(--transition), border-color var(--transition);
}
.energy-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.energy-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.energy-value {
  font-family: 'Orbitron', sans-serif; font-size: 2.8rem;
  font-weight: 900; color: var(--primary); line-height: 1;
}
.energy-card:nth-child(2) .energy-value { color: var(--gold); }
.energy-card:nth-child(3) .energy-value { color: var(--cyan); }
.energy-card:nth-child(4) .energy-value { color: var(--success); }
.energy-label {
  color: var(--text-3); font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 1px; margin-top: 0.5rem;
}

/* -- DJ SECTION -- */
.dj-section {
  padding: 90px 0; position: relative; overflow: hidden;
}
.dj-section-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(106,13,173,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(233,30,140,0.08) 0%, transparent 60%);
}
.dj-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center; position: relative; z-index: 1;
}
/* DJ Mixer */
.dj-mixer {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; position: relative;
}
.dj-plate { position: relative; }
.dj-vinyl {
  width: 140px; height: 140px; border-radius: 50%;
  background: radial-gradient(circle, #222 18%, #111 18.5%, #333 23%, #111 28%,
    #2a2a2a 33%, #0d0d0d 38%, #222 43%, #111 48%, #1a1a1a 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 30px rgba(233,30,140,0.25);
}
.spin-slow         { animation: spinVinyl 6s linear infinite; }
.spin-slow-reverse { animation: spinVinyl 6s linear infinite reverse; }
.dj-vinyl-inner {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--purple));
}
.dj-vinyl-label {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Orbitron', sans-serif; font-size: 0.55rem;
  font-weight: 900; color: #fff; text-align: center; pointer-events: none;
}
/* Panel mixer */
.dj-panel {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 12px; padding: 1rem 0.75rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  min-width: 110px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.mixer-knobs { display: flex; justify-content: space-around; }
.mixer-knob {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--border);
  position: relative; cursor: pointer; transform: rotate(var(--a,0deg));
  box-shadow: 0 0 8px rgba(233,30,140,0.2);
}
.knob-dot {
  position: absolute; top: 3px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--primary);
}
.mixer-faders { display: flex; justify-content: space-around; gap: 0.5rem; }
.mixer-fader { display: flex; flex-direction: column; align-items: center; }
.fader-track {
  width: 8px; height: 60px; background: var(--bg);
  border: 1px solid var(--border); border-radius: 4px;
  position: relative; overflow: hidden;
}
.fader-cap {
  position: absolute; left: 0; right: 0;
  height: 12px; border-radius: 3px;
  background: linear-gradient(to right, var(--primary), var(--gold));
  top: var(--start, 50%);
  animation: faderMove var(--dur, 2s) ease-in-out infinite alternate;
}
@keyframes faderMove {
  from { top: var(--start); }
  to   { top: var(--end); }
}
.mixer-crossfader {
  padding: 0 4px;
}
.crossfader-track {
  height: 8px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 4px; position: relative;
}
.crossfader-cap {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 18px; height: 14px; border-radius: 3px;
  background: var(--cyan);
  left: 20%;
  animation: crossMove 2.5s ease-in-out infinite alternate;
}
@keyframes crossMove {
  from { left: 10%; }
  to   { left: 70%; }
}
/* VU Meters */
.vu-meters { display: flex; gap: 4px; justify-content: center; }
.vu-col { display: flex; flex-direction: column; gap: 2px; align-items: center; }
.vu-led {
  width: 14px; height: 6px; border-radius: 2px;
  background: var(--c, var(--success));
  animation: vuBlink calc(0.3s + var(--i) * 0.05s) ease-in-out infinite alternate;
  opacity: 0.3;
}
@keyframes vuBlink {
  from { opacity: 0.15; }
  to   { opacity: 1; }
}
/* DJ Features */
.dj-features { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.dj-feature {
  display: flex; gap: 1rem; align-items: flex-start;
}
.dj-feature-icon {
  font-size: 1.5rem; min-width: 40px; text-align: center;
  padding-top: 2px;
}
.dj-feature strong { display: block; color: var(--text); margin-bottom: 0.2rem; }
.dj-feature p { color: var(--text-3); font-size: 0.9rem; margin: 0; }

/* -- REVEAL CARDS (scroll) -- */
.reveal-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-card.visible {
  opacity: 1;
  transform: none;
}

/* -- POPULAR BADGE -- */
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--purple));
  color: #fff; font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
  padding: 4px 16px; border-radius: 20px; white-space: nowrap; z-index: 2;
}
.pricing-card { position: relative; }
.pricing-icon { font-size: 2.2rem; margin-bottom: 0.5rem; }

/* -- PRICING-EQ -- */
.pricing-eq {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 3px; height: 40px; margin-bottom: 2rem; opacity: 0.3;
}
.peq-bar {
  flex: 1; max-width: 18px;
  background: linear-gradient(to top, var(--primary), var(--cyan));
  border-radius: 2px 2px 0 0;
  height: var(--h, 50%);
  animation: eqPulse 0.7s ease-in-out infinite alternate;
  animation-delay: calc(var(--i) * 0.04s);
}
/* Card wave decoration */
.card-wave {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 3px; height: 18px; padding: 0 1rem;
  background: rgba(233,30,140,0.04); border-top: 1px solid rgba(233,30,140,0.1);
}
.cw-bar {
  flex: 1; border-radius: 2px 2px 0 0;
  background: var(--primary); opacity: 0.4;
  animation: eqPulse 1s ease-in-out infinite alternate;
  animation-delay: calc(var(--i) * 0.15s);
  height: 70%;
}

/* -- MULTIMIX NOTE -- */
.multimix-note {
  margin: 2.5rem auto 0;
  max-width: 700px;
  background: rgba(0,200,215,0.06);
  border: 1px solid rgba(0,200,215,0.2);
  border-radius: 12px; padding: 1.5rem;
  display: flex; align-items: center; gap: 1.25rem;
}
.multimix-note h3 { color: var(--cyan); font-size: 1.05rem; margin-bottom: 0.3rem; }
.multimix-note p  { color: var(--text-2); font-size: 0.95rem; margin: 0; }
.multimix-icon { font-size: 2.5rem; flex-shrink: 0; }

/* -- WAVE DIVIDER -- */
.wave-top { line-height: 0; margin-bottom: -1px; }
.wave-top svg { width: 100%; height: 60px; display: block; }

/* -- CHEER SECTION -- */
.cheer-section { padding: 90px 0; overflow: hidden; }
.cheer-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
/* Estrella con anillos */
.cheer-visual {
  position: relative; height: 300px; display: flex;
  align-items: center; justify-content: center;
}
.cheer-star-wrap { position: relative; z-index: 2; }
.cheer-star {
  font-size: 4rem; display: block; text-align: center;
  animation: starPulse 2s ease-in-out infinite;
}
@keyframes starPulse {
  0%,100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(255,215,0,0.5)); }
  50%      { transform: scale(1.15); filter: drop-shadow(0 0 25px rgba(255,215,0,0.9)); }
}
.cheer-star-ring {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%; border: 1px solid rgba(233,30,140,0.3);
  transform: translate(-50%,-50%);
  animation: ringExpand 3s ease-out infinite;
}
.r1 { width: 100px; height: 100px; animation-delay: 0s; }
.r2 { width: 160px; height: 160px; animation-delay: 1s; }
.r3 { width: 220px; height: 220px; animation-delay: 2s; }
@keyframes ringExpand {
  0%   { opacity: 0.6; transform: translate(-50%,-50%) scale(0.8); }
  100% { opacity: 0;   transform: translate(-50%,-50%) scale(1.2); }
}
/* Pompones orbitales */
.pompom-orbit {
  position: absolute; top: 50%; left: 50%;
  width: 240px; height: 240px;
  transform: translate(-50%,-50%);
  animation: orbitSpin 12s linear infinite;
}
.pompom-orbit-item {
  position: absolute; top: 50%; left: 50%;
  font-size: 1.4rem; color: var(--gold);
  transform:
    translate(-50%,-50%)
    rotate(var(--angle))
    translateY(-120px)
    rotate(calc(-1 * var(--angle)));
}
@keyframes orbitSpin {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}
/* Notas cheer */
.cheer-notes {
  position: absolute; top: 50%; left: 50%;
}
.cheer-notes span {
  position: absolute;
  transform: translate(var(--dx), var(--dy));
  font-size: 1.3rem; color: var(--cyan); opacity: 0.6;
  animation: floatNote 3s ease-in-out infinite alternate;
  animation-delay: var(--d, 0s);
}
@keyframes floatNote {
  from { transform: translate(var(--dx), var(--dy)); }
  to   { transform: translate(var(--dx), calc(var(--dy) - 15px)) rotate(10deg); }
}
/* Tags cheerleading */
.cheer-tags { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cheer-tag {
  padding: 6px 16px; border-radius: 20px;
  background: rgba(233,30,140,0.1); border: 1px solid rgba(233,30,140,0.25);
  color: var(--text-2); font-size: 0.85rem;
}

/* -- CTA SECTION WITH WAVEFORM -- */
.cta-section {
  position: relative; padding: 100px 0; overflow: hidden;
  background: var(--bg2);
}
.cta-wave-bg {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center;
  gap: 4px; opacity: 0.08;
}
.ctaw-bar {
  width: 100%; max-width: 16px;
  background: linear-gradient(to top, var(--primary), var(--gold));
  border-radius: 4px; height: var(--h, 50%);
  animation: eqPulse 0.6s ease-in-out infinite alternate;
  animation-delay: calc(var(--i) * 0.03s);
}
.cta-final-btn {
  font-size: 1.15rem; padding: 18px 52px;
  box-shadow: 0 0 40px rgba(255,215,0,0.4);
}
.cta-final-btn:hover {
  box-shadow: 0 0 60px rgba(255,215,0,0.7) !important;
  transform: translateY(-4px) scale(1.03);
}

/* -- RESPONSIVE NUEVAS SECCIONES -- */
@media (max-width: 1024px) {
  .vinyl-container { display: none; }
  .dj-layout, .cheer-layout { gap: 3rem; }
}
@media (max-width: 768px) {
  .dj-layout, .cheer-layout { grid-template-columns: 1fr; }
  .dj-mixer { transform: scale(0.85); }
  .cheer-visual { height: 250px; }
  .multimix-note { flex-direction: column; text-align: center; }
  .energy-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .energy-grid { grid-template-columns: 1fr 1fr; }
  .eq-bar-hero { display: none; }
  .dj-mixer { display: none; }
}

