/* Font Display para Font Awesome - Otimização de Performance */
@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-display: swap;
}

@font-face {
    font-family: 'Font Awesome 6 Free';
    font-display: swap;
}

@font-face {
    font-family: 'Font Awesome 6 Solid';
    font-display: swap;
}

/* Otimização de animações para melhor performance */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Otimização de renderização */
img {
    content-visibility: auto;
}

/* Prevenção de layout shift */
.loading-logo,
.logo-img {
    aspect-ratio: 200 / 60;
}

