#maio{

    margin-top: 50px;
}


#accoes {
    height: 10%;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;

}

#accoes>.menu-item {
    height: 40px;
    width: 100px;
    color: #fff;
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#accoes>.menu-item:hover {
    background-color: #333;
    color: #fff;
    border-color: #555;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#accoes>.menu-item:focus {
    outline: 2px solid #007bff;
    outline-offset: 3px;
}


section#parceiros {
    background-color: #0059C4;
    padding: 20px;
    color: #fff;
}

#parceiros .logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
    justify-items: center;
}

#parceiros .logos img {
    max-width: 100px;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* deixa a logo branca, se for preta */
}




#dados {
    height: 500px;
    padding: 20px;
    background-color: #f5f5f5;

    gap: 20px;
    display: flex;
    flex-direction: column;

    margin-bottom: 15vh;
}




.resultados{
    
    /* SCROOL LATERAL */
    overflow-x: auto;
    white-space: nowrap;
}

.resultados::-webkit-scrollbar {
    display: none;
}

.bloco {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: #ffffff;
    border-radius: 12px;
    padding: 17px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
    color: #333;

    margin: 5px;
    display: inline-block;
}

.bloco:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.bloco h3 {
    margin-top: 0;
    font-size: 18px;
    color: #0059C4;
}

.bloco p {
    margin: 6px 0;
    font-size: 14px;
}




.opcao {
    height: 100%;
    width: 20%;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}