/*!
 * Font Awesome Free 6.5.2 — SUBSET mantido pelo tema DogZilla
 * License - https://fontawesome.com/license/free
 * (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2024 Fonticons, Inc.
 *
 * Este arquivo NÃO é do pacote original — foi montado a partir do all.min.css
 * e contém apenas os 9 ícones usados no site. Se você reinstalar o Font Awesome,
 * não sobrescreva este arquivo.
 *
 * ---------------------------------------------------------------------------
 * PARA ADICIONAR UM ÍCONE
 * ---------------------------------------------------------------------------
 * 1. Pegue o codepoint em https://fontawesome.com/icons (aba "Unicode"), ou
 *    extraia do all.min.css original (está no backup do tema):
 *
 *        grep -oE '\.fa-NOME-DO-ICONE:before\{content:"[^"]+"\}' all.min.css
 *
 * 2. Acrescente a linha na seção Solid ou Brands abaixo, em ordem alfabética.
 *
 * ATENÇÃO: ícones não vivem só nos arquivos do tema — podem estar no conteúdo
 * gravado no banco (formulários do Contact Form 7, campos ACF, editor). Foi o
 * caso do fa-plus. Antes de mexer neste arquivo, confira o banco também:
 *
 *     SELECT ID, post_title FROM wp_posts       WHERE post_content LIKE '%fa-%';
 *     SELECT post_id, meta_key FROM wp_postmeta WHERE meta_value  LIKE '%fa-%';
 *     SELECT option_name FROM wp_options        WHERE option_value LIKE '%fa-%';
 *
 * Só as famílias `fa-solid` e `fa-brands` estão disponíveis. Para usar
 * `fa-regular` é preciso acrescentar o @font-face do fa-regular-400 e as
 * regras de família/peso correspondentes (o arquivo de fonte está no backup).
 * ---------------------------------------------------------------------------
 */

/*********************************************
** Fontes
*********************************************/

@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"),
	     url(../webfonts/fa-solid-900.ttf) format("truetype");
}

@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"),
	     url(../webfonts/fa-brands-400.ttf) format("truetype");
}

/*********************************************
** Base
*********************************************/

.fa,
.fas,
.fa-solid,
.fab,
.fa-brands {
	-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,
.fas,
.fa-solid {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
}

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

/*********************************************
** Ícones - Solid
*********************************************/

.fa-bars-staggered:before { content: "\f550"; }
.fa-chevron-down:before   { content: "\f078"; }
.fa-chevron-left:before   { content: "\f053"; }
.fa-chevron-right:before  { content: "\f054"; }
.fa-plus:before           { content: "\2b";   } /* usado no formulário do CF7 "Trabalhe Conosco" */
.fa-xmark:before          { content: "\f00d"; }

/*********************************************
** Ícones - Brands
*********************************************/

.fa-facebook:before  { content: "\f09a"; }
.fa-instagram:before { content: "\f16d"; }
.fa-linkedin:before  { content: "\f08c"; }
.fa-youtube:before   { content: "\f167"; }
