.gl-form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 8px;
}

.gl-form-group {
  margin-bottom: 10px;
}

.gl-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #fff;
}

.gl-form-group input,
.gl-form-group textarea,
.gl-form-group select {
  width: 100%;
  padding: 9px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}

.gl-form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.gl-submit-btn {
  background-color: rgb(94, 164, 20);
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease-in;
}

.gl-submit-btn:hover {
  background: rgb(58, 105, 8);
}

.gl-submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.gl-message {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.gl-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.gl-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.gl-form-step-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 8px;
  min-height: 400px;
}

.gl-step-field {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.3s ease;
}

.gl-step-field.active {
  opacity: 1;
  transform: translateX(0);
}

.gl-step-field.hidden {
  display: none;
}

.gl-step-input {
  width: 100%;
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 18px;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.gl-step-input:focus {
  border-color: #2271b1;
  outline: none;
}

.gl-step-label {
  display: block;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.gl-step-progress {
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  margin-bottom: 30px;
  overflow: hidden;
}

.gl-step-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #2271b1, #135e96);
  transition: width 0.3s ease;
}

.gl-step-counter {
  text-align: center;
  margin-bottom: 20px;
  color: #666;
  font-size: 14px;
}

.gl-step-buttons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.gl-step-btn {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.gl-step-btn-next {
  background: #2271b1;
  color: #fff;
}

.gl-step-btn-next:hover {
  background: #135e96;
}

.gl-step-btn-prev {
  background: #6c757d;
  color: #fff;
}

.gl-step-btn-prev:hover {
  background: #5a6268;
}

.gl-step-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.gl-step-submit {
  background: #28a745;
  color: #fff;
}

.gl-step-submit:hover {
  background: #218838;
}

.gl-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gl-modal-overlay.active {
  display: flex !important;
  opacity: 1;
}

.gl-modal-container {
  background: #fff;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(-50px);
  transition: transform 0.3s ease;
}

.gl-modal-overlay.active .gl-modal-container {
  transform: translateY(0);
}

.gl-modal-header {
  padding: 15px 20px;
  /* border-bottom: 1px solid #e0e0e0; */
  position: relative;
}

.gl-modal-header h2 {
  margin: 0 0 10px 0;
  color: #cfb789;
  font-size: 28px;
  font-weight: 700;
}

.gl-modal-header p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.gl-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  line-height: 1;
  padding: 0;
  width: 30px;
  height: 30px;
}

.gl-modal-close:hover {
  color: #333;
}

.gl-modal-body {
  padding: 25px;
}

.gl-modal-form .gl-form-group {
  margin-bottom: 20px;
}

.gl-modal-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.gl-modal-form input,
.gl-modal-form textarea,
.gl-modal-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
}

.gl-modal-form textarea {
  min-height: 100px;
  resize: vertical;
}

.gl-modal-submit {
  background: #25d366;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s;
}

.gl-modal-submit:hover {
  background: #218f49ff;
}

.gl-modal-submit:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.gl-open-modal-btn {
  display: inline-block;
  background: #2271b1;
  color: #fff !important;
  padding: 14px 30px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.gl-open-modal-btn:hover {
  background: #135e96;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  color: #fff !important;
  text-decoration: none;
}

.help_whatsapp.gl-open-modal-btn:hover {
  background: #246b3dff;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  color: #fff !important;
  text-decoration: none;
}

#gl-lead-form span {
  color: #ff0000;
}

/** Help Whatsapp */
.help_cotiza {
  position: fixed;
  right: 100px;
  bottom: 210px;
  z-index: 999;
}

.help_cotiza a {
  text-decoration: none;
}

.help_whatsapp {
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--colorBlanco);
  position: absolute;
  height: 70px;
  width: 70px;
}

.help_whatsapp .fab {
  color: var(--colorBlanco);
  font-size: 2rem;
}

.help_whatsapp a,
.help_whatsapp a:hover {
  cursor: pointer;
  color: #425f57;
  transition: all 0.3s ease-in-out;
}
