/*======================================
    CONTENEDOR DE BOTONES
======================================*/

.botones {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}


/*======================================
    BOTÓN GENERAL
======================================*/

button,
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all .25s ease;
}


/*======================================
    BOTÓN PRINCIPAL
======================================*/

.btn-calcular,
.btn-primary {
    background: #2563eb;
    color: #fff;
}

.btn-calcular:hover,
.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, .25);
}


/*======================================
    BOTÓN SECUNDARIO
======================================*/

.btn-limpiar,
.btn-secondary {
    background: #e5e7eb;
    color: #333;
}

.btn-limpiar:hover,
.btn-secondary:hover {
    background: #d1d5db;
    transform: translateY(-2px);
}


/*======================================
    BOTÓN VOLVER
======================================*/

.volver {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.volver:hover {
    color: #1d4ed8;
    transform: translateX(-4px);
}


/*======================================
    BOTÓN TARJETAS
======================================*/

.card .btn {
    margin-top: 25px;
    width: 100%;
    background: #2563eb;
    color: white;
    border-radius: 10px;
}

.card:hover .btn {
    background: #1d4ed8;
}


/*======================================
    BOTONES DESHABILITADOS
======================================*/

button:disabled,
.btn:disabled {
    background: #cfcfcf;
    color: #888;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}


/*======================================
    RESPONSIVE
======================================*/

@media (max-width:768px) {
    .botones {
        flex-direction: column;
    }
    .botones button {
        width: 100%;
    }
    .card .btn {
        width: 100%;
    }
}