/* Estilo exclusivo para el botón inteligente */
.mmc-contenedor-boton-personalizar {
    width: 100%;
    margin-top: 20px; 
    margin-bottom: 20px;
}

#mmc-abrir-modal-btn {
    background-color: #0B2572;  
    color: #fff;
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    text-align: center;
}

#mmc-abrir-modal-btn:hover {
    background-color: #333;
}

/* EL FONDO OSCURO */
#mmc-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; visibility: hidden;
    transition: all 0.3s ease;
}

#mmc-modal-overlay.activo {
    opacity: 1; visibility: visible;
}

/* LA CAJA BLANCA PRINCIPAL */
#mmc-modal-caja {
    background: #fff;
    width: 90vw; max-width: 1100px;
    height: 85vh; max-height: 800px;
    border-radius: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: all 0.4s ease;
}

#mmc-modal-overlay.activo #mmc-modal-caja {
    transform: translateY(0);
}

/* BOTÓN CERRAR */
#mmc-cerrar-modal {
    position: absolute;
    top: 15px; right: 20px;
    background: none; border: none;
    font-size: 28px; color: #555;
    cursor: pointer; z-index: 10;
}

/* LA BARRA DE PROGRESO ARRIBA */
.mmc-modal-header {
    border-bottom: 1px solid #eee;
    padding: 20px 40px;
    background: #fafafa;
}

.mmc-pasos-progreso {
    list-style: none; padding: 0; margin: 0;
    display: flex; justify-content: space-between;
}

.mmc-pasos-progreso li {
    font-size: 13px; font-weight: 600; color: #aaa;
    display: flex; align-items: center; gap: 8px;
}

.mmc-pasos-progreso li span {
    display: flex; justify-content: center; align-items: center;
    width: 24px; height: 24px; border-radius: 50%;
    background: #eee; color: #888; font-size: 12px;
}

.mmc-pasos-progreso li.paso-activo { color: #111; }
.mmc-pasos-progreso li.paso-activo span { background: #111; color: #fff; }

/* EL CUERPO (COLUMNAS) */
.mmc-modal-body {
    display: flex; flex: 1; overflow: hidden;
}

/* COLUMNA IZQUIERDA (Foto) */
.mmc-modal-col-izq {
    width: 40%; background: #f9f9f9;
    border-right: 1px solid #eee;
    padding: 40px;
}

.mmc-resumen-fijo { position: sticky; top: 0; }
.mmc-modal-img { width: 100%; border-radius: 8px; margin-bottom: 20px; mix-blend-mode: multiply; }
.mmc-marca { font-size: 11px; text-transform: uppercase; color: #888; letter-spacing: 1px; }
.mmc-modal-info-lente h3 { font-size: 22px; margin: 5px 0 10px 0; color: #111; }
.mmc-precio-base { font-size: 20px; font-weight: bold; color: #111; margin-bottom: 15px; }
.mmc-detalles-extra { font-size: 13px; color: #666; line-height: 1.5; }

/* COLUMNA DERECHA (Preguntas) */
.mmc-modal-col-der {
    width: 60%; padding: 50px 60px;
    overflow-y: auto;
}

.mmc-titulo-paso { font-size: 28px; margin: 0 0 10px 0; color: #111; }
.mmc-subtitulo-paso { font-size: 15px; color: #666; margin-bottom: 30px; }
.mmc-espacio-temporal-opciones { padding: 40px; border: 2px dashed #ddd; border-radius: 8px; text-align: center; color: #999; }