/* HEADER TOP */
.fa-header-top{

    display:flex;
    align-items:center;
    justify-content:space-between;

    max-width:1200px;
    margin:auto;

    padding:14px 20px;

}

.fa-logo img{
    height:40px;
}

.fa-actions{

    display:flex;
    align-items:center;
    gap:20px;

}

.fa-btn-anunciar{

    background:#ff6b00;
    color:#fff;

    padding:10px 16px;

    border-radius:6px;

    text-decoration:none;
    font-weight:600;

}

.fa-btn-login{

    color:#333;
    text-decoration:none;
}

/* HEADER SEARCH */

.fa-header-search{

    background:#f0eff0;
    border-top:1px solid #e5e5e5;
    border-bottom:1px solid #e5e5e5;

}

.fa-search-container{

    max-width:1200px;
    margin:auto;
    padding:20px;

}

.fa-search-form{

    display:flex;
    align-items:flex-end;
    gap:15px;
    flex-wrap:wrap;

}

.fa-field{

    display:flex;
    flex-direction:column;
}

.fa-field label{

    font-size:12px;
    color:#666;
    margin-bottom:4px;

}

.fa-field select,
.fa-field input{

    min-width:140px;

    padding:9px 10px;

    border:1px solid #ccc;
    border-radius:4px;

    font-size:14px;

}

.fa-search-button button{

    background:#ff6b00;

    color:#fff;

    border:none;

    padding:11px 20px;

    border-radius:5px;

    font-weight:600;

    cursor:pointer;

}


/* HEADER MENU */

.fa-header-menu{

    background:#ffffff;
    border-bottom:1px solid #e5e5e5;

}

.fa-menu-container{

    max-width:1200px;
    margin:auto;

    padding:12px 20px;

    display:flex;
    gap:25px;

}

.fa-menu-container a{

    text-decoration:none;

    color:#333;

    font-weight:500;

}

