﻿/* ===========================
   BOTÃO BASE
=========================== */

.btn {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #FFF;
    font-size: 1.1rem;
    font-weight: 600;
    transition: .2s ease;
}

    .btn:hover {
        transform: translateY(-2px);
        filter: brightness(.95);
    }

    .btn:active {
        transform: translateY(0);
    }

    .btn:disabled {
        opacity: .55;
        cursor: not-allowed;
    }

/* Azul */

.btn-primary {
    background: #31548D;
}

/* Verde */

.btn-success {
    background: #2E8B57;
}

/* Vermelho */

.btn-danger {
    background: #D32F2F;
}

/* Laranja */

.btn-warning {
    background: #F59E0B;
    color: #FFF;
}

/* Cinza */

.btn-secondary {
    background: #6B7280;
}