/*
 Theme Name:   Bootscore Child
 Description:  Bootscore Child Theme
 Author:       Bootscore
 Author URI:   https://bootscore.me
 Template:     bootscore
 Version:      6.0.0
 Requires at least: 5.0
 Tested up to: 6.6
 Requires PHP: 7.4
 License: MIT License
 License URI: https://github.com/bootscore/bootscore-child/blob/main/LICENSE
 Text Domain:  bootscore
*/

/* 
All style editing is done via /assets/scss/_bootscore_custom.scss
*/


/* Estilo geral do menu */
.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px; /* Espaçamento entre os itens */
}

.menu li {
    position: relative;
    font-family: Arial, sans-serif;
    font-size: 16px;
}

.menu a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px; /* Espaçamento entre o ícone e o texto */
}

/* Ícones específicos para cada item */
.menu .inicio a::before {
    content: "\f015"; /* Ícone de casa */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.menu .vagas a::before {
    content: "\f0b1"; /* Ícone de vagas/trabalho */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.menu .anunciar a::before {
    content: "\f054"; /* Ícone de anúncio/seta para frente */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.menu .contato a::before {
    content: "\f0e0"; /* Ícone de envelope (contato) */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}