/* assets/css/icons-lite.css */

/* 1. DEFINICIÓN DE FUENTES (Rutas relativas al archivo CSS) */
@font-face {
  font-family: 'FaLite';
  /* Sube un nivel (..) entra a webfonts y busca el archivo */
  src: url('../webfonts/fa-brands-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'FaSolid';
  src: url('../webfonts/fa-solid-900.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
}

/* 2. CLASES BASE */
.fa, .fas, .fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fab { font-family: 'FaLite'; }
.fas, .fa { font-family: 'FaSolid'; font-weight: 900; }

/* 3. ANIMACIÓN DE GIRO (Faltaba esto para fa-spin) */
.fa-spin {
  animation: fa-spin 2s infinite linear;
}

@keyframes fa-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 4. MAPA DE CARACTERES (Agregados los que faltaban) */
/* Redes Sociales */
.fa-facebook-f:before { content: "\f39e"; }
.fa-instagram:before { content: "\f16d"; }
.fa-whatsapp:before { content: "\f232"; }
.fa-linkedin-in:before { content: "\f0e1"; }
.fa-tiktok:before { content: "\e07b"; }

/* Interfaz General */
.fa-envelope:before { content: "\f0e0"; }
.fa-phone:before { content: "\f095"; }
.fa-map-marker-alt:before { content: "\f3c5"; }
.fa-clock:before { content: "\f017"; }
.fa-bars:before { content: "\f0c9"; }
.fa-times:before { content: "\f00d"; }
.fa-chevron-right:before { content: "\f054"; }
.fa-chevron-left:before { content: "\f053"; }
.fa-angle-right:before { content: "\f105"; }
.fa-check-circle:before { content: "\f058"; }
.fa-eye:before { content: "\f06e"; }
.fa-folder-open:before { content: "\f07c"; }

/* AGREGADOS PARA CORREGIR TUS ERRORES */
.fa-circle-notch:before { content: "\f1ce"; } /* Icono de carga */
.fa-shield-alt:before { content: "\f3ed"; }   /* Icono de seguridad */
.fa-balance-scale:before { content: "\f24e"; } /* Icono legal */
.fa-building:before { content: "\f1ad"; } /* Icono empresa */

/* --- NUEVOS ICONOS AGREGADOS (GUIA FLOW) --- */
.fa-arrow-left:before { content: "\f060"; }
.fa-user:before { content: "\f007"; }
.fa-briefcase:before { content: "\f0b1"; }
.fa-calendar-check:before { content: "\f274"; }
.fa-sign-in-alt:before { content: "\f2f6"; }
.fa-key:before { content: "\f084"; }