/* ////    MENU FLUTUANTE    //// */
header.main_header
{
    width: 100%; height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #ffffff8b;
    backdrop-filter: blur(5px);
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: .5s;
}

header.main_header.menu_active
{
    background-color: #F2F6FC;
    box-shadow: -5px 5px 10px rgba(94, 94, 94, 0.131);
}

header.main_header .logo
{
    display: flex;
    align-items: center;
}

header.main_header .logo img
{
    width: 150px;
}

header.main_header nav ul
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    font-size: 10pt;
}

header.main_header nav ul li
{
    margin: 0 2px;
}

header.main_header nav ul li.mobile
{
    display: none;
}

header.main_header nav ul li a
{
    color: black;
    text-decoration: none;
    padding: 25px;
    transition: .1s;
}

header.main_header nav ul li a:hover
{
    color: #00582D;
}

header.main_header nav ul li a.entre_em_contato
{
    background-color: #00582D;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    transition: .1s;
    font-weight: 300;
}

