/* =========================================================
   ==== MODAL GENERAL ====
   ========================================================= */

.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
}

.modal.hidden {
    display: none;
}

.modal-overlay {
    position: absolute;
    inset: 0;
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    width: 628px;
    height: 690px;
    overflow: hidden;
    /* importante para ocultar scroll de todo el modal */
    z-index: 10000;
    display: flex;
    flex-direction: column;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1rem 0 1rem;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (width<768px) {
    .modal {
        overflow-y: auto;
    }

    .modal-content {
        width: 100%;
        height: 690px;
    }
}
