/* ============================================================
   OVNIFIX — Styles (Purple Edition)
   ============================================================ */

:root {
  --bg: oklch(6% 0.035 290);
  --bg-2: oklch(9% 0.04 295);
  --surface: oklch(15% 0.05 290 / 0.4);
  --surface-hover: oklch(20% 0.055 290 / 0.5);
  --fg: oklch(93% 0.015 290);
  --fg-secondary: oklch(65% 0.025 290);
  --muted: oklch(40% 0.02 290);
  --border-color: oklch(30% 0.05 290 / 0.3);
  --accent: oklch(70% 0.18 290);
  --accent-2: oklch(65% 0.20 305);
  --accent-soft: oklch(72% 0.12 280);
  --glass-bg: oklch(18% 0.05 290 / 0.25);
  --glass-border: oklch(40% 0.08 290 / 0.15);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --purple-dark: #2E1065;
  --purple-primary: #8B5CF6;
  --purple-neon: #A855F7;
  --purple-bright: #C084FC;
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --nav-height: 72px;
  --section-padding: 100px 0;
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.15s !important;
  }
  .parallax-layer,
  .cursor-glow,
  .hero-ufo,
  .hero-laptop,
  .floating-ufo,
  .shooting-star { display: none !important; }
  .reveal.animate-in { opacity: 1 !important; transform: translateY(0) !important; filter: blur(0) !important; }
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--muted); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   LOADING SCREEN
   ============================================================ */

#loading-screen {
  position: fixed;
  inset: 0;
  background: #030014;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-ufo {
  position: relative;
  width: 140px;
  height: 80px;
}

.loader-svg {
  width: 100%;
  height: 100%;
  animation: ufo-float 2s ease-in-out infinite;
}

.loader-dome { animation: pulse-accent 1.5s ease-in-out infinite; }
.loader-body { animation: pulse-accent-2 2s ease-in-out infinite; }
.loader-light { animation: blink 1s ease-in-out infinite; }

.loader-beam {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, var(--purple-primary), transparent);
  animation: beam-grow 1.5s ease-in-out infinite;
}

.loader-text {
  margin-top: 32px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  animation: pulse-text 1.5s ease-in-out infinite;
}

@keyframes ufo-float {
  0%, 100% { transform: translateY(0); filter: blur(0); }
  50% { transform: translateY(-8px); filter: blur(0.4px); }
}

@keyframes pulse-accent {
  0%, 100% { stroke: var(--purple-primary); opacity: 0.6; }
  50% { stroke: var(--purple-primary); opacity: 1; }
}

@keyframes pulse-accent-2 {
  0%, 100% { stroke: var(--purple-neon); opacity: 0.4; }
  50% { stroke: var(--purple-neon); opacity: 0.8; }
}

@keyframes blink {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 0.2; }
}

@keyframes beam-grow {
  0%, 100% { height: 0; opacity: 0; filter: blur(0); }
  50% { height: 40px; opacity: 1; filter: blur(1.5px); }
}

@keyframes pulse-text {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--purple-primary), var(--purple-neon));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background 0.6s var(--ease-smooth), backdrop-filter 0.6s var(--ease-smooth), box-shadow 0.6s var(--ease-smooth), height 0.5s var(--ease-smooth);
  background: transparent;
  opacity: 0;
  transform: translateY(-12px);
  animation: nav-entrance 0.8s var(--ease-smooth) 0.2s forwards;
}

@keyframes nav-entrance {
  to { opacity: 1; transform: translateY(0); }
}

.navbar.scrolled {
  background: #030014e0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-color);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--fg);
}

.nav-logo-icon { font-size: 24px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-secondary);
  border-radius: 8px;
  transition: color 0.35s var(--ease-smooth), background 0.35s var(--ease-smooth);
  letter-spacing: 0.01em;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--purple-primary);
  border-radius: 1px;
  transition: width 0.4s var(--ease-smooth), left 0.4s var(--ease-smooth);
}

.nav-link:hover { color: var(--fg); }

.nav-link.active {
  color: var(--fg);
  background: oklch(30% 0.05 290 / 0.3);
}

.nav-link.active::after {
  width: 60%;
  left: 20%;
}

.btn-wa-desktop {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #25D366;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.01em;
}

.btn-wa-desktop:hover {
  background: #1ebe5d;
  transform: scale(1.03);
}

.btn-wa-desktop::before {
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.nav-wa-mobile { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.4s var(--ease-smooth), opacity 0.4s var(--ease-smooth);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: #030014;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, oklch(70% 0.18 290 / 0.06) 0%, transparent 60%);
  pointer-events: none;
  animation: hero-glow 8s var(--ease-smooth) infinite alternate;
}

@keyframes hero-glow {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-ufo-container {
  position: absolute;
  top: 5%;
  right: 8%;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  will-change: transform;
  animation: ufo-entrance 1.2s var(--ease-smooth) 0.3s forwards;
}

@keyframes ufo-entrance {
  to { opacity: 0.5; }
}

.hero-ufo {
  width: 240px;
  animation: ufo-drift 10s ease-in-out infinite;
  will-change: transform, filter;
}

.scan-beam {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--purple-primary), transparent);
  opacity: 0.3;
  animation: scan-pulse 3s ease-in-out infinite;
}

@keyframes ufo-drift {
  0%, 100% { transform: translate(0, 0) rotate(-1.5deg); filter: blur(0); }
  25% { transform: translate(15px, -12px) rotate(0.5deg); filter: blur(0.6px); }
  50% { transform: translate(-8px, -20px) rotate(-0.5deg); filter: blur(0); }
  75% { transform: translate(12px, -4px) rotate(1deg); filter: blur(0.6px); }
}

@keyframes scan-pulse {
  0%, 100% { opacity: 0.15; height: 50px; filter: blur(0); }
  50% { opacity: 0.4; height: 100px; filter: blur(2px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 120px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--fg) 30%, var(--purple-bright) 60%, var(--purple-primary));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: title-glow 6s var(--ease-smooth) infinite;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: title-entrance 1s var(--ease-smooth) 0.3s forwards, title-glow 6s var(--ease-smooth) 0.3s infinite;
}

@keyframes title-entrance {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes title-glow {
  0%, 100% { background-position: 0% 50%; filter: brightness(1); }
  50% { background-position: 100% 50%; filter: brightness(1.08); }
}

@keyframes title-glow {
  0%, 100% { filter: brightness(1) blur(0); }
  50% { filter: brightness(1.12) blur(0.3px); }
}

.hero-slogan {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 600;
  color: var(--purple-bright);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(16px);
  animation: fade-up 0.8s var(--ease-smooth) 0.4s forwards;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 500;
  color: var(--accent-soft);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(16px);
  animation: fade-up 0.8s var(--ease-smooth) 0.5s forwards;
}

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

.hero-desc {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--fg-secondary);
  max-width: 600px;
  margin: 0 auto 12px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(16px);
  animation: fade-up 0.8s var(--ease-smooth) 0.6s forwards;
}

.hero-trust {
  font-size: clamp(13px, 1.2vw, 15px);
  color: var(--accent-soft);
  margin-bottom: 36px;
  opacity: 0;
  font-weight: 500;
  animation: fade-up 0.8s var(--ease-smooth) 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: fade-up 0.8s var(--ease-smooth) 0.8s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-neon));
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px oklch(70% 0.18 290 / 0.35);
}

.btn-primary:active {
  transform: scale(0.97);
  transition-duration: 0.1s;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--fg);
  font-size: 16px;
  font-weight: 600;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.4s var(--ease-smooth), border-color 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth);
  letter-spacing: 0.01em;
}

.btn-secondary:hover {
  background: oklch(30% 0.05 290 / 0.2);
  border-color: var(--purple-primary);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: scale(0.97);
  transition-duration: 0.1s;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-smooth) 1s forwards;
}

.scroll-indicator > span {
  animation: bounce-down 2.5s var(--ease-smooth) infinite 1.2s;
}

.scroll-chevron {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  animation: chevron-pulse 2.5s var(--ease-smooth) infinite 1.2s;
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes chevron-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* ============================================================
   SECTIONS — GENERAL
   ============================================================ */

.section {
  padding: var(--section-padding);
  position: relative;
}

.section:nth-child(even) {
  background: var(--bg-2);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: oklch(70% 0.18 290 / 0.1);
  color: var(--purple-bright);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid oklch(70% 0.18 290 / 0.2);
  margin-bottom: 16px;
  transition: background 0.4s var(--ease-smooth), border-color 0.4s var(--ease-smooth);
}

.section-tag:hover {
  background: oklch(70% 0.18 290 / 0.18);
  border-color: oklch(70% 0.18 290 / 0.35);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 17px;
  color: var(--fg-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   GLASS CARD
   ============================================================ */

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: var(--glass-shadow);
  transition: transform 0.45s var(--ease-smooth), box-shadow 0.45s var(--ease-smooth), border-color 0.45s var(--ease-smooth), background 0.45s var(--ease-smooth);
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.5), 0 0 0 1px oklch(50% 0.1 290 / 0.15);
  border-color: oklch(50% 0.1 290 / 0.3);
}

/* ============================================================
   SERVICIOS
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease-smooth), box-shadow 0.45s var(--ease-smooth), border-color 0.45s var(--ease-smooth);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-primary), var(--purple-neon));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.card-icon svg { width: 100%; height: 100%; }

.card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.card-desc {
  font-size: 14px;
  color: var(--fg-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
}

.card-price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--purple-bright);
  margin-bottom: 8px;
}

.card-extra {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin 0.3s ease;
  font-size: 13px;
  color: var(--fg-secondary);
  line-height: 1.5;
}

.card-extra.open {
  max-height: 200px;
  margin-bottom: 12px;
}

.card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: oklch(70% 0.18 290 / 0.15);
  color: var(--purple-primary);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid oklch(70% 0.18 290 / 0.2);
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
  margin-top: auto;
}

.card-btn:hover {
  background: oklch(70% 0.18 290 / 0.25);
  transform: scale(1.03);
}

/* ============================================================
   PRECIOS
   ============================================================ */

.pricing-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: oklch(70% 0.12 280 / 0.1);
  border: 1px solid oklch(70% 0.12 280 / 0.2);
  border-radius: 12px;
  font-size: 14px;
  color: var(--fg-secondary);
  margin-bottom: 32px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.pricing-card {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pricing-name {
  font-size: 15px;
  font-weight: 500;
}

.pricing-range {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--purple-primary);
  white-space: nowrap;
}

.pricing-highlight {
  text-align: center;
}

.highlight-card {
  padding: 40px;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid oklch(70% 0.18 290 / 0.3);
}

.highlight-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.highlight-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.highlight-card p {
  color: var(--fg-secondary);
  margin-bottom: 24px;
  font-size: 15px;
}

/* ============================================================
   CÓMO FUNCIONA — PROCESS CARDS
   ============================================================ */

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.process-card {
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.45s var(--ease-smooth), box-shadow 0.45s var(--ease-smooth);
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px oklch(50% 0.1 290 / 0.12);
}

.process-num {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-neon));
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  border-radius: 50%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.process-card:hover .process-num {
  box-shadow: 0 0 24px oklch(70% 0.18 290 / 0.4);
  transform: scale(1.08);
}

.process-icon {
  font-size: 32px;
}

.process-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
}

.process-desc {
  font-size: 14px;
  color: var(--fg-secondary);
  line-height: 1.5;
}

.process-highlight {
  font-size: 13px;
  color: var(--purple-bright);
  font-weight: 500;
  padding: 8px 14px;
  background: oklch(70% 0.18 290 / 0.1);
  border: 1px solid oklch(70% 0.18 290 / 0.2);
  border-radius: 8px;
  margin-top: 4px;
}

.btn-wa-process {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #25D366;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth);
  margin-top: auto;
}

.btn-wa-process:hover {
  background: #1ebe5d;
  transform: scale(1.03);
}

/* ---- Transparency panel ---- */
.process-transparency {
  padding: 32px 28px;
  max-width: 800px;
  margin: 0 auto;
}

.process-transparency h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  color: var(--purple-bright);
}

.transparency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.transparency-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: oklch(12% 0.035 290 / 0.4);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--fg-secondary);
  line-height: 1.5;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.transparency-item:hover {
  background: oklch(20% 0.05 290 / 0.3);
  border-color: oklch(50% 0.1 290 / 0.2);
}

.t-check {
  color: var(--accent-soft);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   POLÍTICAS
   ============================================================ */

.politicas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 12px;
  margin-bottom: 40px;
}

.politica-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.politica-item:hover {
  background: oklch(20% 0.05 290 / 0.3);
  border-color: oklch(50% 0.1 290 / 0.2);
}

.politica-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: grid;
  place-items: center;
  background: oklch(70% 0.12 280 / 0.15);
  color: var(--accent-soft);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
}

.politicas-statement {
  text-align: center;
  padding: 32px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 500;
  color: var(--purple-bright);
  font-style: italic;
}

/* ============================================================
   NOSOTROS / ABOUT
   ============================================================ */

.about-content {
  max-width: 750px;
  margin: 0 auto;
}

.about-text {
  font-size: 17px;
  color: var(--fg-secondary);
  line-height: 1.7;
}

.about-text > p {
  margin-bottom: 24px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.about-value {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.about-value span {
  color: var(--accent-soft);
  font-weight: 700;
}

.about-value:hover {
  background: oklch(20% 0.05 290 / 0.3);
  border-color: oklch(50% 0.1 290 / 0.2);
}

/* WHY CHOOSE */

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.info-card {
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}

.info-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.info-card p {
  font-size: 14px;
  color: var(--fg-secondary);
  line-height: 1.5;
}

.info-statement {
  text-align: center;
  padding: 28px 24px;
  background: oklch(70% 0.18 290 / 0.1);
  border: 1px solid oklch(70% 0.18 290 / 0.2);
  border-radius: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.info-statement p {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  color: var(--purple-bright);
  line-height: 1.5;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.why-card {
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.why-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
}

/* ============================================================
   BEFORE / AFTER
   ============================================================ */

.ba-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.ba-card {
  flex: 1;
  min-width: 260px;
  max-width: 380px;
  padding: 32px;
}

.ba-label {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.ba-before .ba-label { color: oklch(65% 0.18 340); }
.ba-after .ba-label { color: var(--purple-bright); }

.ba-card ul {
  list-style: none;
}

.ba-card li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--fg-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border-color);
}

.ba-card li:last-child { border-bottom: none; }

.ba-arrow {
  display: flex;
  align-items: center;
  font-size: 32px;
  color: var(--purple-primary);
  opacity: 0.6;
}

/* ============================================================
   TESTIMONIOS
   ============================================================ */

.compromiso-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.compromiso-card {
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.45s var(--ease-smooth), box-shadow 0.45s var(--ease-smooth);
}

.compromiso-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.compromiso-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.compromiso-icon svg {
  width: 100%;
  height: 100%;
}

.compromiso-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.compromiso-card p {
  font-size: 14px;
  color: var(--fg-secondary);
  line-height: 1.6;
}

/* ============================================================
   SERVICE AREA
   ============================================================ */

.area-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.area-map {
  padding: 24px;
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-svg { width: 100%; height: auto; }

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--purple-primary);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--purple-primary);
  animation: pin-pulse 2s ease-in-out infinite;
  z-index: 2;
}

@keyframes pin-pulse {
  0%, 100% { box-shadow: 0 0 20px var(--purple-primary); filter: blur(0); }
  50% { box-shadow: 0 0 40px var(--purple-primary), 0 0 60px var(--purple-neon); filter: blur(1px); }
}

.area-info {
  padding: 32px;
}

.area-info h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.area-info p {
  font-size: 15px;
  color: var(--fg-secondary);
  margin-bottom: 8px;
  line-height: 1.5;
}

.area-info .btn-primary {
  margin-top: 20px;
}

/* ============================================================
   HORARIOS
   ============================================================ */

.horarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.horario-card {
  padding: 28px 20px;
  text-align: center;
}

.horario-dia {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.horario-hora {
  font-size: 18px;
  font-weight: 500;
  color: var(--purple-bright);
}

.horarios-nota {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-top: 24px;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--fg);
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
  gap: 16px;
}

.faq-question:hover {
  color: var(--purple-bright);
}

.faq-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--muted);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--purple-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--fg-secondary);
  line-height: 1.6;
}

/* ============================================================
   SEGURIDAD
   ============================================================ */

.seguridad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.seguridad-item {
  padding: 28px 24px;
  text-align: center;
}

.seguridad-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.seguridad-item h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.seguridad-item p {
  font-size: 14px;
  color: var(--fg-secondary);
  line-height: 1.5;
}

/* ============================================================
   CONTACTO
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  padding: 24px;
}

.contact-card-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 14px;
  color: var(--fg-secondary);
  margin-bottom: 4px;
}

.contact-phone {
  font-family: var(--font-display);
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--purple-primary) !important;
  margin-bottom: 16px !important;
}

.contact-card .btn-primary {
  margin-top: 12px;
}

.contact-form {
  padding: 32px;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-secondary);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: oklch(12% 0.035 290 / 0.6);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--fg);
  font-size: 14px;
  font-family: var(--font-body);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple-primary);
  box-shadow: 0 0 0 3px oklch(70% 0.18 290 / 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.form-group textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.toast {
  margin-top: 16px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  background: oklch(70% 0.12 280 / 0.15);
  color: var(--accent-soft);
  border: 1px solid oklch(70% 0.12 280 / 0.2);
}

.toast.error {
  background: oklch(60% 0.18 340 / 0.15);
  color: oklch(65% 0.18 340);
  border: 1px solid oklch(60% 0.18 340 / 0.2);
}

/* ============================================================
   FLOATING UFO
   ============================================================ */

.floating-ufo {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 999;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.5s var(--ease-smooth), transform 0.5s var(--ease-smooth);
  animation: ufo-float-mini 8s var(--ease-smooth) infinite;
  will-change: transform;
}

.floating-ufo:hover {
  opacity: 0.9;
  transform: scale(1.15);
  filter: blur(0.3px);
}

.floating-ufo svg {
  width: 56px;
  height: 28px;
  filter: drop-shadow(0 0 8px oklch(70% 0.18 290 / 0.3));
  will-change: transform, filter;
}

@keyframes ufo-float-mini {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-10px) translateX(4px); }
  66% { transform: translateY(-18px) translateX(-3px); }
}

.ufo-message {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--fg);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-width: 280px;
  white-space: normal;
}

.ufo-message.show {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   CURSOR GLOW
   ============================================================ */

.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  background: radial-gradient(circle, oklch(70% 0.18 290 / 0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
  .cursor-glow { display: none; }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */

.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 990;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--fg);
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  transition: opacity 0.5s var(--ease-smooth), transform 0.5s var(--ease-smooth), background 0.4s var(--ease-smooth), border-color 0.4s var(--ease-smooth);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--surface-hover);
  border-color: var(--purple-primary);
  transform: translateY(-2px) scale(1.05);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: #02000e;
  border-top: 1px solid var(--border-color);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.footer-brand > p {
  color: var(--purple-bright);
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-desc {
  color: var(--fg-secondary) !important;
  font-size: 14px !important;
  line-height: 1.5;
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.footer-links a {
  display: block;
  color: var(--fg-secondary);
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--purple-bright);
}

.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.footer-contact a,
.footer-contact p {
  display: block;
  color: var(--fg-secondary);
  font-size: 14px;
  padding: 4px 0;
}

.btn-wa-footer {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 10px 20px !important;
  background: #25D366;
  color: #fff !important;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
  transition: background 0.2s ease;
}

.btn-wa-footer:hover {
  background: #1ebe5d;
  color: #fff !important;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

.footer-privacy {
  font-size: 12px;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */

.reveal {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth), filter 0.9s var(--ease-smooth);
}

.reveal.animate-in {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(1.5px);
}

.reveal.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ============================================================
   HERO LAPTOP
   ============================================================ */

.hero-laptop {
  position: absolute;
  right: 5%;
  top: 22%;
  width: 240px;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.45s var(--ease-smooth);
  transform-style: preserve-3d;
  perspective: 800px;
  opacity: 0;
  transform: scale(0.92) translateY(12px);
  animation: laptop-entrance 1s var(--ease-smooth) 0.5s forwards;
}

@keyframes laptop-entrance {
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.laptop-body {
  background: linear-gradient(145deg, #1E0548, #2E1065);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px 12px 6px 6px;
  padding: 10px 10px 6px;
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.15), inset 0 1px 0 rgba(192, 132, 252, 0.1);
}

.laptop-screen {
  background: #0a0a1a;
  border-radius: 6px;
  padding: 8px;
  position: relative;
  overflow: hidden;
  min-height: 140px;
  border: 1px solid rgba(139, 92, 246, 0.15);
}

.laptop-screen-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(139, 92, 246, 0.08), transparent 70%);
  pointer-events: none;
}

.laptop-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple-primary), transparent);
  opacity: 0.4;
  animation: scan-line 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scan-line {
  0%, 100% { top: 0; }
  50% { top: 100%; }
}

.laptop-screen-content {
  position: relative;
  z-index: 1;
}

.laptop-status {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.laptop-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 4px #22c55e; }
  50% { box-shadow: 0 0 10px #22c55e, 0 0 20px rgba(34, 197, 94, 0.3); }
}

.laptop-screen-text {
  font-size: 11px;
  font-family: var(--font-body);
  color: var(--accent-soft);
  letter-spacing: 0.02em;
  transition: opacity 0.3s ease;
}

.laptop-screen-text.text-fade {
  animation: text-fade 0.3s ease;
}

@keyframes text-fade {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}

.laptop-code {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.code-line {
  font-family: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 9px;
  color: var(--fg-secondary);
  opacity: 0;
  animation: code-typing 0.5s ease forwards;
  white-space: nowrap;
}

@keyframes code-typing {
  0% { opacity: 0; transform: translateX(-4px); }
  100% { opacity: 0.7; transform: translateX(0); }
}

.code-line:last-child { color: #22c55e; opacity: 0.8; }

.laptop-keyboard {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 4px 4px;
}

.keyboard-line {
  width: 80%;
  height: 3px;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 2px;
}

.keyboard-line.short { width: 40%; }

.laptop-open {
  animation: laptop-bounce 0.6s ease;
}

@keyframes laptop-bounce {
  0%, 100% { transform: perspective(800px) rotateY(0deg) rotateX(0deg) scale(1); }
  30% { transform: perspective(800px) rotateY(-5deg) rotateX(5deg) scale(1.02); }
  60% { transform: perspective(800px) rotateY(3deg) rotateX(-3deg) scale(0.98); }
}

/* ============================================================
   NAVBAR SHRINK
   ============================================================ */

.navbar.shrink {
  height: 56px;
}

.navbar.shrink .nav-logo { font-size: 18px; }
.navbar.shrink .nav-logo-icon { font-size: 20px; }
.navbar.shrink .nav-link { padding: 6px 12px; font-size: 13px; }
.navbar.shrink .btn-wa-desktop { padding: 8px 16px; font-size: 13px; }

/* ============================================================
   BUTTON ANIMATIONS
   ============================================================ */

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary:active {
  transform: scale(0.97);
}

.btn-secondary:active {
  transform: scale(0.97);
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible {
  outline: 2px solid var(--purple-bright);
  outline-offset: 3px;
}

/* ============================================================
   SERVICE CARD SHINE
   ============================================================ */

.service-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease-smooth), box-shadow 0.45s var(--ease-smooth), border-color 0.45s var(--ease-smooth);
  will-change: transform;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-primary), var(--purple-neon));
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
  z-index: 1;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.06), transparent);
  transform: skewX(-20deg);
  transition: left 0.8s var(--ease-smooth);
  pointer-events: none;
}

.service-card:hover::after {
  left: 150%;
}

.card-icon {
  transition: transform 0.5s var(--ease-smooth);
}

.service-card:hover .card-icon {
  transform: scale(1.08) rotate(-2deg);
}



/* ============================================================
   COMPROMISO CARDS
   ============================================================ */

.compromiso-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compromiso-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.compromiso-icon svg {
  animation: icon-float 4s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.compromiso-card:hover .compromiso-icon svg {
  animation-duration: 1.5s;
}

@keyframes icon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.compromiso-card:nth-child(2) .compromiso-icon svg {
  animation-delay: 0.5s;
}

.compromiso-card:nth-child(3) .compromiso-icon svg {
  animation-delay: 1s;
}

/* ============================================================
   FLOATING UFO IMPROVED
   ============================================================ */

.floating-ufo {
  animation: ufo-float-mini 6s ease-in-out infinite;
  will-change: transform;
}

.floating-ufo:hover {
  opacity: 0.9;
  transform: scale(1.15);
  filter: blur(0.3px);
}

.floating-ufo.clicked {
  animation: ufo-click 0.4s ease;
}

@keyframes ufo-click {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(0.9) rotate(-5deg); }
}

/* ============================================================
   SCROLL REVEAL STAGGER
   ============================================================ */

.services-grid .reveal:nth-child(1) { transition-delay: 0s; }
.services-grid .reveal:nth-child(2) { transition-delay: 0.05s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.1s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.15s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.2s; }
.services-grid .reveal:nth-child(6) { transition-delay: 0.25s; }
.services-grid .reveal:nth-child(7) { transition-delay: 0.3s; }
.services-grid .reveal:nth-child(8) { transition-delay: 0.35s; }
.services-grid .reveal:nth-child(9) { transition-delay: 0.4s; }
.services-grid .reveal:nth-child(10) { transition-delay: 0.45s; }
.services-grid .reveal:nth-child(11) { transition-delay: 0.5s; }

.process-grid .reveal:nth-child(1) { transition-delay: 0s; }
.process-grid .reveal:nth-child(2) { transition-delay: 0.06s; }
.process-grid .reveal:nth-child(3) { transition-delay: 0.12s; }
.process-grid .reveal:nth-child(4) { transition-delay: 0.18s; }
.process-grid .reveal:nth-child(5) { transition-delay: 0.24s; }

.compromiso-grid .reveal:nth-child(1) { transition-delay: 0s; }
.compromiso-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.compromiso-grid .reveal:nth-child(3) { transition-delay: 0.16s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .area-content {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: #030014f0;
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    width: 100%;
    padding: 12px 16px;
  }

  .nav-wa-mobile {
    display: block;
    padding: 8px 0;
  }

  .nav-wa-mobile .btn-wa-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: #25D366;
    color: #fff;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
  }

  .btn-wa-desktop { display: none; }

  .hamburger { display: flex; }

  .hero-ufo-container {
    top: 5%;
    right: 4%;
    opacity: 0.3;
  }

  .hero-ufo { width: 140px; }

  .hero-laptop {
    position: relative;
    right: auto;
    top: auto;
    width: 180px;
    margin: 20px auto 0;
    order: 2;
  }

  .hero {
    flex-direction: column;
  }

  .laptop-screen { min-height: 100px; }
  .code-line { font-size: 8px; }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .horarios-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .compromiso-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .ba-grid {
    flex-direction: column;
    align-items: center;
  }

  .ba-arrow {
    transform: rotate(90deg);
  }

  .floating-ufo {
    bottom: 80px;
    right: 16px;
  }

  .floating-ufo svg {
    width: 42px;
    height: 21px;
  }

  .transparency-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(36px, 12vw, 56px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    text-align: center;
    justify-content: center;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 36px;
  }
}