/**
 * AXESSAR — Estilos Globales
 * Colorimetría: Celeste, Naranja, Blanco
 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1');

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

:root {
  /* Colorimetria Neon Bastion */
  --celeste: #009fe6; /* Cyan / Secondary */
  --celeste-claro: rgba(0, 159, 230, 0.15); 
  --naranja: #7c3aed; /* Violeta / Primary (usamos el alias naranja para minimizar reescribir HTML) */
  --blanco: #ffffff;

  --morado: #d2bbff;

  /* Textos y Superficies para Neon Bastion */
  --text-dark: #e3e0f8; /* Texto claro predominante */
  --text-muted: #ccc3d8; /* Gris platinado claro */
  --surface-bg: #0c0c1d; /* Fondo void/Deep navy */
  --surface-card: #1a1a2b; /* surface_container_low para cards */
  
  /* Brand accent colors (reales) */
  --orange: #ff914d;           /* Naranja de marca */
  --orange-glow: rgba(255, 145, 77, 0.35);
  --cyan-bright: #38d9ff;      /* Cyan vibrante de marca */
  --cyan-glow: rgba(56, 217, 255, 0.25);
  
  --ax-nav-h: 80px;
  --font-inter: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; font-family: var(--font-inter); }

body {
  background-color: var(--surface-bg);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ── NAV / TOPBAR ── */
.ax-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--ax-nav-h);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 32px 0 rgba(124, 58, 237, 0.1);
}
.ax-nav.scrolled {
  background: rgba(10, 10, 26, 0.85); /* Deep space dark con alpha */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Ghost border */
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.15);
}

.ax-nav__inner {
  width: 100%; max-width: 1280px; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}

.ax-logo { text-decoration: none; display: flex; align-items: center; }
.ax-logo__text {
  font-size: 1.75rem; font-weight: 900; letter-spacing: -0.05em;
  background: linear-gradient(to right, var(--celeste), var(--cyan-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ax-nav__links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.ax-nav__links a {
  font-size: 1rem; font-weight: 600;
  color: var(--text-dark); text-decoration: none;
  transition: color 0.3s;
}
.ax-nav__links a.active {
  color: var(--orange); border-bottom: 3px solid var(--orange); padding-bottom: 4px;
}
.ax-nav__links a:hover:not(.active) { color: var(--cyan-bright); }

.ax-btn-nav {
  background: linear-gradient(135deg, var(--orange) 0%, #ff6b35 100%);
  color: var(--blanco);
  padding: 10px 28px; border-radius: 9999px; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px var(--orange-glow);
}
.ax-btn-nav:hover { background: var(--celeste); box-shadow: 0 4px 20px var(--cyan-glow); transform: translateY(-2px); }

/* ── FOOTER ── */
.ax-footer {
  background: var(--surface-bg);
  border-top: 1px solid rgba(255, 145, 77, 0.2);
  box-shadow: 0 -4px 40px rgba(255, 145, 77, 0.08);
  padding: 80px 32px 40px;
}
.ax-footer__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 64px;
  margin-bottom: 80px;
}
@media (max-width: 1024px) { .ax-footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .ax-footer__inner { grid-template-columns: 1fr; gap: 40px; } }

.ax-footer__logo-text {
  display: block; font-size: 1.75rem; font-weight: 900; color: var(--celeste);
  margin-bottom: 24px;
}
.ax-footer__desc { color: var(--text-muted); font-size: 1rem; line-height: 1.6; }

.ax-footer__heading {
  color: var(--orange); font-weight: 800; font-size: 1.125rem; margin-bottom: 24px;
  text-transform: uppercase;
}
.ax-footer__list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.ax-footer__list a, .ax-footer__list li {
  color: var(--text-dark); text-decoration: none; font-size: 1rem; transition: color 0.3s;
  display: flex; align-items: center; gap: 12px;
}
.ax-footer__list a:hover { color: var(--orange); }
.ax-footer__list .material-symbols-outlined { color: var(--celeste); }

.ax-footer__social { display: flex; gap: 16px; }
.ax-footer__social a {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 145, 77, 0.1); color: var(--orange);
  border: 1px solid rgba(255, 145, 77, 0.2);
  text-decoration: none; transition: all 0.3s;
}
.ax-footer__social a:hover { background: var(--orange); color: var(--blanco); transform: scale(1.1); box-shadow: 0 0 20px var(--orange-glow); }

.ax-footer__bottom {
  max-width: 1280px; margin: 0 auto; padding-top: 40px; border-top: 1px solid rgba(56, 182, 255, 0.2);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px;
}
.ax-footer__copy { color: var(--text-muted); font-size: 0.875rem; }
.ax-footer__legal { display: flex; gap: 32px; }
.ax-footer__legal a { color: var(--cyan-bright); text-decoration: none; font-size: 0.875rem; font-weight: 600; }
.ax-footer__legal a:hover { color: var(--orange); }

/* UTILIDADES BASICAS */
.glass-panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .ax-nav__inner { padding: 0 20px; }
  .ax-nav__links { display: none; }
}
