/* Patch TikTok icon without replacing existing Font Awesome set.
   We load a newer brands font that contains the TikTok glyph (codepoint \e07b in FA5+).
   Security: served from same origin; no CSP changes required. */
@font-face {
    font-family: 'FA5BrandsNew';
    /* Path corregido al archivo existente fa-brands-400.woff2 */
    src: url('../fonts/fa-brands-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
/* Override only the TikTok icon; keep class name consistent */
.fab.fa-tiktok:before, .fa-tiktok:before {
    font-family: 'FA5BrandsNew', 'Font Awesome 5 Brands';
    content: '\e07b';
}
/* If alignment tweak needed later, add a .fa-tiktok rule here. */
