/* ============================================================
   CINEMÁTICA - INTRO ANIMADA
   ============================================================ */

#cinematic {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}

/* Fondo con partículas sutiles */
#cinematic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(34, 211, 238, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(34, 211, 238, 0.03) 0%, transparent 60%);
}

/* Logo en la cinemática */
.cinematic-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 2px solid rgba(34, 211, 238, 0.2);
  padding: 8px;
  box-shadow: 0 0 60px rgba(34, 211, 238, 0.1);
  opacity: 0;
  transform: scale(0.8);
}

.cinematic-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Título principal */
.cinematic-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  opacity: 0;
  transform: translateY(20px);
  background: linear-gradient(135deg, #ffffff 40%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtítulo */
.cinematic-subtitle {
  color: #22d3ee;
  letter-spacing: 0.3em;
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  margin-top: 8px;
}

/* Línea decorativa láser */
.cinematic-line {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #22d3ee, transparent);
  margin: 16px auto 0;
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.3);
  opacity: 0;
}

/* Efecto de escaneo láser */
.laser-scan {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.6), transparent);
  filter: blur(4px);
  animation: laserScan 2s ease-in-out infinite;
  opacity: 0;
}

@keyframes laserScan {
  0% {
    top: -20px;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Puntos de luz flotantes */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #22d3ee;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0;
}

/* Responsive */
@media (max-width: 640px) {
  .cinematic-logo {
    width: 80px;
    height: 80px;
  }
}

#cinematic .text-center {
  text-align: center !important;
  position: relative !important;
  z-index: 10 !important;
}

#cinematic {
  flex-direction: column;
}