/* Botón Flotante Fijo */
.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #0056b3;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: transform 0.2s ease;
}

.floating-btn:hover {
  transform: scale(1.05);
  background-color: #003d80;
}

/* Modal Overlay */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

/* Contenido del Modal */
.modal-content {
  background: white;
  padding: 24px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.close-btn {
  position: absolute;
  top: 10px; right: 15px;
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
}

.paso {
  display: none;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
}

.paso.active {
  display: flex;
}

.paso-num {
  background: #0056b3;
  color: white;
  border-radius: 50%;
  width: 35px; height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  flex-shrink: 0;
}

.modal-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.modal-nav button {
  padding: 8px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
}

.modal-nav button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}