.elementor-338 .elementor-element.elementor-element-47d6879{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.pp-tooltip.pp-tooltip-{{ID}} .pp-tooltip-content{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}@media(min-width:768px){.elementor-338 .elementor-element.elementor-element-47d6879{--width:80%;}}/* Start custom CSS for shortcode, class: .elementor-element-79638de *//* ==========================================================================
   GRAVITY FORMS - ESTILOS PERSONALIZADOS SAN2025 - ANDROID OPTIMIZED
   ========================================================================== */

/* Contenedor principal del formulario */
.gform_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Título del formulario */
.gform_wrapper .gform_title {
    background: linear-gradient(135deg, #3498db, #9b59b6, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #3498db, #9b59b6, #e74c3c, #f39c12) 1;
    padding-bottom: 15px;
}

/* Descripción del formulario */
.gform_wrapper .gform_description {
    color: #7f8c8d;
    font-size: 12px;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.2;
}

h3{
    color: #7f8c8d;
    font-size: 20px;
    font-weight:600;
}

/* Estilos para los pasos del formulario multipágina */
.gf_step {
    background: linear-gradient(135deg, #3498db, #9b59b6, #e74c3c);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(52, 152, 219, 0.4);
    position: relative;
    overflow: hidden;
}

.gf_step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

/* ANDROID FIX: Remover hover effect en móviles */
@media (hover: hover) and (pointer: fine) {
    .gf_step:hover::before {
        left: 100%;
    }
}

.gf_step_number {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 8px 12px;
    margin-right: 10px;
    font-weight: bold;
}

/* Campos del formulario - ANDROID OPTIMIZED */
.gform_wrapper .gfield {
    margin-bottom: 0rem;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #e9ecef;
    /* REMOVIDO: transition que causaba problemas */
}

/* ANDROID FIX: Solo aplicar hover en dispositivos con mouse */
@media (hover: hover) and (pointer: fine) {
    .gform_wrapper .gfield:hover {
        border-color: #3498db;
        box-shadow: 0 2px 12px rgba(52, 152, 219, 0.1);
        /* REMOVIDO: transform: translateY(-1px); que causaba salto */
    }
}

.gform_wrapper .gfield_label {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
    display: block;
    position: relative;
}

.gform_wrapper .gfield_label::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: linear-gradient(135deg, #3498db, #9b59b6);
    border-radius: 2px;
}

.gform_wrapper .gfield_required {
    color: #e74c3c;
    font-weight: bold;
}

/* Inputs de texto - ANDROID OPTIMIZED */
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="url"],
.gform_wrapper input[type="password"],
.gform_wrapper input[type="number"],
.gform_wrapper textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px; /* ANDROID FIX: Evita zoom automático */
    background: #ffffff; /* ANDROID FIX: Background sólido en lugar de gradiente */
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* ANDROID FIX: Solo transiciones seguras */
    box-sizing: border-box;
    position: relative;
    /* ANDROID FIX: Propiedades para estabilizar rendering */
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

/* SELECT específico - FIX para artefactos visuales */
.gform_wrapper select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    background: #ffffff !important; /* CRÍTICO: Background sólido forzado */
    background-image: none !important; /* CRÍTICO: Eliminar cualquier imagen de fondo */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    /* ESPECÍFICO PARA SELECT: Mantener apariencia nativa */
}

.gform_wrapper input[type="text"]:focus,
.gform_wrapper input[type="email"]:focus,
.gform_wrapper input[type="tel"]:focus,
.gform_wrapper input[type="url"]:focus,
.gform_wrapper input[type="password"]:focus,
.gform_wrapper input[type="number"]:focus,
.gform_wrapper textarea:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    background: #ffffff; /* ANDROID FIX: Background sólido */
    /* REMOVIDO: border-image que causaba problemas en Android */
}

/* SELECT focus específico - Sin artefactos */
.gform_wrapper select:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    background: #ffffff !important; /* CRÍTICO: Background sólido forzado */
    background-image: none !important; /* CRÍTICO: Sin imágenes de fondo */
}

/* Textarea específico */
.gform_wrapper textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

/* ELIMINADO: Estilos específicos adicionales para select ya están arriba */

/* Radio buttons y checkboxes - ANDROID OPTIMIZED */
.gform_wrapper .gfield_radio li,
.gform_wrapper .gfield_checkbox li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    /* REMOVIDO: transition que causaba problemas */
    position: relative;
    overflow: hidden;
}

.gform_wrapper input[type="radio"],
.gform_wrapper input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: #3498db;
}

.gform_wrapper .gfield_radio label,
.gform_wrapper .gfield_checkbox label {
    font-weight: 400;
    margin-bottom: 0;
    cursor: pointer;
    line-height: 1.4;
}

/* ANDROID FIX: Solo aplicar hover en dispositivos con mouse */
@media (hover: hover) and (pointer: fine) {
    .gform_wrapper .gfield_checkbox li:hover,
    .gform_wrapper .gfield_radio li:hover {
        background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
        border-color: #3498db;
        /* REMOVIDO: transform: translateX(5px); que causaba salto */
    }
    
    .gform_wrapper .gfield_checkbox li::before,
    .gform_wrapper .gfield_radio li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 3px;
        height: 100%;
        background: linear-gradient(135deg, #3498db, #9b59b6, #e74c3c);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }
    
    .gform_wrapper .gfield_checkbox li:hover::before,
    .gform_wrapper .gfield_radio li:hover::before {
        transform: scaleY(1);
    }
}

/* Campos de archivo */
.gform_wrapper input[type="file"] {
    padding: 10px;
    border: 2px dashed #ddd;
    border-radius: 6px;
    background-color: #f8f9fa;
    transition: border-color 0.3s ease; /* ANDROID FIX: Solo transición segura */
    cursor: pointer;
    font-size: 16px; /* ANDROID FIX: Evita zoom */
}

@media (hover: hover) and (pointer: fine) {
    .gform_wrapper input[type="file"]:hover {
        border-color: #3498db;
        background-color: #e3f2fd;
    }
}

/* Mensajes de validación */
.gform_wrapper .validation_message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
    font-weight: 500;
}

.gform_wrapper .gfield_error {
    background-color: #fdf2f2;
    border: 1px solid #e74c3c;
    border-radius: 6px;
    padding: 15px;
}

.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error textarea,
.gform_wrapper .gfield_error select {
    border-color: #e74c3c;
}

/* Botones - ANDROID OPTIMIZED */
.gform_wrapper .gform_button,
.gform_wrapper .gform_next_button,
.gform_wrapper .gform_previous_button {
    background: linear-gradient(135deg, #3498db, #9b59b6, #e74c3c);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px; /* ANDROID FIX: Evita zoom */
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease; /* ANDROID FIX: Solo transiciones seguras */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    position: relative;
    overflow: hidden;
    /* ANDROID FIX: Propiedades para estabilizar */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.gform_wrapper .gform_button::before,
.gform_wrapper .gform_next_button::before,
.gform_wrapper .gform_previous_button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

/* ANDROID FIX: Solo aplicar hover en dispositivos con mouse */
@media (hover: hover) and (pointer: fine) {
    .gform_wrapper .gform_button:hover,
    .gform_wrapper .gform_next_button:hover,
    .gform_wrapper .gform_previous_button:hover {
        background: linear-gradient(135deg, #2980b9, #8e44ad, #c0392b);
        /* REMOVIDO: transform: translateY(-2px); que causaba salto */
        box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    }
    
    .gform_wrapper .gform_button:hover::before,
    .gform_wrapper .gform_next_button:hover::before,
    .gform_wrapper .gform_previous_button:hover::before {
        left: 100%;
    }
}

.gform_wrapper .gform_previous_button {
    background: linear-gradient(135deg, #f39c12, #e67e22, #d35400);
    margin-right: 10px;
}

@media (hover: hover) and (pointer: fine) {
    .gform_wrapper .gform_previous_button:hover {
        background: linear-gradient(135deg, #e67e22, #d35400, #ba4a00);
    }
}

/* Contenedor de botones */
.gform_wrapper .gform_footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #ecf0f1;
}

/* Campos de precios */
.gform_wrapper .ginput_product_price {
    font-weight: bold;
    background: blueviolet;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.1rem;
}

.ginput_product_price {
    font-size: 2.1rem;
}

.gform_wrapper .gform_total {
    background: linear-gradient(135deg, #27ae60, #2ecc71, #58d68d);
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    margin: 20px 0;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 4px 16px rgba(39, 174, 96, 0.3);
    position: relative;
    overflow: hidden;
}

.gform_wrapper .gform_total::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

@media (hover: hover) and (pointer: fine) {
    .gform_wrapper .gform_total:hover::before {
        left: 100%;
    }
}

/* Campos condicionales ocultos */
.gform_wrapper .gfield_visibility_hidden {
    display: none !important;
}

/* Campos de múltiples columnas */
.gform_wrapper .gfield_list_container {
    overflow-x: auto;
}

.gform_wrapper .gfield_list table {
    width: 100%;
    border-collapse: collapse;
}

.gform_wrapper .gfield_list th,
.gform_wrapper .gfield_list td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.gform_wrapper .gfield_list th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

/* Estilos responsivos - ANDROID OPTIMIZED */
@media (max-width: 768px) {
    .gform_wrapper {
        padding: 15px;
        margin: 10px;
        /* ANDROID FIX: Estabilizar contenedor */
        position: relative;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    .gform_wrapper .gform_title {
        font-size: 1.8rem;
    }
    
    .gform_wrapper .gform_footer {
        text-align: center;
    }
    
    .gform_wrapper .gform_footer input[type="submit"] {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .gform_wrapper .gform_previous_button {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    /* ANDROID FIX: Asegurar font-size mínimo de 16px */
    .gform_wrapper input[type="text"],
    .gform_wrapper input[type="email"],
    .gform_wrapper input[type="tel"],
    .gform_wrapper input[type="url"],
    .gform_wrapper input[type="password"],
    .gform_wrapper input[type="number"],
    .gform_wrapper textarea,
    .gform_wrapper select {
        font-size: 16px !important;
        -webkit-appearance: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* ANDROID FIX: Prevenir cambios de layout */
    .gform_wrapper .gfield {
        contain: layout style;
    }
    
    /* ANDROID FIX: Optimizar select de países */
    .gform_wrapper select {
        max-height: 200px;
        overflow-y: auto;
    }
}

/* Mensajes de confirmación */
.gform_confirmation_wrapper {
    background: linear-gradient(135deg, #27ae60, #2ecc71, #58d68d);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
    position: relative;
    overflow: hidden;
}

.gform_confirmation_wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: confirmation-pulse 3s ease-in-out infinite;
}

@keyframes confirmation-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.gform_confirmation_wrapper .gform_confirmation_message {
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Mejoras para campos de selección múltiple - ANDROID OPTIMIZED */
.gform_wrapper .gfield_checkbox ul,
.gform_wrapper .gfield_radio ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Estilos para campos de moneda */
.gform_wrapper .ginput_currency {
    font-weight: bold;
    color: #27ae60;
}

/* Indicadores de progreso para formularios multipágina */
.gf_progressbar_wrapper {
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.gf_progressbar {
    background: linear-gradient(135deg, #ecf0f1, #d5dbdb);
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.gf_progressbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.1) 10px,
        rgba(255,255,255,0.1) 20px
    );
}

.gf_progressbar_percentage {
    background: linear-gradient(135deg, #3498db, #9b59b6, #e74c3c, #f39c12);
    height: 100%;
    transition: width 0.5s ease;
    position: relative;
    overflow: hidden;
}

.gf_progressbar_percentage::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: progress-shine 2s infinite;
}

@keyframes progress-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.gf_progressbar_title {
    text-align: center;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
}

#gfield_description_4_29 {
    font-size: 12px;
    color: black;
}

#gfield_description_4_96 {
    font-size: 12px;
    color: black;
}

/* ==========================================================================
   ANDROID CRITICAL FIXES - ULTRA OPTIMIZED PARA ELIMINAR SALTOS
   ========================================================================== */

/* ANDROID FIX: Prevenir zoom automático y estabilizar rendering */
@media screen and (max-width: 768px) {
    
    /* CRÍTICO: Estabilizar html y body */
    html, body {
        scroll-behavior: auto !important;
        -webkit-overflow-scrolling: auto !important;
        overflow-scrolling: auto !important;
        position: relative !important;
        height: auto !important;
        min-height: 100vh !important;
    }
    
    /* CRÍTICO: Estabilizar contenedor de Elementor */
    .elementor-widget-html,
    .elementor-widget-html * {
        position: static !important;
        -webkit-transform: none !important;
        transform: none !important;
        will-change: auto !important;
        contain: none !important;
    }
    
    /* CRÍTICO: Estabilizar formulario completo */
    .gform_wrapper {
        position: relative !important;
        -webkit-transform: none !important;
        transform: none !important;
        will-change: auto !important;
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
        contain: layout !important;
        isolation: isolate !important;
        /* NUEVOS FIXES CRÍTICOS */
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 10px !important;
        overflow: visible !important;
    }
    
    /* CRÍTICO: Estabilizar todos los campos */
    .gform_wrapper .gfield {
        -webkit-transform: none !important;
        transform: none !important;
        will-change: auto !important;
        contain: layout style !important;
        position: relative !important;
        /* NUEVOS FIXES */
        margin-bottom: 15px !important;
        padding: 10px !important;
        background: #ffffff !important;
        border: 1px solid #ddd !important;
        transition: none !important; /* CRÍTICO: Sin transiciones */
    }
    
    /* CRÍTICO: Todos los inputs sin efectos - RESTAURANDO APARIENCIA NATIVA */
    .gform_wrapper input[type="text"],
    .gform_wrapper input[type="email"],
    .gform_wrapper input[type="tel"],
    .gform_wrapper input[type="url"],
    .gform_wrapper input[type="password"],
    .gform_wrapper input[type="number"],
    .gform_wrapper textarea {
        font-size: 16px !important;
        -webkit-appearance: none !important;
        -webkit-tap-highlight-color: transparent !important;
        -webkit-user-select: text !important;
        user-select: text !important;
        /* CRÍTICO: Sin transiciones ni efectos */
        transition: none !important;
        transform: none !important;
        -webkit-transform: none !important;
        will-change: auto !important;
        /* CRÍTICO: Background completamente plano */
        background: #ffffff !important;
        background-image: none !important;
        box-shadow: none !important;
        /* CRÍTICO: Dimensiones fijas */
        width: 100% !important;
        padding: 12px !important;
        border: 1px solid #ccc !important;
        border-radius: 4px !important;
        margin: 0 !important;
        /* PREVENIR ZOOM Y SCROLL */
        -webkit-text-size-adjust: 100% !important;
        text-size-adjust: 100% !important;
    }
    
    /* SELECT específico - MANTENER APARIENCIA NATIVA */
    .gform_wrapper select {
        font-size: 16px !important;
        -webkit-appearance: menulist !important; /* RESTAURADO: Apariencia nativa */
        appearance: menulist !important; /* RESTAURADO: Apariencia nativa */
        -webkit-tap-highlight-color: transparent !important;
        /* CRÍTICO: Sin transiciones ni efectos */
        transition: none !important;
        transform: none !important;
        -webkit-transform: none !important;
        will-change: auto !important;
        /* CRÍTICO: Background nativo */
        background: #ffffff !important;
        background-image: none !important;
        box-shadow: none !important;
        /* CRÍTICO: Dimensiones fijas */
        width: 100% !important;
        padding: 12px !important;
        border: 1px solid #ccc !important;
        border-radius: 4px !important;
        margin: 0 !important;
        /* PREVENIR ZOOM Y SCROLL */
        -webkit-text-size-adjust: 100% !important;
        text-size-adjust: 100% !important;
    }
    
    /* RADIO y CHECKBOX - MANTENER APARIENCIA NATIVA */
    .gform_wrapper input[type="radio"],
    .gform_wrapper input[type="checkbox"] {
        -webkit-appearance: auto !important; /* RESTAURADO: Apariencia nativa */
        appearance: auto !important; /* RESTAURADO: Apariencia nativa */
        width: 18px !important;
        height: 18px !important;
        margin-right: 8px !important;
        /* Sin efectos pero manteniendo funcionalidad */
        transition: none !important;
        transform: none !important;
        -webkit-transform: none !important;
    }
    
    /* CRÍTICO: Estados focus sin efectos visuales - SEPARADOS POR TIPO */
    .gform_wrapper input[type="text"]:focus,
    .gform_wrapper input[type="email"]:focus,
    .gform_wrapper input[type="tel"]:focus,
    .gform_wrapper input[type="url"]:focus,
    .gform_wrapper input[type="password"]:focus,
    .gform_wrapper input[type="number"]:focus,
    .gform_wrapper textarea:focus {
        outline: none !important;
        border-color: #007cba !important;
        background: #ffffff !important;
        background-image: none !important;
        box-shadow: none !important;
        transform: none !important;
        -webkit-transform: none !important;
        /* PREVENIR CAMBIOS DE LAYOUT */
        width: 100% !important;
        padding: 12px !important;
        margin: 0 !important;
    }
    
    /* SELECT focus - MANTENER FUNCIONALIDAD NATIVA */
    .gform_wrapper select:focus {
        outline: -webkit-focus-ring-color auto 1px !important; /* RESTAURADO: Focus nativo */
        border-color: #007cba !important;
        background: #ffffff !important;
        background-image: none !important;
        transform: none !important;
        -webkit-transform: none !important;
        /* PREVENIR CAMBIOS DE LAYOUT */
        width: 100% !important;
        padding: 12px !important;
        margin: 0 !important;
    }
    
    /* RADIO y CHECKBOX focus - MANTENER FUNCIONALIDAD NATIVA */
    .gform_wrapper input[type="radio"]:focus,
    .gform_wrapper input[type="checkbox"]:focus {
        outline: -webkit-focus-ring-color auto 1px !important; /* RESTAURADO: Focus nativo */
    }
    
    /* CRÍTICO: Botones sin efectos */
    .gform_wrapper .gform_button,
    .gform_wrapper .gform_next_button,
    .gform_wrapper .gform_previous_button {
        font-size: 16px !important;
        -webkit-tap-highlight-color: transparent !important;
        touch-action: manipulation !important;
        -webkit-appearance: none !important;
        /* SIN EFECTOS VISUALES */
        transition: none !important;
        transform: none !important;
        -webkit-transform: none !important;
        box-shadow: none !important;
        /* ESTILOS PLANOS */
        background: #007cba !important;
        color: white !important;
        border: none !important;
        padding: 12px 20px !important;
        border-radius: 4px !important;
        cursor: pointer !important;
    }
    
    /* CRÍTICO: Prevenir cambios de layout en campos condicionales */
    .gform_wrapper .gfield_visibility_hidden {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        opacity: 0 !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    /* CRÍTICO: Estabilizar pasos del formulario */
    .gform_wrapper .gf_step {
        min-height: auto !important;
        -webkit-transform: none !important;
        transform: none !important;
        position: relative !important;
        transition: none !important;
        /* SIMPLIFICAR COMPLETAMENTE */
        background: #007cba !important;
        color: white !important;
        padding: 15px !important;
        margin-bottom: 20px !important;
        border-radius: 4px !important;
    }
    
    /* CRÍTICO: Simplificar radio y checkbox */
    .gform_wrapper .gfield_radio li,
    .gform_wrapper .gfield_checkbox li {
        -webkit-transform: none !important;
        transform: none !important;
        transition: none !important;
        background: #ffffff !important;
        padding: 8px !important;
        margin-bottom: 5px !important;
        border: 1px solid #ddd !important;
        border-radius: 4px !important;
    }
    
    /* CRÍTICO: Eliminar SOLO pseudo-elementos problemáticos, NO todos */
    .gform_wrapper .gf_step::before,
    .gform_wrapper .gf_step::after,
    .gform_wrapper .gform_total::before,
    .gform_wrapper .gform_total::after,
    .gform_wrapper .gform_button::before,
    .gform_wrapper .gform_button::after,
    .gform_wrapper .gform_next_button::before,
    .gform_wrapper .gform_next_button::after,
    .gform_wrapper .gform_previous_button::before,
    .gform_wrapper .gform_previous_button::after {
        display: none !important;
        content: none !important;
    }
    
    /* CRÍTICO: Optimizar rendering de todos los elementos */
    .gform_wrapper * {
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
        -webkit-perspective: none !important;
        perspective: none !important;
        -webkit-transform: none !important;
        transform: none !important;
        will-change: auto !important;
    }
    
    /* CRÍTICO: Prevenir animaciones */
    .gform_wrapper *,
    .gform_wrapper *::before,
    .gform_wrapper *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
    }
}/* End custom CSS */