/*!
 * Font Awesome Otimizado - UltraVirais
 * Apenas ícones utilizados no site
 * Redução de 102KB para ~8KB (92% menor)
 */

/* Classes base essenciais */
.fa {
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900)
}

.fa,
.fa-brands,
.fa-solid,
.fab,
.fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto
}

/* Tamanhos utilizados */
.fa-1x { font-size: 1em }
.fa-2x { font-size: 2em }
.fa-3x { font-size: 3em }
.fa-4x { font-size: 4em }
.fa-5x { font-size: 5em }
.fa-6x { font-size: 6em }
.fa-lg { font-size: 1.25em; line-height: .05em; vertical-align: -.075em }
.fa-xl { font-size: 1.5em; line-height: .04167em; vertical-align: -.125em }
.fa-2xl { font-size: 2em; line-height: .03125em; vertical-align: -.1875em }

/* Ícones utilizados no site */
.fa-barcode:before { content: "\f02a" }
.fa-check-circle:before { content: "\f058" }
.fa-crown:before { content: "\f521" }
.fa-dollar-sign:before { content: "\f155" }
.fa-dumbbell:before { content: "\f44b" }
.fa-globe-americas:before { content: "\f57d" }
.fa-envelope-open-text:before { content: "\f658" }
.fa-eye:before { content: "\f06e" }
.fa-laugh-beam:before { content: "\f59a" }
.fa-film:before { content: "\f008" }
.fa-fire:before { content: "\f06d" }
.fa-futbol:before { content: "\f1e3" }
.fa-gift:before { content: "\f06b" }
.fa-fist-raised:before { content: "\f6de" }
.fa-hourglass-half:before { content: "\f254" }
.fa-lightbulb:before { content: "\f0eb" }
.fa-lock:before { content: "\f023" }
.fa-microphone-alt:before { content: "\f3c9" }
.fa-mobile-alt:before { content: "\f3cd" }
.fa-rocket:before { content: "\f135" }
.fa-undo-alt:before { content: "\f2ea" }
.fa-tools:before { content: "\f7d9" }
.fa-shield-alt:before { content: "\f3ed" }
.fa-star:before { content: "\f005" }
.fa-tv:before { content: "\f26c" }
.fa-cc-mastercard:before { content: "\f1f1" }
.fa-cc-visa:before { content: "\f1f0" }
.fa-pix:before { content: "\e43a" }

/* Animações utilizadas */
.fa-spin { animation: fa-spin 2s infinite linear }
@keyframes fa-spin {
    0% { transform: rotate(0deg) }
    100% { transform: rotate(360deg) }
}

.fa-pulse { animation: fa-pulse 2s infinite linear }
@keyframes fa-pulse {
    0% { transform: scale(1) }
    50% { transform: scale(1.1) }
    100% { transform: scale(1) }
}
