/*
 * ═══════════════════════════════════════════════════════
 *  SHOWTIME FACTORY — Index · En construcción
 *  stf-index.css  ·  v1.0 · 2026
 * ═══════════════════════════════════════════════════════
 */

/* ── FUENTES vía HTML ── */

/* ── VARIABLES ── */
:root {
  --primary:  #2B0A4F;
  --accent:   #FF2E6E;
  --gold:     #C8A14A;
  --gold-lt:  #E0BB78;
  --star:     #F10545;
  --snack:    #95C11F;
  --sound:    #00B4D8;
  --cream:    #F8F4ED;
  --charcoal: #1A1A1A;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; height: 100%; overflow-x: hidden; }

body {
  font-family: 'Montserrat', sans-serif;
  background: #0A0212;
  color: #fff;
  cursor: default;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ══════════════════════════════════════
   CANVAS DE PARTÍCULAS
══════════════════════════════════════ */
#particleCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

/* ══════════════════════════════════════
   MESH BACKGROUND — ORBS ANIMADOS
══════════════════════════════════════ */
.mesh-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-1 {
  width: 600px; height: 600px;
  background: var(--primary);
  top: -150px; left: -100px;
  animation-duration: 14s;
}
.orb-2 {
  width: 500px; height: 500px;
  background: var(--accent);
  top: 20%; right: -120px;
  animation-duration: 17s;
  animation-delay: -4s;
  opacity: 0.18;
}
.orb-3 {
  width: 400px; height: 400px;
  background: var(--gold);
  bottom: 10%; left: 30%;
  animation-duration: 19s;
  animation-delay: -8s;
  opacity: 0.12;
}
.orb-4 {
  width: 350px; height: 350px;
  background: var(--sound);
  bottom: -80px; right: 20%;
  animation-duration: 22s;
  animation-delay: -2s;
  opacity: 0.1;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(40px, -30px) scale(1.05); }
  66%       { transform: translate(-20px, 25px) scale(0.97); }
}

/* ══════════════════════════════════════
   STAGE — LAYOUT PRINCIPAL
══════════════════════════════════════ */
.stage {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: calc(100vh - 52px);
  padding: 48px 40px 40px;
  gap: 32px;
}

/* ══════════════════════════════════════
   BRAND HEADER
══════════════════════════════════════ */
.brand-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: fadeUp 1s ease 0.1s both;
}
.brand-star {
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
  animation: starPulse 3s ease-in-out infinite;
}
@keyframes starPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(1.12); }
}
.brand-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 5px;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
.brand-tagline {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  max-width: 900px;
  width: 100%;
}

/* Eyebrow del hero */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fadeUp 1s ease 0.25s both;
}
.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent));
}
.eyebrow-line:last-child {
  background: linear-gradient(to left, transparent, var(--accent));
}
.eyebrow-text {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent);
}

/* Título hero */
.hero-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(52px, 9vw, 130px);
  line-height: 0.88;
  letter-spacing: -3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.line-1 {
  display: block;
  color: rgba(255,255,255,0.85);
  animation: slideLeft 1s cubic-bezier(.16,1,.3,1) 0.35s both;
}
.line-2 {
  display: block;
  animation: slideRight 1s cubic-bezier(.16,1,.3,1) 0.45s both;
}
.hero-title em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  color: var(--accent);
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(13px, 1.5vw, 16px);
  line-height: 1.75;
  color: rgba(255,255,255,0.42);
  max-width: 520px;
  animation: fadeUp 1s ease 0.6s both;
}

/* ══════════════════════════════════════
   DIVISIONES
══════════════════════════════════════ */
.divisions {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 740px;
  animation: fadeUp 1s ease 0.75s both;
}
.division {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  transition: transform 250ms ease, border-color 250ms ease, background 250ms ease;
  cursor: default;
}
.division:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
}
.d-star:hover  { border-color: rgba(241,5,69,0.35); }
.d-snack:hover { border-color: rgba(149,193,31,0.35); }
.d-sound:hover { border-color: rgba(0,180,216,0.35); }

.d-sym {
  font-size: 22px;
  line-height: 1;
  transition: transform 300ms ease;
}
.d-star .d-sym  { color: var(--star); }
.d-snack .d-sym { color: var(--snack); }
.d-sound .d-sym { color: var(--sound); }
.division:hover .d-sym { transform: scale(1.2) rotate(10deg); }

.d-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(10px, 1.2vw, 12px);
  letter-spacing: 1px;
  color: #fff;
}
.d-desc {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  line-height: 1.4;
}

/* ══════════════════════════════════════
   CTA
══════════════════════════════════════ */
.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: fadeUp 1s ease 0.9s both;
}
.cta-text {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.3);
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--accent), #E8004A);
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(255,46,110,0.4), 0 0 0 0 rgba(255,46,110,0.2);
  transition: transform 200ms ease, box-shadow 200ms ease;
  animation: ctaPulse 3s ease-in-out 2s infinite;
}
.cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(255,46,110,0.55), 0 0 0 8px rgba(255,46,110,0.08);
  animation: none;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(255,46,110,0.4), 0 0 0 0 rgba(255,46,110,0.2); }
  50%       { box-shadow: 0 8px 32px rgba(255,46,110,0.4), 0 0 0 12px rgba(255,46,110,0.0); }
}
.cta-secondary {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 2px;
  transition: color 200ms, border-color 200ms;
}
.cta-secondary:hover { color: var(--gold); border-color: var(--gold); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: fadeUp 1s ease 1.1s both;
}
.footer-mail {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
}
.footer-copy {
  font-size: 9px;
  font-weight: 500;
  color: rgba(255,255,255,0.18);
  letter-spacing: 2px;
  text-transform: uppercase;
}

  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   ANIMACIONES DE ENTRADA
══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 700px) {
  .stage { padding: 36px 24px 32px; gap: 24px; }
  .hero-title { font-size: clamp(44px, 14vw, 80px); letter-spacing: -2px; }
  .divisions { flex-direction: column; gap: 8px; max-width: 100%; }
  .division { flex-direction: row; gap: 12px; align-items: center; padding: 14px 18px; }
  .d-desc { text-align: left; }
  .cta-btn { font-size: 12px; padding: 14px 28px; }
}

@media (max-width: 480px) {
  .hero-title { letter-spacing: -1px; }
  .brand-name { font-size: 10px; letter-spacing: 4px; }
}
