/* ================== ESTILOS WIZARD EXPANSIÓN MÉXICO ================== */

.wizard-container {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  }
  
  .wizard-steps {
    margin-bottom: 30px;
  }
  
  .step-indicators {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 10px;
  }
  
  .step-indicators .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #dee2e6;
    transition: background-color 0.3s;
  }
  
  .step-indicators .dot.active {
    background-color: #ffc107; /* color Expansión */
  }
  
  .wizard-content {
    min-height: 300px;
    transition: opacity 0.5s ease-in-out;
  }
  
  .option-card {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f9f9f9;
  }
  
  .option-card:hover {
    background-color: #fff3cd;
    border-color: #ffc107;
    transform: translateY(-5px);
  }
  
  .option-card.active {
    background-color: #ffeeba;
    border-color: #ffca2c;
  }
  
  .option-card i {
    font-size: 2rem;
    color: #0070c0;
    margin-bottom: 10px;
  }
  
  .option-card h5 {
    margin: 10px 0 5px;
    font-weight: 600;
  }
  
  .option-card p {
    font-size: 0.95rem;
    color: #6c757d;
  }
  
  .wizard-result {
    background-color: #e6f0fa;
    border-left: 5px solid #0070c0;
    border-radius: 8px;
    font-size: 1.1rem;
    color: #003f7f;
  }
  
  .wizard-result p {
    margin: 0;
  }
  
  /* Botón general */
  .btn-wizard {
    background-color: #0070c0;
    color: white;
    font-weight: bold;
  }
  
  .btn-wizard:hover {
    background-color: #005ea3;
  }
  
  /* Responsive touch */
  @media (max-width: 768px) {
    .option-card {
      margin-bottom: 15px;
    }
  }
  
  
  /* Números sobre la barra */
  .wizard-step-numbers .step-number {
    width: 32px;
    height: 32px;
    background-color: #dee2e6;
    color: #495057;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .wizard-step-numbers .step-number.active {
    background-color: #0070c0;
    color: white;
  }
  
  
  /* Aseguramos que la barra tenga altura visible */
  .progress {
    height: 12px !important;
    border-radius: 20px;
    background-color: #e9ecef;
    overflow: hidden;
  }
  
  .progress-bar {
    height: 100%;
    transition: width 0.3s ease-in-out;
    background-color: #ffc107 !important;
  }

  #wizard-progress {
    transition: width 0.6s ease;
  }
  
  /* Protege elementos de WOW.js */
.no-wow,
.no-wow * {
  visibility: visible !important;
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

.btn-whatsapp {
  background-color: #25D366; /* Verde WhatsApp */
  color: white !important;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #1ebe57;
  color: white;
}

.btn-email {
  background-color: #004b9a; /* Azul institucional Expansión México */
  color: white !important;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-email:hover {
  background-color: #003d7a;
  color: white;
}
