/* Modal General Styles */
.jam-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.jam-modal.active {
    display: flex;
}

.jam-modal-content {
    background-color: #FFFFFF;
    max-width: 900px;
    width: 90%;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    position: relative;
    max-height: 80vh;
    overflow: auto;
}

.jam-close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #214A80;
}

/* Left Side */
.jam-modal-left {
    flex: 1;
    background-image: url('https://southcommercialgroup.com/wp-content/uploads/2025/02/14.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.jam-modal-overlay {
    background-color: rgba(216, 6, 19, 0.7); /* Ajustado a #D80613 con opacidad */
    padding: 30px;
    height: 100%;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jam-modal-overlay h2 {
    font-size: 24px;
    color: #FFFFFF;
}

.jam-modal-overlay p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0px;
}

.jam-modal-overlay ul {
    list-style: disc;
    margin: 15px 0 15px 20px;
}

/* Right Side - Form */
.jam-modal-right {
    flex: 1;
    padding: 30px;
    background-color: #FFFFFF;
}

.jam-form-group {
    margin-bottom: 20px;
}

.jam-form-group label {
    display: block;
    margin-bottom: 5px;
    color: #214A80;
    font-weight: bold;
}

.jam-form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #214A80;
    border-radius: 5px;
    font-size: 16px;
}

.jam-form-group input[type="file"] {
    border: none;
    padding: 0;
}

.jam-submit-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jam-submit-btn:hover {
    background-color: #b00510;
}

.jam-submit-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.jam-loading-spinner {
    display: none;
    border: 4px solid #FFFFFF;
    border-top: 4px solid #D80613;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

.jam-submit-btn.loading .jam-loading-spinner {
    display: inline-block;
}

.jam-submit-btn.loading .jam-submit-text {
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .jam-modal-content {
        flex-direction: column;
        max-width: 95%;
    }

    .jam-modal-left,
    .jam-modal-right {
        flex: none;
        width: 100%;
    }

    .jam-modal-left {
        min-height: 300px;
    }

    .jam-modal-right {
        padding: 20px;
    }
}