/* =========================
   BOTÃO GRADIENTE PADRÃO
========================= */

.btn-gradient {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 28px;
    border-radius: 8px;

    font-size: 15px;
    font-weight: 600;
    color: #0b0f1c;
    text-decoration: none;

    background: linear-gradient(135deg, #2bff88 0%, #7b5cff 100%);
    box-shadow:0 12px 30px rgba(43, 255, 136, 0.35);

    transition: all 0.3s ease;
    cursor: pointer;
}

/* Ícone */
.btn-gradient .btn-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
}

/* Hover */
.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow:
        0 18px 45px rgba(123, 92, 255, 0.45);
}

/* Active (clique) */
.btn-gradient:active {
    transform: translateY(0);
    box-shadow:
        0 10px 25px rgba(43, 255, 136, 0.25);
}