/**
 * AXESSAR — Landing Page Index Styles
 * Colorimetría: Celeste, Naranja, Blanco Predominantes
 */

/* ── HERO ──────────────────────────────────────────── */
.ax-hero {
  position: relative; width: 100%; height: 100vh; min-height: 680px;
  overflow: hidden; background: #0a0a1a; display: flex; align-items: center;
}

/* Background Decor */
.ax-hero__decor {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 1; pointer-events: none;
}
.ax-hero__decor-glow-1 {
  position: absolute; top: -10%; right: -10%; width: 600px; height: 600px;
  border-radius: 50%; background: rgba(124, 58, 237, 0.25); filter: blur(120px); opacity: 0.8;
}
.ax-hero__decor-glow-2 {
  position: absolute; bottom: 10%; left: -5%; width: 400px; height: 400px;
  border-radius: 50%; background: rgba(0, 159, 230, 0.15); filter: blur(100px); opacity: 0.8;
}

/* Progress */
.ax-progress-wrap { position: absolute; top: 0; left: 0; right: 0; z-index: 50; height: 3px; background: rgba(0,0,0,0.1); }
.ax-progress-bar { height: 100%; width: 0; background: linear-gradient(to right, var(--orange), var(--cyan-bright)); transition: width linear; }

/* Slides */
.ax-slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .9s ease; display: flex; align-items: center; }
.ax-slide.active { opacity: 1; pointer-events: auto; }

.ax-video-wrap, .ax-img-wrap { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.ax-video-wrap video, .ax-img-wrap img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; filter: brightness(0.85); }

.ax-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: 
    linear-gradient(to right, rgba(10, 10, 26, 0.85) 0%, rgba(10, 10, 26, 0.65) 50%, rgba(10, 10, 26, 0.3) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 40%, rgba(0,0,0,0.4) 100%);
}

.ax-slide-content {
  position: relative; z-index: 10; width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
@media (max-width: 1024px) {
  .ax-overlay { background: rgba(10, 10, 26, 0.75); }
  .ax-slide-content { grid-template-columns: 1fr; }
}

.ax-slide__text { max-width: 600px; }
.ax-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--blanco); margin-bottom: 24px; text-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.hl-gradient { color: var(--naranja); text-shadow: 0 2px 10px rgba(255,145,77,0.3); }
.hl-orange { color: var(--naranja); text-shadow: 0 2px 10px rgba(255,145,77,0.3); }

.ax-subtitle { font-size: 1.125rem; font-weight: 600; color: var(--blanco); line-height: 1.7; margin-bottom: 32px; max-width: 500px; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }

.ax-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  padding: 16px 32px; border-radius: 9999px; background: linear-gradient(to right, var(--naranja), var(--celeste));
  color: var(--blanco); font-weight: 900; font-size: 1.125rem; text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s; box-shadow: 0 8px 32px rgba(124, 58, 237, 0.4);
}
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(124, 58, 237, 0.6); background: linear-gradient(to right, #8b5cf6, #38bdf8); }

.btn-secondary {
  padding: 16px 32px; border-radius: 9999px; background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(8px);
  color: var(--celeste); font-weight: 900; font-size: 1.125rem; text-decoration: none; cursor: pointer; transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.btn-secondary:hover { transform: translateY(-4px); color: var(--naranja); border-color: rgba(124, 58, 237, 0.5); box-shadow: 0 12px 40px rgba(124, 58, 237, 0.2); }

/* Elements en la parte derecha del hero */
.ax-slide-visual { position: relative; }
@media (max-width: 1024px) { .ax-slide-visual { display: none; } }

.ax-dash-panel {
  position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.2);
  transform: translateZ(0); display: block; width: 100%; border: 4px solid var(--blanco); background: var(--blanco);
}

.float-el { position: absolute; z-index: 20; animation: floatY 4s ease-in-out infinite; }
.float-el--1 { top: -24px; right: -24px; padding: 16px; border-radius: 50%; box-shadow: 0 10px 30px rgba(0,0,0,0.15); background: var(--blanco); }
.float-el--2 { bottom: -32px; left: -32px; padding: 16px 24px; border-radius: 9999px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); animation-delay: 1s; background: var(--blanco); }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

.status-indicator { display: flex; align-items: center; gap: 12px; }
.status-dot { width: 16px; height: 16px; background: #22c55e; border-radius: 50%; animation: pulse-green 2s infinite; }
@keyframes pulse-green { 0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); } 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); } }
.status-text { font-size: 1rem; font-weight: 800; color: var(--celeste); letter-spacing: 0.05em; }

/* Arrows & Dots */
.ax-arrow {
  position: absolute; top: 50%; z-index: 30; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.15); color: var(--blanco); font-size: 1.5rem; cursor: pointer; font-weight: bold;
  display: flex; align-items: center; justify-content: center; transition: all 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.ax-arrow:hover { background: var(--orange); color: var(--blanco); border-color: var(--orange); transform: translateY(-50%) scale(1.1); box-shadow: 0 0 20px var(--orange-glow); }
.ax-arrow--prev { left: 32px; }
.ax-arrow--next { right: 32px; }

.ax-dots { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 30; display: flex; gap: 12px; }
.ax-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.3); border: none; cursor: pointer; transition: all 0.3s; padding: 0; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
.ax-dot.active { width: 36px; border-radius: 9999px; background: linear-gradient(to right, var(--orange), var(--cyan-bright)); box-shadow: 0 0 12px var(--orange-glow); }

.ax-slide-label { position: absolute; top: calc(var(--ax-nav-h) + 24px); right: 32px; z-index: 30; font-family: monospace; font-size: 1rem; color: rgba(255,255,255,.8); font-weight: bold; }
.ax-slide-label__current { color: var(--blanco); font-size: 1.5rem; }

/* ── STATS BAR ── */
.ax-section-stats { padding: 48px 32px; background: var(--surface-bg); }
.ax-stats-wrapper {
  max-width: 1280px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-around; gap: 32px;
  padding: 48px 32px; border-radius: 24px; text-align: center;
  background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(12px); box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.ax-stat-col { display: flex; flex-direction: column; gap: 4px; }
.ax-stat-val { font-size: 3rem; font-weight: 900; background: linear-gradient(to right, var(--celeste), var(--naranja)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.ax-stat-lbl { color: var(--text-muted); font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }
.ax-stat-div { width: 2px; background: rgba(255, 255, 255, 0.1); }
@media (max-width: 768px) { .ax-stat-div { display: none; } }

/* ── SERVICIOS ── */
.ax-section-services { padding: 96px 32px; background: rgba(26, 26, 43, 0.3); color: var(--blanco); box-shadow: inset 0 10px 40px rgba(0,0,0,0.1); }
.ax-section-inner { max-width: 1280px; margin: 0 auto; }
.ax-section-header { margin-bottom: 64px; text-align: center; }
.ax-section-title { font-size: 2.75rem; font-weight: 900; color: var(--blanco); margin-bottom: 24px; display: inline-block; border-bottom: 4px solid var(--orange); padding-bottom: 8px; }
.ax-section-lead { color: rgba(255, 255, 255, 0.85); font-size: 1.25rem; max-width: 600px; margin: 0 auto; font-weight: 400; }

.ax-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
@media (max-width: 1024px) { .ax-services-grid { grid-template-columns: 1fr; } }

.ax-srv-card {
  padding: 40px; border-radius: 24px; transition: all 0.3s; position: relative;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15); display: flex; flex-direction: column;
}
.ax-srv-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.25); }

.ax-srv-icon-box {
  width: 72px; height: 72px; border-radius: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 32px; transition: transform 0.3s;
  background: rgba(255, 255, 255, 0.15); color: var(--blanco);
}
.ax-srv-card:hover .ax-srv-icon-box { transform: scale(1.1); background: var(--naranja); color: var(--blanco); box-shadow: 0 10px 25px rgba(255,145,77,0.4); }
.ax-srv-icon-box .material-symbols-outlined { font-size: 2.5rem; }

.ax-srv-title { font-size: 1.75rem; font-weight: 800; color: var(--blanco); margin-bottom: 16px; }
.ax-srv-desc { color: rgba(255, 255, 255, 0.8); line-height: 1.6; margin-bottom: 32px; font-size: 1.1rem; flex-grow: 1; }
.ax-srv-link { font-weight: 800; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; transition: gap 0.3s, color 0.3s; font-size: 1.1rem; color: var(--cyan-bright); }
.ax-srv-link:hover { gap: 16px; color: var(--orange); }

/* ── HOW IT WORKS (PROCESO) ── */
.ax-section-process { padding: 96px 32px; position: relative; overflow: hidden; background: transparent; }
.ax-process-title { font-size: 2.75rem; font-weight: 900; text-align: center; margin-bottom: 80px; color: var(--blanco); }
.ax-process-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
@media (max-width: 1024px) { .ax-process-grid { grid-template-columns: 1fr; } }

/* Line connect */
.ax-process-line {
  position: absolute; top: 48px; left: 15%; right: 15%; height: 4px;
  background: linear-gradient(to right, var(--celeste), var(--orange), var(--cyan-bright)); border-radius: 4px; z-index: 1;
}
@media (max-width: 1024px) { .ax-process-line { display: none; } }

.ax-step { display: flex; flex-direction: column; align-items: center; text-align: center; z-index: 2; }
.ax-step-num {
  width: 96px; height: 96px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center; margin-bottom: 32px; position: relative;
  transition: transform 0.3s; box-shadow: 0 10px 30px rgba(0,0,0,0.2); border: 2px solid rgba(255,255,255,0.1);
}
.ax-step:hover .ax-step-num { transform: scale(1.15) rotate(10deg); border-color: var(--orange); box-shadow: 0 0 30px var(--orange-glow); }
.ax-step-num-val { font-size: 2.5rem; font-weight: 900; color: var(--celeste); }
.ax-step:hover .ax-step-num-val { color: var(--orange); }

.ax-step-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 16px; color: var(--text-dark); }
.ax-step-desc { color: var(--text-muted); max-width: 250px; font-size: 1.1rem; }

/* ── CTA BANNER ── */
.ax-section-cta { padding: 96px 32px; background: var(--surface-bg); }
.ax-cta-banner {
  max-width: 1280px; margin: 0 auto; position: relative; border-radius: 48px; overflow: hidden; padding: 96px 48px; text-align: center;
  background: var(--surface-card); box-shadow: 0 20px 60px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1);
}
.ax-cta-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.2) 0%, transparent 50%), radial-gradient(circle at bottom left, rgba(0, 159, 230, 0.2) 0%, transparent 40%); opacity: 0.8;
}
.ax-cta-content { position: relative; z-index: 10; }
.ax-cta-title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; color: var(--blanco); margin-bottom: 32px; line-height: 1.1; }
.ax-cta-sub { font-size: 1.5rem; color: var(--blanco); font-weight: 600; margin-bottom: 48px; max-width: 800px; margin-left: auto; margin-right: auto; }
.ax-cta-btn {
  display: inline-block; background: linear-gradient(135deg, var(--orange) 0%, #ff6b35 100%); color: var(--blanco); padding: 24px 64px; border-radius: 9999px; font-weight: 900; font-size: 1.5rem;
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 15px 30px var(--orange-glow); border: none;
}
.ax-cta-btn:hover { background: var(--celeste); box-shadow: 0 15px 30px var(--cyan-glow); transform: scale(1.05); }
.ax-cta-btn:active { transform: scale(0.95); }
@media (max-width: 768px) { .ax-cta-banner { padding: 64px 24px; border-radius: 32px; } }

/* ── OVERLAY DARK (slide 2) ──────────────────────────── */
.ax-overlay--dark {
  background:
    linear-gradient(to right, rgba(10,22,40,.95) 0%, rgba(10,22,40,.75) 55%, rgba(10,22,40,.3) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.4) 0%, transparent 40%);
}

/* ── AI SCENE (slide 1) ──────────────────────────────── */
.ax-ai-scene {
  position: absolute; right: 0; top: 0; bottom: 0; width: 55%;
  z-index: 8; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.ax-bbox {
  position: absolute; width: 300px; height: 180px;
  top: 50%; left: 50%; transform: translate(-28%, -50%);
  border: 2px solid var(--celeste);
  box-shadow: 0 0 16px rgba(56,182,255,.5), inset 0 0 30px rgba(56,182,255,.04);
  animation: bbox-pulse 2.5s ease-in-out infinite;
}
@keyframes bbox-pulse {
  0%,100% { box-shadow: 0 0 16px rgba(56,182,255,.5); border-color: var(--celeste); }
  50%     { box-shadow: 0 0 6px rgba(56,182,255,.2);  border-color: rgba(56,182,255,.5); }
}
.ax-bbox-c {
  position: absolute; width: 14px; height: 14px;
  border-color: var(--celeste); border-style: solid;
  box-shadow: 0 0 8px rgba(56,182,255,.8);
}
.ax-bbox-c--tl { top:-2px; left:-2px;   border-width: 2px 0 0 2px; }
.ax-bbox-c--tr { top:-2px; right:-2px;  border-width: 2px 2px 0 0; }
.ax-bbox-c--bl { bottom:-2px; left:-2px; border-width: 0 0 2px 2px; }
.ax-bbox-c--br { bottom:-2px; right:-2px;border-width: 0 2px 2px 0; }

.ax-ai-label {
  position: absolute; top: calc(50% - 106px); left: 50%;
  transform: translateX(-26%);
  background: rgba(56,182,255,.9); border: none;
  padding: 5px 14px; font-family: monospace; font-size: .65rem;
  letter-spacing: .1em; color: #fff; white-space: nowrap;
  border-radius: 2px; box-shadow: 0 4px 12px rgba(56,182,255,.4);
}
.ax-ai-label span { color: #fff; font-weight: 700; }
.lbl-status { color: #fff; background: rgba(34,197,94,.8); padding: 1px 6px; border-radius: 2px; }

.ax-laser-origin { position: absolute; top: 20%; right: 12%; z-index: 9; }
.ax-camera-icon {
  width: 32px; height: 32px;
  background: var(--celeste); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(56,182,255,.6);
}
.ax-camera-icon::before { content: '◉'; font-size: .9rem; color: #fff; }
.ax-laser-line {
  position: absolute; top: 16px; right: 32px; height: 1px;
  background: linear-gradient(to left, transparent, rgba(56,182,255,.6));
  animation: laser-sweep 2s ease-in-out infinite alternate;
  transform-origin: right center;
}
.ax-laser-line:nth-child(2) { width: 260px; transform: rotate(-8deg);  animation-delay: 0s;  }
.ax-laser-line:nth-child(3) { width: 330px; transform: rotate(3deg);   animation-delay: .3s; opacity: .6; }
.ax-laser-line:nth-child(4) { width: 200px; transform: rotate(-18deg); animation-delay: .6s; opacity: .4; }
.ax-laser-line:nth-child(5) { width: 290px; transform: rotate(12deg);  animation-delay: .9s; opacity: .5; }
@keyframes laser-sweep { from{opacity:.1} to{opacity:.9} }

.ax-data-panel {
  position: absolute; right: 6%; bottom: 28%;
  background: rgba(255,255,255,.97);
  border-left: 3px solid var(--celeste);
  border-radius: 4px;
  padding: 12px 16px; min-width: 195px;
  font-family: monospace; font-size: .68rem; line-height: 1.9;
  color: #1e293b;
  box-shadow: 0 8px 30px rgba(56,182,255,.2);
}
.ax-dp-header {
  color: var(--celeste); font-size: .6rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 7px; padding-bottom: 7px;
  border-bottom: 1px solid rgba(56,182,255,.2);
}
.ax-dp-row { display: flex; justify-content: space-between; gap: 14px; }
.ax-dp-row .val { color: var(--celeste); font-weight: 700; }
.s-blink { animation: blink 1.4s step-end infinite; }
@keyframes blink { 50%{opacity:0} }

/* ── FLOAT CARD (slide 1 derecha) ─────────────────────── */
.ax-slide-visual { position: relative; display: flex; align-items: center; justify-content: center; }
@media (max-width: 1024px) { .ax-slide-visual { display: none; } }

.ax-float-card {
  padding: 28px 32px; border-radius: 20px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 20px 50px rgba(56,182,255,.25);
  border: 2px solid rgba(56,182,255,.2);
  min-width: 280px;
}
.ax-mini-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 20px; text-align: center; }
.ax-mini-val {
  display: block; font-size: 1.6rem; font-weight: 900; color: var(--celeste); line-height: 1;
}
.ax-mini-lbl { font-size: .65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; margin-top: 4px; display: block; }

.float-el { position: absolute; z-index: 20; animation: floatY 4s ease-in-out infinite; }
.float-el--1 { top: -24px; right: -20px; padding: 14px; border-radius: 50%; box-shadow: 0 10px 30px rgba(56,182,255,.2); background: #fff; }

/* ── CÓDIGO ANIMADO (slide 2) ────────────────────────── */
.ax-code-window {
  background: #0d1117; border-radius: 12px;
  border: 1px solid rgba(56,182,255,.3);
  border-top: 3px solid var(--celeste);
  overflow: hidden; width: 100%; max-width: 440px;
  box-shadow: 0 25px 60px rgba(0,0,0,.5), 0 0 40px rgba(56,182,255,.1);
}
.ax-code-bar {
  background: rgba(56,182,255,.08); padding: 9px 14px;
  display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid rgba(56,182,255,.15);
}
.ax-code-dot { width: 10px; height: 10px; border-radius: 50%; }
.ax-code-dot--red    { background: #ff5f56; }
.ax-code-dot--yellow { background: #ffbd2e; }
.ax-code-dot--green  { background: #27c93f; }
.ax-code-fname { font-family: monospace; font-size: .62rem; color: rgba(255,255,255,.35); margin-left: 8px; }
.ax-code-body { padding: 16px 20px; }
.ax-cl {
  font-family: monospace; font-size: .72rem; line-height: 1.75;
  color: rgba(255,255,255,.72); white-space: nowrap;
  padding-left: 2px; border-left: 2px solid transparent;
  transition: background .15s, border-color .15s;
}
.ax-cl.ax-cl--active {
  background: rgba(56,182,255,.06);
  border-left-color: var(--celeste);
}
.ax-cl .cm  { color: rgba(150,170,200,.6); }
.ax-cl .kw  { color: var(--celeste); }
.ax-cl .nm  { color: #7dd3fc; }
.ax-cl .fn  { color: #93c5fd; }
.ax-cl .str { color: var(--naranja); }
.ax-cursor {
  display: inline-block; width: 7px; height: 13px;
  background: var(--celeste); vertical-align: text-bottom;
  animation: cursor-blink .8s step-end infinite;
}
@keyframes cursor-blink { 50%{opacity:0} }

/* ── BARRIER BADGE (slide 3) ─────────────────────────── */
.ax-barrier-badge {
  position: absolute; right: 6%; bottom: 25%; z-index: 8;
  background: rgba(255,255,255,.97);
  border-left: 3px solid var(--orange);
  border-radius: 4px; padding: 12px 18px; min-width: 190px;
  font-family: monospace; font-size: .68rem; line-height: 1.9;
  color: #1e293b;
  box-shadow: 0 8px 30px rgba(255,145,77,.25);
}

/* ── BIOMÉTRICO (slide 4) ────────────────────────────── */
.ax-bio-overlay {
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  z-index: 8; pointer-events: none;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.ax-face-frame {
  width: 180px; height: 230px; border-radius: 50% / 40%;
  border: 2px solid rgba(56,182,255,.6);
  box-shadow: 0 0 25px rgba(56,182,255,.35), inset 0 0 30px rgba(56,182,255,.05);
  position: relative; overflow: hidden;
}
.ax-face-scan {
  position: absolute; left: 0; right: 0; height: 2px;
  background: rgba(56,182,255,.7); box-shadow: 0 0 10px rgba(56,182,255,.9);
  animation: face-scan 2s linear infinite;
}
@keyframes face-scan { 0%{top:0%} 100%{top:100%} }
.ax-bio-pt {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: var(--celeste); box-shadow: 0 0 8px rgba(56,182,255,.8);
  animation: bio-pulse 1.5s ease-in-out infinite;
}
@keyframes bio-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.2;transform:scale(.5)} }
.ax-bio-status {
  font-family: monospace; font-size: .65rem; font-weight: 700;
  background: rgba(255,255,255,.95); padding: 6px 14px; border-radius: 999px;
  color: #166534; letter-spacing: .1em;
  box-shadow: 0 4px 12px rgba(34,197,94,.2);
}

@media (max-width: 1024px) {
  .ax-ai-scene, .ax-bio-overlay, .ax-barrier-badge { display: none; }
}

/* ── CASOS DE ÉXITO ── */
.ax-section-cases { padding: 96px 32px; background: var(--surface-bg); position: relative; }
.ax-section-cases .ax-section-header { text-align: center; margin-bottom: 64px; }
.ax-section-cases .ax-section-title { font-size: 2.75rem; font-weight: 900; color: var(--text-dark); margin-bottom: 24px; display: inline-block; border-bottom: 4px solid var(--celeste); padding-bottom: 8px; }
.ax-section-cases .ax-section-lead { color: var(--text-muted); font-size: 1.25rem; max-width: 600px; margin: 0 auto; font-weight: 400; }
.ax-cases-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; }
.ax-case-card {
  border-radius: 24px; overflow: hidden;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4); transition: transform 0.4s, box-shadow 0.4s;
  border: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column;
}
.ax-case-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(124, 58, 237, 0.25), 0 0 0 1px rgba(0,159,230,0.2); }
.ax-case-img-wrap { position: relative; height: 260px; overflow: hidden; }
.ax-case-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.ax-case-card:hover .ax-case-img-wrap img { transform: scale(1.1); }
.ax-case-overlay {
  position: absolute; inset: 0; 
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 24px;
}
.ax-case-tag { background: var(--orange); color: var(--blanco); padding: 8px 16px; border-radius: 9999px; font-weight: 800; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; box-shadow: 0 5px 15px var(--orange-glow); }
.ax-case-info { padding: 40px 32px; flex-grow: 1; display: flex; flex-direction: column; }
.ax-case-name { font-size: 1.85rem; font-weight: 900; background: linear-gradient(to right, var(--celeste), #d2bbff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px; }
.ax-case-desc { color: var(--text-muted); font-size: 1.1rem; line-height: 1.7; margin-bottom: 24px; flex-grow: 1;}
.ax-case-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: var(--orange); text-decoration: none; transition: gap 0.3s, color 0.3s; font-size: 1.1rem; }
.ax-case-link:hover { gap: 16px; color: var(--cyan-bright); }

/* ── SOFTWARE SECTION ── */
.ax-section-software { padding: 96px 32px; background: linear-gradient(135deg, #0d2040 0%, #0a1628 100%); color: var(--blanco); position: relative; overflow: hidden; }
.ax-software-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 1024px) { .ax-software-inner { grid-template-columns: 1fr; } }
.ax-software-text { max-width: 550px; }
.ax-software-title { font-size: 2.75rem; font-weight: 900; color: var(--blanco); margin-bottom: 24px; display: inline-block; border-bottom: 4px solid var(--orange); padding-bottom: 8px; }
.ax-software-desc { font-size: 1.15rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 32px; }
.ax-software-features { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.ax-sf-item { display: flex; align-items: center; gap: 20px; font-size: 1.15rem; font-weight: 700; color: rgba(255,255,255,0.95); }
.ax-sf-icon {
  width: 48px; height: 48px; border-radius: 12px; background: rgba(56,182,255,0.15); border: 1px solid rgba(56,182,255,0.3);
  display: flex; align-items: center; justify-content: center; color: var(--celeste); font-weight: bold; box-shadow: 0 0 15px rgba(56,182,255,0.2);
}
.ax-software-visual { position: relative; }
.ax-sw-glow { position: absolute; inset: -40px; background: radial-gradient(circle, rgba(56,182,255,0.35) 0%, transparent 60%); z-index: 0; border-radius: 50%; opacity: 0.8; filter: blur(40px); animation: pulse-glow 4s infinite alternate; }
@keyframes pulse-glow { from { transform: scale(0.9); opacity: 0.5;} to { transform: scale(1.1); opacity: 0.9;} }
.ax-sw-showcase {
  position: relative; z-index: 10; width: 100%; 
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.ax-sw-card {
  position: relative; border-radius: 12px; overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.6), 0 0 0 1px rgba(56,182,255,0.2);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, filter 0.4s ease; cursor: pointer;
  background: var(--surface-bg); 
}
.ax-sw-card img { width: 100%; height: auto; display: block; object-fit: contain; transition: transform 0.4s ease; }

.ax-sw-card:nth-child(1) { grid-column: span 2; transform-origin: top center; }
.ax-sw-card:nth-child(2) { transform-origin: bottom left; }
.ax-sw-card:nth-child(3) { transform-origin: bottom right; }

.ax-sw-card:hover {
  transform: scale(1.6);
  z-index: 50;
  filter: brightness(1.1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 0 3px var(--celeste);
}
.ax-sw-card:hover img {
  transform: scale(1.02);
}
@media (max-width: 1024px) {
  .ax-sw-showcase { grid-template-columns: 1fr; }
  .ax-sw-card:nth-child(1) { grid-column: 1; transform-origin: center center; }
  .ax-sw-card:nth-child(2) { transform-origin: center center; }
  .ax-sw-card:nth-child(3) { transform-origin: center center; }
  .ax-sw-card:hover { transform: scale(1.1); z-index: 50; }
}
