.shortcut-button {
    color: #fff !important;
    background: #112F4E;
    width: 100%;
    max-width: 280px;
    height: 80px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 16px !important;
    font-weight: 600;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(17, 47, 78, 0.25);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-decoration: none;
    border: none;
}

.shortcut-button:hover,
.shortcut-button:focus {
    background: #1a4a72;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(17, 47, 78, 0.35);
}

.shortcut-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(17, 47, 78, 0.2);
}

.shortcut-button img.shortcut-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    filter: brightness(0) invert(1);
}

.shortcut-button span {
    margin-top: -2px;
}

#botoes_atalho {
    margin-top: 0;
    position: relative;
    z-index: 15;
    padding-bottom: 40px;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .shortcut-button {
        width: 75px;
        height: 75px;
        border-radius: 50%;
        max-width: none;
        padding: 0;
    }

    .shortcut-button span {
        display: none !important;
    }

    .shortcut-button img.shortcut-icon {
        margin: 0;
        width: 28px;
        height: 28px;
    }

    #botoes_atalho {
        margin-bottom: 30px;
        margin-top: 0;
    }
}