/* =========================
   BOT�O BASE
========================= */
.ui-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 16px;
    border-radius: 6px;

    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;

    border: none;
    cursor: pointer;

    transition: all 0.25s ease;
}

/* =========================
   VARIA��ES DE COR
========================= */
.ui-button--primary {
    background-color: #2fa39a;
    color: white;
}

.ui-button--primary:hover {
    background-color: #248a82;
    transform: translateY(-2px);
}

.ui-button--secondary {
    background-color: #e5e7eb;
    color: #333;
}

/* =========================
   TAMANHOS
========================= */
.ui-button--sm {
    padding: 6px 12px;
    font-size: 0.85rem;
}

.ui-button--lg {
    padding: 14px 22px;
    font-size: 1.1rem;
}

/* =========================
   COMPORTAMENTOS
========================= */

.ui-button--block {
    width: 100%;
}

.ui-button--nowrap {
    white-space: nowrap;
}

.ui-button--limit {
    max-width: 280px;
    text-align: center;
}


@media (max-width: 768px) {
    .ui-button--lg {
        padding: 10px 17px;
        font-size: 1rem;
    }
}