.elementor-2595 .elementor-element.elementor-element-0c2a173{--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;}/* Start custom CSS for html, class: .elementor-element-f6b357f */<style>
  /* CONTENEDOR PRINCIPAL DEL FORMULARIO */
  #mip-cf7-wrapper {
    max-width: 100%;
    margin: 0 auto;
    font-family: inherit;
    color: #333;
  }

  /* SISTEMA DE COLUMNAS (FLEXBOX) */
  #mip-cf7-wrapper .mip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Espacio entre columnas */
    margin-bottom: 20px;
  }

  /* Columna Mitad (50%) */
  #mip-cf7-wrapper .mip-col-half {
    flex: 1 1 45%; /* Crece y ocupa espacio, base 45% */
    min-width: 250px; /* Para móviles no se haga muy pequeño */
  }

  /* Columna Completa (100%) */
  #mip-cf7-wrapper .mip-col-full {
    flex: 1 1 100%;
    width: 100%;
  }

  /* ETIQUETAS (LABELS) */
  #mip-cf7-wrapper label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #444;
  }
  
  #mip-cf7-wrapper .mip-question-label {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    display: block;
    line-height: 1.4;
  }

  /* INPUTS Y TEXTAREAS */
  /* Forzamos estilos para que el tema de WP no los pise */
  #mip-cf7-wrapper input[type="text"],
  #mip-cf7-wrapper input[type="email"],
  #mip-cf7-wrapper input[type="tel"],
  #mip-cf7-wrapper textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc; /* Borde gris suave */
    border-radius: 6px; /* Bordes redondeados */
    background-color: #fcfcfc;
    font-size: 1rem;
    box-sizing: border-box; /* Importante para que el padding no rompa el ancho */
    transition: border-color 0.3s ease;
  }

  #mip-cf7-wrapper input:focus,
  #mip-cf7-wrapper textarea:focus {
    border-color: #0073aa; /* Color azul al escribir */
    outline: none;
    background-color: #fff;
  }

  /* SECCION RADIO BUTTONS (SI/NO) */
  #mip-cf7-wrapper .wpcf7-list-item {
    margin: 0 15px 0 0;
    display: inline-block;
  }

  #mip-cf7-wrapper .wpcf7-list-item label {
    font-weight: normal;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  #mip-cf7-wrapper input[type="radio"] {
    margin-right: 5px;
    transform: scale(1.2); /* Hacer el puntito un poco más grande */
  }

  /* SEPARADOR */
  #mip-cf7-wrapper .mip-separator {
    height: 1px;
    background-color: #e1e1e1;
    margin: 30px 0;
  }

  /* BOTON DE ENVIAR */
  #mip-cf7-wrapper .mip-submit-area {
    text-align: center;
    margin-top: 30px;
  }

  #mip-cf7-wrapper input[type="submit"] {
    background-color: #2c3e50; /* Color oscuro profesional */
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px; /* Botón tipo píldora */
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  #mip-cf7-wrapper input[type="submit"]:hover {
    background-color: #1a252f; /* Un poco más oscuro al pasar el mouse */
    transform: translateY(-2px); /* Pequeño efecto de elevación */
  }
</style>/* End custom CSS */