/* ---------- ASX Academy – Overrides globales ---------- */

/* Ajustes generales */
body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

/* Hero */
.hero {
  background: url('../img/hero_ai.png') center / cover no-repeat;
  min-height: 90vh;
  color: #fff;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.hero-content {
  position: relative;
  z-index: 1;
}

/* WhatsApp flotante */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
.floating-whatsapp img {
  width: 56px;
  height: 56px;
}

/* Tarjetas del dashboard */
.card .card-title {
  line-height: 1.2;
}

/* Barra de progreso con animación suave */
.progress-bar {
  transition: width 0.6s ease;
}

/* Ocultar template tags en navegadores antiguos */
template { display:none; }