/* Estilos para el Popup de ProcesIA 360 */
.modal-procesia {
    display: none; 
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px); /* Efecto cristal moderno */
}

.modal-content-procesia {
    background-color: #fff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 15px;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-top: 5px solid #0D9488; /* El verde de tu logo */
}

.close-modal {
    color: #aaa;
    position: absolute;
    right: 25px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: #3b3c3a;
}

.modal-body-content h2 {
    color: #0D9488;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.modal-body-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

/* Personalización del scroll interno */
.modal-content-procesia::-webkit-scrollbar {
    width: 8px;
}
.modal-content-procesia::-webkit-scrollbar-thumb {
    background: #0D9488;
    border-radius: 10px;
}