#fly-out-menu {
    position: fixed;
    top: 120px;
    left: 52%;
    transform: translate(-50%, -20px);
    /* inicia mais acima */
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease, top 0.1s ease;
    z-index: 1000;

    background-color: white;
    padding: 1rem 2rem 2rem;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.13);

    max-height: 70vh;
    overflow-y: auto;
}

#fly-out-menu.open {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: all;
}

.fly-out-content * {
    list-style: none;

    font-weight: 400;
}

.fly-out-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
}

.fly-out-content h2 {
    color: rgba(0, 0, 0, 0.582);

    font-size: 0.95rem;
}

.fly-yellow-line {
    height: 2px;
    width: 100%;
    background-color: #FF6A14;

    margin: 8px 0;
}

.fly-out-1 {
    height: 100%;
    flex: 1;
    /* width: 100%; */
    display: flex;
    align-items: flex-start;
    justify-content: space-around;

    gap: 64px;
}

.fly-out-content .fly-out-1 ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fly-out-1 li {
    cursor: pointer;
}

#fly-out-menu::-webkit-scrollbar {
    width: 4px;
}

#fly-out-menu::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 16px;
}

#fly-out-menu::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.ul-inside-ul {
    margin: 4px;
    padding-left: 1rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.3s ease-in;
}

.ul-inside-ul.open {
    max-height: 500px;
    opacity: 1;
}

.ul-inside-ul a{
    color: black;
    text-decoration: none;
}

.most-searched ul li a{
    color: black;
    text-decoration: none;
}

/* .fly-out-2-content {
    flex: 1;
    justify-self: flex-start;
}

.fly-out-ul2 {
    column-width: 180px;
    column-gap: 16px;
    column-count: 3;
    max-width: 100%;

    list-style: none;
    padding: 0;
    margin: 0;
}

.fly-out-ul2 li {
    break-inside: avoid;
    margin-bottom: 8px;
}

.fly-out-ul2 li a {
    
    color: black;
    text-decoration: none;
} */