/* Estilos compartidos del sitio (extraídos de HTML). */

/* Layout base */
body {
  min-height: max(884px, 100dvh);
}

/* Gradientes / identidad */
.signature-gradient {
  background: linear-gradient(90deg, #c555eb 0%, #8a5dfe 50%, #2dbdd7 100%);
}

.signature-text-gradient {
  background: linear-gradient(90deg, #c555eb 0%, #8a5dfe 50%, #2dbdd7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Cards / glassmorphism */
.glass-card,
.glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.glow-violet {
  box-shadow: 0 0 20px rgba(138, 93, 254, 0.25);
}

.ai-glow {
  box-shadow: 0 0 40px rgba(138, 93, 254, 0.15);
}

.signature-border {
  position: relative;
}
.signature-border::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(90deg, #c555eb, #8a5dfe, #2dbdd7);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Fondos ambientales */
.environmental-gradient {
  background:
    radial-gradient(circle at 20% 30%, rgba(138, 93, 254, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(45, 189, 215, 0.1) 0%, transparent 50%);
}

.environmental-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.15;
}

.bg-mesh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 30%, rgba(138, 93, 254, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(45, 189, 215, 0.1) 0%, transparent 40%);
}

.ora-sphere {
  background: radial-gradient(circle at 30% 30%, #2dbdd7 0%, #8a5dfe 60%, #c555eb 100%);
  filter: blur(20px);
  opacity: 0.8;
}

/* Animaciones / scroll reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.parallax-item {
  transition: transform 0.2s linear;
}

/* Timeline scroll animations */
.timeline-step-left {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.timeline-step-right {
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.timeline-step-left.active,
.timeline-step-right.active {
  opacity: 1;
  transform: translateX(0);
}
.timeline-icon {
  opacity: 0;
  transform: scale(0.4);
  transition:
    opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.timeline-icon.active {
  opacity: 1;
  transform: scale(1);
}
.timeline-line-progress {
  transform-origin: top center;
  transform: scaleY(0);
  transition: transform 0.1s linear;
}
.timeline-section-title {
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.timeline-section-title.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Mobile step animations */
.mobile-step {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.mobile-step.active {
  opacity: 1;
  transform: translateX(0);
}

/* Icon font defaults */
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

/* Pequeños helpers específicos usados en algunas páginas */
.ai-accent-left {
  border-left: 4px solid #c555eb;
}

.ai-border {
  border-left: 4px solid #8a5dfe;
}

.legal-canvas {
  background-color: #ffffff;
  color: #201445;
}

.section-title {
  color: #8a5dfe;
}

