/* Font Awesome Icons - Local CSS */
/* Usando símbolos Unicode directamente sin fuentes externas */

.fa, .fas, .far, .fal, .fab {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: Arial, sans-serif;
}

/* Iconos específicos usando símbolos Unicode simples */
.fa-lightbulb:before { content: "💡"; }
.fa-cogs:before { content: "⚙️"; }
.fa-rocket:before { content: "🚀"; }
.fa-headset:before { content: "🎧"; }
.fa-search:before { content: "🔍"; }
.fa-chart-line:before { content: "📈"; }
.fa-users:before { content: "👥"; }
.fa-shield-alt:before { content: "🛡️"; }
.fa-mobile-alt:before { content: "📱"; }
.fa-laptop-code:before { content: "💻"; }
.fa-palette:before { content: "🎨"; }
.fa-bullhorn:before { content: "📢"; }
.fa-analytics:before { content: "📊"; }
.fa-code:before { content: "💻"; }
.fa-paint-brush:before { content: "🖌️"; }
.fa-megaphone:before { content: "📣"; }

/* Fallback para iconos no definidos */
.fa:before {
    content: "⭐"; /* icono genérico */
}

/* Estilos adicionales */
.fa-2x { font-size: 2em; }
.fa-3x { font-size: 3em; }
.fa-lg { font-size: 1.33333em; }

/* Colores personalizados */
.text-primary { color: #007bff; }
.text-success { color: #28a745; }
.text-info { color: #17a2b8; }
.text-warning { color: #ffc107; }
.text-danger { color: #dc3545; }