/* Font Awesome font-display optimization */

/* Force font-display: swap en Font Awesome para reducir CLS y mejorar FCP */
        /* Esta técnica garantiza que el texto sea visible inmediatamente mientras cargan las fuentes */
        @font-face {
            font-family: 'Font Awesome 6 Free';
            font-display: swap;
            font-weight: 400;
            font-style: normal;
            src: local('Font Awesome 6 Free');
        }
        @font-face {
            font-family: 'Font Awesome 6 Free';
            font-display: swap;
            font-weight: 900;
            font-style: normal;
            src: local('Font Awesome 6 Free');
        }
        @font-face {
            font-family: 'Font Awesome 6 Brands';
            font-display: swap;
            font-weight: 400;
            font-style: normal;
            src: local('Font Awesome 6 Brands');
        }
        /* Garantiza visibilidad inmediata de texto con iconos */
        .fa, .fas, .far, .fab, .fa-brands, .fa-solid {
            font-display: swap !important;
        }
