 /* Estilos base del modal (reutilizando tu estructura con mejoras) */
    .tw-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(1, 4, 10, 0.95);
        z-index: 1000;
        justify-content: center;
        align-items: center;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .tw-modal-content {
        background: #01040a;
        border: 2px solid #00e5ff;
        border-radius: 12px;
        max-width: 1200px; /* Ajustado para mejor lectura */
        width: 90%;
        max-height: 90vh; /* Altura máxima para activar scroll */
        box-shadow: 0 0 50px rgba(0, 229, 255, 0.3);
        position: relative;
        color: #ffffff;
        display: flex;
        flex-direction: column;
    }

    /* Zona de Scroll Interno */
    .tw-modal-body {
        padding: 40px;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: #00e5ff #01040a;
    }

    /* Personalización Scrollbar (Chrome/Safari) */
    .tw-modal-body::-webkit-scrollbar { width: 6px; }
    .tw-modal-body::-webkit-scrollbar-thumb { background: #00e5ff; border-radius: 10px; }

    .tw-modal-close {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 28px;
        color: #a1a1aa;
        cursor: pointer;
        transition: 0.3s;
        z-index: 10;
    }

    .tw-modal-close:hover { color: #00e5ff; }

    .tw-proceso-header { text-align: center; margin-bottom: 40px; }
    .tw-proceso-header h2 {
        color: #00e5ff;
        font-size: 26px;
        text-transform: uppercase;
        margin-bottom: 10px;
        text-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
    }

    .tw-proceso-steps { display: flex; flex-direction: column; gap: 20px; }

    .tw-step {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(0, 229, 255, 0.1);
        border-radius: 8px;
        padding: 20px;
    }

    .tw-step-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #020b1a;
        border: 2px solid #00e5ff;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        color: #00e5ff;
        flex-shrink: 0;
    }

    .tw-step-info h3 { color: #00e5ff; font-size: 17px; margin: 0 0 8px 0; text-transform: uppercase; }
    .tw-step-info p { font-size: 14px; line-height: 1.5; margin: 0; color: #d1d1d1; }
    .tw-highlight { color: #00e5ff; font-weight: 600; }

    /* Caja de Especificaciones (Info de las imágenes) */
    .tw-specs-box {
        margin-top: 30px;
        padding: 20px;
        background: rgba(0, 229, 255, 0.05);
        border: 1px dashed rgba(0, 229, 255, 0.3);
        border-radius: 8px;
    }
    .tw-specs-box h4 { color: #00e5ff; text-align: center; margin-bottom: 15px; font-size: 14px; }
    .tw-specs-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; list-style: none; padding: 0; }
    .tw-specs-list li { font-size: 12px; display: flex; align-items: center; gap: 8px; }
    .tw-specs-list li::before { content: "✓"; color: #00e5ff; }

    /* Botón WhatsApp */
    .tw-btn-whatsapp {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background-color: #25d366;
        color: #fff;
        text-decoration: none;
        padding: 15px;
        border-radius: 8px;
        font-weight: 700;
        margin-top: 30px;
        transition: 0.3s;
        text-transform: uppercase;
        font-size: 14px;
    }
    .tw-btn-whatsapp:hover { background-color: #128c7e; transform: scale(1.02); }

    @media (max-width: 600px) {
        .tw-modal-body { padding: 25px 15px; }
        .tw-step { flex-direction: column; align-items: center; text-align: center; }
        .tw-specs-list { grid-template-columns: 1fr; }
    }
    .tw-terms-box {
        margin-top: 20px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(161, 161, 170, 0.2);
        border-radius: 8px;
        padding: 20px;
    }

    .tw-terms-box h4 {
        color: #a1a1aa;
        font-size: 13px;
        text-transform: uppercase;
        margin-bottom: 15px;
        letter-spacing: 1px;
        border-bottom: 1px solid rgba(161, 161, 170, 0.1);
        padding-bottom: 8px;
    }

    .tw-terms-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .tw-terms-list li {
        color: #d1d1d1;
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 12px;
        display: flex;
        gap: 10px;
    }

    .tw-terms-list li i {
        color: #00e5ff;
        font-style: normal;
        font-weight: bold;
    }

    .tw-alert-text {
        color: #00e5ff;
        font-size: 11px;
        font-style: italic;
        margin-top: 10px;
        display: block;
    }