/**
 * Font Awesome Local - Carregado do tema (não depende de CDN externo)
 */

/* Font Awesome Solid */
@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url("../webfonts/fa-solid-900.woff2") format("woff2");
}

/* Font Awesome Regular */
@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("../webfonts/fa-regular-400.woff2") format("woff2");
}

/* Font Awesome Brands */
@font-face {
    font-family: "Font Awesome 6 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("../webfonts/fa-brands-400.woff2") format("woff2");
}

/* Base Styles */
.fa, .fas, .far, .fal, .fat, .fab {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
}

/* Solid Icons */
.fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Regular Icons */
.far {
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
}

/* Brand Icons */
.fab {
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
}

/* Icon Definitions - Principais ícones usados no tema */
.fa-play-circle:before { content: "\f144"; }
.fa-whatsapp:before { content: "\f232"; }
.fa-check-circle:before { content: "\f058"; }
.fa-shield-alt:before { content: "\f3ed"; }
.fa-headset:before { content: "\f590"; }
.fa-tv:before { content: "\f26c"; }
.fa-users:before { content: "\f0c0"; }
.fa-star:before { content: "\f005"; }
.fa-shopping-cart:before { content: "\f07a"; }
.fa-shopping-bag:before { content: "\f290"; }
.fa-arrow-right:before { content: "\f061"; }
.fa-bolt:before { content: "\f0e7"; }
.fa-film:before { content: "\f008"; }
.fa-mobile-alt:before { content: "\f3cd"; }
.fa-headphones-alt:before { content: "\f58f"; }
.fa-tags:before { content: "\f02c"; }
.fa-phone:before { content: "\f095"; }
.fa-envelope:before { content: "\f0e0"; }
.fa-facebook-f:before { content: "\f39e"; }
.fa-instagram:before { content: "\f16d"; }
.fa-twitter:before { content: "\f099"; }
.fa-youtube:before { content: "\f167"; }
.fa-arrow-up:before { content: "\f062"; }
.fa-bars:before { content: "\f0c9"; }
.fa-times:before { content: "\f00d"; }
.fa-eye:before { content: "\f06e"; }
.fa-lock:before { content: "\f023"; }
.fa-shipping-fast:before { content: "\f48b"; }
.fa-undo:before { content: "\f0e2"; }
.fa-calendar:before { content: "\f133"; }
.fa-user:before { content: "\f007"; }
.fa-folder:before { content: "\f07b"; }
.fa-spinner:before { content: "\f110"; }
.fa-check:before { content: "\f00c"; }
.fa-arrow-left:before { content: "\f060"; }
.fa-box-open:before { content: "\f49e"; }
.fa-fire:before { content: "\f06d"; }
.fa-credit-card:before { content: "\f09d"; }

/* Spinner Animation */
.fa-spinner {
    animation: fa-spin 1s infinite linear;
}

@keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Fixed Width Icons */
.fa-fw {
    text-align: center;
    width: 1.25em;
}

/* Sizes */
.fa-xs {
    font-size: 0.75em;
}

.fa-sm {
    font-size: 0.875em;
}

.fa-lg {
    font-size: 1.25em;
    line-height: 0.05em;
    vertical-align: -0.075em;
}

.fa-2x {
    font-size: 2em;
}

.fa-3x {
    font-size: 3em;
}

.fa-4x {
    font-size: 4em;
}

.fa-5x {
    font-size: 5em;
}

