body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding-top: 0;
  background-color: #f5f5f5;
}

.header-gobmx {
  background-color: #611232;
  height: 70px;
  border-bottom: 4px solid #ffc107;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-gobmx {
  height: 40px;
  width: auto;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-link {
  color: white !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.header-link:hover {
  text-decoration: underline;
}

.btn-buscar-header {
  background: transparent;
  border: 1px solid white;
  color: white;
  border-radius: 3px;
  padding: 5px 10px;
  font-size: 14px;
}

.main-container {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 15px;
}

.breadcrumb {
  background: transparent;
  padding: 15px 0;
  margin-bottom: 0;
  font-size: 14px;
}

.page-title {
  color: #611232;
  font-weight: bold;
  font-size: 28px;
  margin: 10px 0 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ffc107;
}

.form-box {
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 30px;
  margin-bottom: 30px;
}

.form-title {
  color: #611232;
  font-size: 20px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 20px;
}

.form-label {
  font-weight: 600;
  color: #555;
  margin-bottom: 5px;
  display: block;
}

.form-control {
  height: 40px;
  border: 2px solid #ddd;
  border-radius: 3px;
  font-size: 14px;
}

.form-control:focus {
  border-color: #611232;
  box-shadow: none;
}

.btn-buscar {
  background-color: #611232;
  color: white;
  font-size: 16px;
  font-weight: bold;
  height: 45px;
  border: none;
  border-radius: 3px;
  width: 100%;
  margin-top: 20px;
}

.btn-buscar:hover {
  background-color: #4a0e25;
}

.process-steps {
  display: none;
  margin: 40px 0 30px;
}

.step-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  padding: 0 10px;
  min-width: 120px;
  flex: 1;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e0e0e0;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.step.active .step-circle {
  background-color: #611232;
  color: white;
}

.step.completed .step-circle {
  background-color: #28a745;
  color: white;
}

.step-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.step-desc {
  font-size: 12px;
  color: #666;
}

.step-content {
  display: none;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 25px;
  margin: 25px 0;
}

.step-content.active {
  display: block;
}

.step-content-title {
  color: #611232;
  font-size: 22px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.order-summary {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
  margin-top: 20px;
}

.order-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.order-row:last-child {
  border-bottom: none;
}

.order-total {
  font-weight: bold;
  font-size: 18px;
  color: #611232;
}

/* BOTONES DE NAVEGACIÓN */
.step-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.btn-step {
  background-color: #611232;
  color: white;
  border: none;
  border-radius: 3px;
  padding: 10px 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-step:hover {
  background-color: #4a0e25;
}

.btn-step:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

.btn-step-secondary {
  background-color: #6c757d;
}

.btn-step-secondary:hover {
  background-color: #545b62;
}

/* MÉTODO DE PAGO */
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

.payment-option {
  flex: 1;
  min-width: 200px;
  border: 2px solid #ddd;
  border-radius: 5px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-option:hover {
  border-color: #611232;
  background-color: #f9f9f9;
}

.payment-option.selected {
  border-color: #611232;
  background-color: #f5f0f1;
}

.payment-icon {
  font-size: 30px;
  color: #611232;
  margin-bottom: 10px;
}

.payment-title {
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.payment-desc {
  font-size: 14px;
  color: #666;
}

/* FOOTER */
.main-footer {
  background-color: #611232;
  color: #fff;
  padding: 30px 0 10px;
  font-weight: 300;
  margin-top: 40px;
}

.footer-pleca {
  background-color: #fff;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iNiIgdmlld0JveD0iMCAwIDEwMCA2Ij4KICA8cGF0aCBkPSJNMCAyIEwxMCAwIEwxMCA2IEwwIDQiIGZpbGw9IiM2MTEyMzIiLz4KPC9zdmc+');
  background-repeat: repeat-x;
  height: 6px;
  margin-top: 20px;
}

.main-footer a {
  color: #fff;
  text-decoration: none;
}

.main-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .header-gobmx {
    height: 60px;
  }

  .logo-gobmx {
    height: 35px;
  }

  .header-right {
    gap: 10px;
  }

  .header-link {
    font-size: 12px;
  }

  .btn-buscar-header {
    padding: 3px 8px;
    font-size: 12px;
  }

  .main-container {
    margin: 15px auto;
  }

  .form-box {
    padding: 20px 15px;
    margin: 0 -15px;
    border-left: none;
    border-right: none;
    border-radius: 0;
  }

  .page-title {
    font-size: 22px;
  }

  .form-title {
    font-size: 18px;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-control {
    height: 38px;
    font-size: 16px;
  }

  .btn-buscar {
    height: 50px;
    font-size: 18px;
  }

  /* PASOS EN MÓVIL */
  .step-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .step {
    width: 100%;
    padding: 0;
  }

  .step-content {
    padding: 20px 15px;
    margin: 20px -15px;
    border-left: none;
    border-right: none;
    border-radius: 0;
  }

  /* RESUMEN EN MÓVIL */
  .order-summary {
    padding: 15px;
  }

  .order-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .order-row span:last-child {
    font-weight: normal;
    color: #333;
  }

  /* BOTONES EN MÓVIL */
  .step-navigation {
    flex-direction: column;
    gap: 10px;
  }

  .step-navigation .btn-step {
    width: 100%;
    text-align: center;
  }

  .payment-option {
    min-width: 100%;
  }

  .main-footer {
    padding: 30px 0 15px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 10px;
  }

  .logo-gobmx {
    height: 30px;
  }

  .header-link {
    display: none;
  }

  .btn-buscar-header {
    font-size: 11px;
    padding: 2px 6px;
  }

  .page-title {
    font-size: 20px;
  }

  .form-box {
    padding: 15px 10px;
  }

  .row {
    margin-left: -5px;
    margin-right: -5px;
  }

  .col-xs-6 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .step-circle {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .step-title {
    font-size: 14px;
  }
input[type="month"].form-control {
  padding: 10px 12px;
  font-size: 14px;
  border: 2px solid #ddd;
  border-radius: 3px;
  background-color: white;
  height: 40px;
  box-sizing: border-box;
}

input[type="month"].form-control:focus {
  border-color: #611232;
  outline: none;
}

  .step-desc {
    font-size: 11px;
  }

  .btn-step {
    padding: 10px;
    font-size: 15px;
  }
}