/* ============================================
   BASE — reset, variables y utilidades globales
   ============================================ */

:root {
  /* Colores (paleta original) */
  --bg: #0f172a;
  --bg2: #1e293b;
  --bg3: #334155;
  --blue: #3b82f6;
  --cyan: #06b6d4;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --card: #1e293b;
  --border: #334155;
  --accent: #f59e0b;

  /* Radios */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 20px;

  /* Tipografía */
  --font-base: 'Segoe UI', Arial, sans-serif;

  /* Gradiente de marca (azul → cian) */
  --gradient-brand: linear-gradient(90deg, var(--blue), var(--cyan));
  --gradient-brand-135: linear-gradient(135deg, var(--blue), var(--cyan));
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-base);
}

/* ----- Botones genéricos (usados en hero y otros) ----- */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-md);
  background: var(--gradient-brand);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.2s;
}
.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--cyan);
  color: var(--cyan);
  margin-left: 1rem;
}

/* ----- Secciones tabuladas ----- */
.section {
  display: none;
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.section.active {
  display: block;
}

/* ----- Títulos de sección reutilizables ----- */
.sec-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.sec-title .accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec-sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* ----- Pista SEO oculta ----- */
.seo-keywords {
  display: none;
}
