/* Form Specific Styles */

.form-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 40px;
    position: relative;
    z-index: 1;
  }
  
  .form-wrapper {
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* Progress Bar */
  .form-progress {
    margin-bottom: 24px;
  }
  
  .progress-bar {
    width: 100%;
    height: 6px;
    background: var(--muted);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
  }
  
.progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 10px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 16.66%;
}
  
  .progress-text {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    opacity: 0.7;
  }
  
  .progress-text span {
    font-weight: 700;
    color: var(--primary);
  }
  
  /* Form Container */
  .form-container {
    background: var(--surface-elevated);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-card);
  }
  
  .form-header {
    text-align: center;
    margin-bottom: 32px;
  }
  
  .form-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 8px;
    line-height: 1.2;
  }
  
  .form-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    opacity: 0.8;
  }
  
  /* Form Steps */
  .form-step {
    display: none;
  }
  
  .form-step.active {
    display: block;
    animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
    20%, 40%, 60%, 80% { transform: translateX(10px); }
  }
  
  .form-step.shake {
    animation: shake 0.5s;
  }
  
  .step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 8px;
    text-align: center;
  }
  
  .step-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 24px;
    opacity: 0.8;
  }
  
  /* Form Groups */
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 8px;
  }
  
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="tel"] {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-family: var(--font-sans);
    color: var(--foreground);
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all var(--transition-base);
  }
  
  .form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 72, 153, 0.1);
  }
  
  /* Solo mostrar validación después de blur */
  .form-group input.touched:invalid {
    border-color: #dc3545;
  }
  
  .form-group input.touched:valid {
    border-color: #28a745;
  }
  
  .field-hint {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    opacity: 0.65;
    margin-top: 6px;
    line-height: 1.4;
  }
  
  .form-group input:focus + .field-hint {
    opacity: 0.9;
    color: var(--primary);
  }
  
/* Options Grid */
.options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
  
  .option-card {
    position: relative;
    cursor: pointer;
  }
  
  .option-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  
  .option-content {
    background: var(--background);
    border: 2px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-base);
    text-align: center;
    min-height: 100px;
    justify-content: center;
  }
  
  .option-card:hover .option-content {
    border-color: rgba(45, 72, 153, 0.3);
    background: var(--muted);
  }
  
  .option-card input:checked + .option-content {
    border-color: var(--primary);
    background: rgba(45, 72, 153, 0.08);
    box-shadow: 0 0 0 3px rgba(45, 72, 153, 0.1);
  }
  
  .option-icon {
    font-size: 28px;
    line-height: 1;
  }
  
  .option-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
  }
  
  /* Checkbox cards */
  .checkbox-card input:checked + .option-content::after {
    content: "✓";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
  }
  
  /* Form Navigation */
  .form-navigation {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-top: 24px;
  }
  
  .form-navigation .btn {
    flex: 1;
  }
  
  /* Form Result */
  .form-result {
    text-align: center;
    animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .result-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: rgba(45, 72, 153, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
  }
  
  .result-icon.success {
    background: rgba(74, 189, 208, 0.1);
    color: var(--accent);
  }
  
  .result-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 16px;
  }
  
  .result-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
  }
  
  .calendly-container {
    margin-top: 32px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .form-section {
      padding: 100px 0 60px;
    }
  
    .form-container {
      padding: 32px 24px;
    }
  
    .form-title {
      font-size: 24px;
    }
  
    .step-title {
      font-size: 20px;
    }
  
  .options-grid {
    grid-template-columns: 1fr;
  }
  
    .option-content {
      min-height: 100px;
      padding: 20px;
    }
  
    .form-navigation {
      flex-direction: column-reverse;
    }
  
    .result-title {
      font-size: 24px;
    }
  }
  
  