/* MENU */

.estrutura_menu {
    display: flex;
    width: 100%;
    padding: 3rem 0 5rem 0;
}

.estrutura_menu ul {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 3rem;
    padding: 1rem 3rem;
    border-radius: 42px;
    box-shadow: 0 4px 8px 3px rgba(0, 0, 0, .149), 0 4px 4px 0 rgba(0, 0, 0, .251);
}

.estrutura_menu ul li {
    list-style: none;
}

.estrutura_menu ul a {
    text-decoration: none;
    color: inherit;
}

.estrutura_menu ul li p {
    font-family: var(--font-sans);
    font-size: var(--font-size-p);
    line-height: var(--line-1-5);
    font-weight: var(--font-weight-bolder);
    color: #666;
}

.estrutura_menu ul li p:hover {
    color: var(--cor-kpmgblue);
    cursor: pointer;
}

.estrutura_menu span {
    display: block;
}


/* mobile */
@media only screen and (max-width: 640px) {
    .estrutura_menu {
        display: none;
    }
}