/* ==========================================================================
   ESTILOS DE LA LANDING DE ESPERA ULTRA-MINIMALISTA // CEUTA NO SE APAGA
   ========================================================================== */

.teaser-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--bg-primary, #050505);
  color: var(--text-primary, #F5F5F5);
  overflow-x: hidden;
}

.teaser-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(5, 5, 5, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-signal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--accent-crimson, #9E1B1B);
  box-shadow: 0 0 10px var(--accent-crimson, #9E1B1B), 0 0 20px rgba(158, 27, 27, 0.4);
  animation: signalPulse 2s infinite ease-in-out;
  display: inline-block;
  margin-right: 4px;
}

@keyframes signalPulse {
  0%, 100% {
    transform: scale(0.9);
    opacity: 0.6;
    box-shadow: 0 0 6px var(--accent-crimson, #9E1B1B);
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
    box-shadow: 0 0 16px var(--accent-crimson, #9E1B1B), 0 0 25px rgba(158, 27, 27, 0.6);
  }
}

/* HERO SECTION MINIMALISTA */
.teaser-hero {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height, 70px) + 30px) 20px 40px;
  overflow: hidden;
  min-height: calc(100vh - 60px);
}

.hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(158, 27, 27, 0.08) 0%, rgba(5, 5, 5, 0.95) 75%);
  z-index: 1;
  pointer-events: none;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.teaser-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.teaser-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  background-color: rgba(158, 27, 27, 0.12);
  border: 1px solid rgba(158, 27, 27, 0.5);
  color: #FF9E9E;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(158, 27, 27, 0.25);
  backdrop-filter: blur(8px);
}

.teaser-badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-crimson, #9E1B1B);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-crimson, #9E1B1B);
  animation: recBlink 1.2s infinite ease-in-out;
}

@keyframes recBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.2; transform: scale(0.7); }
}

.teaser-title {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: clamp(3.6rem, 10vw, 7.5rem);
  letter-spacing: 0.06em;
  line-height: 0.92;
  color: #FFFFFF;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.95);
  margin: 8px 0;
  user-select: none;
}

.teaser-title span {
  color: var(--accent-crimson, #9E1B1B);
  text-shadow: 0 0 35px rgba(158, 27, 27, 0.7);
}

/* Divisor sutil carmesí */
.teaser-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  max-width: 260px;
  margin: 4px 0 8px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(158, 27, 27, 0.6), transparent);
}

.divider-gem {
  width: 6px;
  height: 6px;
  background-color: var(--accent-crimson, #9E1B1B);
  transform: rotate(45deg);
  box-shadow: 0 0 8px var(--accent-crimson, #9E1B1B);
}

.teaser-status {
  font-family: var(--font-serif, 'Cinzel', serif);
  font-size: clamp(1.25rem, 2.8vw, 1.85rem);
  color: #ECECEC;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.teaser-date {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: clamp(1.6rem, 3.8vw, 2.6rem);
  color: var(--accent-crimson, #9E1B1B);
  letter-spacing: 0.3em;
  font-weight: 700;
  margin: -6px 0 2px;
  text-shadow: 0 0 25px rgba(158, 27, 27, 0.65), 0 0 50px rgba(158, 27, 27, 0.25);
}

.teaser-substatus {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.82rem;
  color: #777777;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0;
}

/* FOOTER ULTRA-MINIMALISTA */
.teaser-footer {
  position: relative;
  z-index: 10;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background-color: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(10px);
}

.teaser-footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.72rem;
  color: #555555;
  letter-spacing: 0.12em;
}

.teaser-copy {
  cursor: default;
  transition: color 0.3s ease;
}

.teaser-status-tag {
  color: #444444;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .teaser-footer-container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
