/* Estilos para o botão e o dropdown */
@media (max-width: 1279px) {
    .dropdown-button, .dropdown-content {
        width: 80%;
    }
}

@media (min-width: 1280px) {
    .dropdown-button, .dropdown-content {
        width: 50%;
    }
}

.dropdown {
    display: flex;
    justify-content: center;
}

.dropdown-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1351b4;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 20px;
}

.dropdown-button img {
    width: 15px;
    margin-left: 10px;
}

.dropdown-content {
    margin-top: 40px;
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
}

.dropdown-content a {
    color: black;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #1351b42f;
    border-radius: 5px;
}
