/* Font Awesome subset local usado no front publico do calendario. */
@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("/assets/fonts/fontawesome/fa-solid-900.woff2") format("woff2");
}

@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/assets/fonts/fontawesome/fa-regular-400.woff2") format("woff2");
}

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

.fa-solid,
.fas,
.fa-regular,
.far,
.fa-brands,
.fab {
    -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;
}

.fa-solid,
.fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.fa-regular,
.far {
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
}

.fa-brands,
.fab {
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
}

.fa-whatsapp::before { content: "\f232"; }
.fa-instagram::before { content: "\f16d"; }
.fa-facebook-f::before { content: "\f39e"; }
.fa-tiktok::before { content: "\e07b"; }
.fa-calendar-days::before { content: "\f073"; }
.fa-calendar-check::before { content: "\f274"; }
.fa-cart-shopping::before { content: "\f07a"; }
.fa-cart-plus::before { content: "\f217"; }
.fa-user::before { content: "\f007"; }
.fa-user-check::before { content: "\f4fc"; }
.fa-user-lock::before { content: "\f502"; }
.fa-location-dot::before { content: "\f3c5"; }
.fa-map-location-dot::before { content: "\f5a0"; }
.fa-building::before { content: "\f1ad"; }
.fa-xmark::before { content: "\f00d"; }
.fa-arrow-right::before { content: "\f061"; }
.fa-arrow-down::before { content: "\f063"; }
.fa-arrow-trend-down::before { content: "\e097"; }
.fa-ticket::before { content: "\f145"; }
.fa-water::before { content: "\f773"; }
.fa-clock::before { content: "\f017"; }
.fa-circle-exclamation::before { content: "\f06a"; }
.fa-circle-info::before { content: "\f05a"; }
.fa-circle-notch::before { content: "\f1ce"; }
.fa-fire::before { content: "\f06d"; }
.fa-star::before { content: "\f005"; }
.fa-table-cells-large::before { content: "\f009"; }
.fa-person-swimming::before { content: "\f5c4"; }
.fa-rotate-right::before { content: "\f2f9"; }
.fa-box-open::before { content: "\f49e"; }
.fa-gift::before { content: "\f06b"; }
.fa-ban::before { content: "\f05e"; }
.fa-check::before { content: "\f00c"; }
.fa-utensils::before { content: "\f2e7"; }
.fa-umbrella-beach::before { content: "\f5ca"; }

.fa-spin {
    animation: fa-spin 2s infinite linear;
}

.fa-beat {
    animation: fa-beat 1s infinite;
}

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

@keyframes fa-beat {
    0%, 90% { transform: scale(1); }
    45% { transform: scale(1.18); }
}
