/* ==========================================================
   CONFIGURACIÓN GENERAL
   ========================================================== */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;

    min-height: 100%;
}

body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: #f4f6f8;

    color: #222;
}


/* ==========================================================
   UTILIDADES
   ========================================================== */

.oculto {
    display: none !important;
}


/* ==========================================================
   BOTÓN PRINCIPAL
   ========================================================== */

.btn-principal {
    width: 100%;

    min-height: 50px;

    border: none;
    border-radius: 8px;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    background: #222;
    color: #ffffff;

    transition:
        opacity 0.2s ease,
        transform 0.1s ease;
}

.btn-principal:hover:not(:disabled) {
    opacity: 0.92;
}

.btn-principal:active:not(:disabled) {
    transform: translateY(1px);
}

.btn-principal:disabled {
    opacity: 0.65;

    cursor: not-allowed;
}


.btn-historial {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;

    border: 1px solid #cfd3d8;
    border-radius: 8px;

    background: #ffffff;
    color: #25282c;

    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.btn-historial:hover {
    background: #f3f4f6;
    border-color: #b9bec5;
}

@media (max-width: 600px) {
    .encabezado-trabajos {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-historial {
        width: 100%;
    }
}