  /* Reset para evitar conflictos con estilos de Wix */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    background: transparent !important;
  }

  .form-container {
    background: #fff;
    padding: 50px 45px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 600px;
    min-width: 500px;
  }

  h2 {
    text-align: center;
    margin-bottom: 35px;
    color: #111;
    font-size: 32px;
  }

  .input-group {
    margin-bottom: 30px;
  }

  label {
    display: block;
    margin-bottom: 12px;
    color: #333;
    font-weight: 600;
    font-size: 18px;
  }

  .required {
    color: red;
  }

  .name-fields {
    display: flex;
    gap: 20px;
  }

  /* Estilo para los campos de nombre - CORREGIDO */
  .name-input {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 8px 15px;
    background-color: #fff;
    transition: border-color 0.3s ease;
    flex: 1;
  }

  .input-icon {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 8px 15px;
    background-color: #fff;
    transition: border-color 0.3s ease;
  }

  .input-icon i,
  .name-input i {
    color: #0078d7;
    font-size: 20px;
    margin-right: 10px;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"] {
    width: 100%;
    padding: 16px;
    border: none;
    outline: none;
    font-size: 18px;
    border-radius: 8px;
    background: transparent;
  }

  .name-input:focus-within,
  .input-icon:focus-within {
    border-color: #0078d7;
    box-shadow: 0 0 0 2px rgba(0, 120, 215, 0.1);
  }

  button {
    width: 100%;
    padding: 18px;
    background: #012241;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  button:hover {
    background: #005fa3;
  }

  .hidden {
    display: none !important;
  }

  /* Pantalla de gracias */
  #thankYou {
    text-align: center;
    animation: fadeIn 0.6s ease-in-out;
  }

  #thankYou h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #111;
  }

  #thankYou p {
    color: #444;
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
  }

  /* Botón de regreso mejorado */
  #backButton {
    background: #012241;
    padding: 15px 25px;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    margin-top: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    min-width: 200px;
  }

  #backButton:hover {
    background: #005fa3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 120, 215, 0.3);
  }

  #backButton i {
    font-size: 16px;
    transition: transform 0.3s ease;
  }

  #backButton:hover i {
    transform: translateX(-3px);
  }

  @keyframes fadeIn {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
  }

  /* Estilos específicos para Wix */
  @media (max-width: 768px) {
    .form-container {
      padding: 40px 30px;
      min-width: unset;
      width: 95%;
    }
    
    h2 {
      font-size: 28px;
    }
    
    .name-fields {
      flex-direction: column;
      gap: 15px;
    }
    
    #backButton {
      width: 100%;
      min-width: unset;
    }
  }
  